:root {
  --sqz-black: #060606;
  --sqz-white: #ffffff;
  --sqz-red: #da1b13;
  --sqz-mint: #bee7d3;
  --sqz-soft: #f4f4f1;
  --sqz-text: #202020;
  --sqz-border: rgba(0, 0, 0, 0.08);
  --sqz-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  --sqz-radius: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Avenir Next", Arial, sans-serif;
  color: var(--sqz-text);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sqz-lock {
  overflow: hidden;
}

.sqz-container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.sqz-main {
  padding-bottom: 0;
}

.sqz-topbar {
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sqz-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.sqz-topbar__inner p {
  margin: 0;
}

.sqz-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sqz-border);
}

.sqz-header__main {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.sqz-header__logo img,
.sqz-drawer__head img,
.sqz-hero__brand {
  width: 140px;
}

.sqz-icon-button {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sqz-icon-button span:not(.screen-reader-text) {
  width: 100%;
  height: 2px;
  background: var(--sqz-black);
}

.sqz-search {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.sqz-search input {
  width: min(100%, 300px);
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--sqz-border);
  background: #f6f6f6;
}

.sqz-search button,
.sqz-newsletter__form button,
.sqz-hero__headline a,
.sqz-promo-card__content a,
.sqz-store-link {
  border: 0;
  border-radius: 999px;
  background: var(--sqz-red);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
}

.sqz-header__actions {
  display: flex;
  gap: 10px;
  justify-self: end;
}

.sqz-icon-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--sqz-border);
  background: #fff;
  font-size: 14px;
}

.sqz-cart-pill {
  min-width: 44px;
  text-align: center;
}

.sqz-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.sqz-drawer__panel {
  width: min(360px, 88vw);
  min-height: 100%;
  padding: 24px;
  background: #fff;
  box-shadow: var(--sqz-shadow);
}

.sqz-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sqz-drawer__close {
  border: 0;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
}

.sqz-drawer__nav {
  display: grid;
  gap: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.sqz-drawer__sale {
  color: var(--sqz-red);
}

.sqz-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #1f120b;
}

.sqz-hero__media,
.sqz-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sqz-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: end;
  min-height: 720px;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 54px;
  color: #fff;
}

.sqz-hero__menu {
  display: grid;
  align-content: start;
  gap: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sqz-hero__menu span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--sqz-red);
}

.sqz-hero__headline {
  margin-left: auto;
  text-align: right;
  max-width: 520px;
  align-self: center;
}

.sqz-hero__headline p {
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.sqz-hero__headline strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: 0.2em;
}

.sqz-hero__headline a {
  display: inline-block;
  margin-top: 28px;
  background: #fff;
  color: #000;
}

.sqz-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.sqz-section__title {
  text-align: center;
  margin-bottom: 22px;
}

.sqz-section__title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.sqz-carousel {
  display: grid;
  gap: 10px;
}

.sqz-carousel--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sqz-category-card,
.sqz-promo-card,
.sqz-look-card,
.sqz-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.sqz-category-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sqz-category-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sqz-carousel--looks {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sqz-look-card img {
  width: 100%;
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
}

.sqz-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.sqz-hotspot-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--sqz-shadow);
}

.sqz-hotspot-card.is-visible {
  display: grid;
}

.sqz-hotspot-card h3,
.sqz-product-card__body h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.sqz-hotspot-card p,
.sqz-product-card__body p,
.sqz-newsletter__note,
.sqz-footer__legal p {
  margin: 0;
}

.sqz-hotspot-card a {
  color: var(--sqz-red);
  font-weight: 700;
}

.sqz-promo-grid,
.sqz-product-grid,
.sqz-style-grid,
.sqz-footer__grid {
  display: grid;
  gap: 18px;
}

.sqz-promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sqz-promo-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.sqz-promo-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.sqz-promo-card__content h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
}

.sqz-promo-card__content a {
  background: rgba(255, 255, 255, 0.95);
  color: #2f4766;
}

.sqz-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sqz-product-card {
  border: 1px solid var(--sqz-border);
}

.sqz-product-card__media {
  position: relative;
  background: #f8f8f8;
}

.sqz-product-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
}

.sqz-product-card__media span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.sqz-product-card__body {
  padding: 14px;
}

.sqz-product-card__body strong {
  display: block;
  margin-top: 10px;
  color: var(--sqz-red);
  font-size: 18px;
}

.sqz-style-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sqz-style-grid img {
  border-radius: 22px;
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
}

.sqz-banner img {
  width: 100%;
  border-radius: 22px;
}

.sqz-footer {
  position: relative;
}

.sqz-whatsapp {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--sqz-shadow);
  font-size: 12px;
}

.sqz-whatsapp img {
  width: 42px;
}

.sqz-newsletter {
  margin-top: 30px;
  padding: 42px 0 34px;
  background: var(--sqz-mint);
}

.sqz-eyebrow {
  margin: 0 0 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sqz-newsletter__copy {
  text-align: center;
  margin-bottom: 26px;
}

.sqz-newsletter__copy h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 40px);
}

.sqz-newsletter__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sqz-newsletter__form input[type="text"],
.sqz-newsletter__form input[type="email"],
.sqz-newsletter__form input[type="date"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
}

.sqz-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.sqz-newsletter__form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 180px;
}

.sqz-newsletter__form.is-sent::after {
  content: "Gracias por suscribirte";
  grid-column: 1 / -1;
  justify-self: center;
  font-weight: 700;
}

.sqz-newsletter__note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
}

.sqz-footer__links {
  padding: 34px 0;
}

.sqz-footer__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sqz-footer__grid h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.sqz-footer__grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sqz-social {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.sqz-store-link {
  display: inline-flex;
  margin-top: 20px;
}

.sqz-claim-book {
  width: 120px;
}

.sqz-footer__legal {
  padding: 18px 0 28px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.sqz-generic {
  padding: 48px 0 80px;
}

@media (max-width: 1100px) {
  .sqz-header__main {
    grid-template-columns: auto auto 1fr;
  }

  .sqz-search {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
  }

  .sqz-search.is-visible {
    display: flex;
  }

  .sqz-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
  }

  .sqz-hero__headline {
    margin-left: 0;
    text-align: left;
  }

  .sqz-carousel--six,
  .sqz-carousel--looks,
  .sqz-product-grid,
  .sqz-promo-grid,
  .sqz-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .sqz-topbar__inner,
  .sqz-header__actions {
    display: none;
  }

  .sqz-header__main {
    grid-template-columns: auto 1fr auto;
  }

  .sqz-hero {
    min-height: 620px;
  }

  .sqz-hero__content {
    min-height: 620px;
    padding-top: 80px;
  }

  .sqz-hero__menu {
    display: none;
  }

  .sqz-carousel--six,
  .sqz-carousel--looks,
  .sqz-promo-grid,
  .sqz-product-grid,
  .sqz-style-grid,
  .sqz-footer__grid,
  .sqz-newsletter__form {
    grid-template-columns: 1fr;
  }

  .sqz-whatsapp {
    right: 14px;
    left: auto;
  }
}
