/* ==========================================================
   BRIGHT DX — Estilo
   Off-white + preto + lime elétrico + blocos pastel por categoria
   ========================================================== */

:root {
  --bg:            #F6F4EE;
  --bg-2:          #EDEAE2;
  --ink:           #0E0E10;
  --ink-2:         #444448;
  --line:          #E4E1D8;
  --lime:          #D8FF3C;
  --lime-2:        #C4EB2E;
  --coral:         #FF6B4A;
  --white:         #FFFFFF;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(14,14,16,.06);
  --shadow:    0 12px 40px rgba(14,14,16,.10);
  --shadow-lg: 0 22px 60px rgba(14,14,16,.14);

  --container: 1240px;
  --gutter: 24px;

  --f-display: 'Archivo Black', 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section--dark { background: var(--ink); color: var(--bg); }
.section--lime { background: var(--lime); color: var(--ink); }
.section--gray { background: var(--bg-2); }

.display {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  text-transform: uppercase;
}
.display--xl {
  font-size: clamp(64px, 16vw, 220px);
  line-height: 0.85;
}
.display em { font-style: italic; font-family: inherit; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.lede {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 640px;
  line-height: 1.55;
}

/* -------- Botões pill (estilo Wellina) -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: #1e1e22; }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--lime-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--large { padding: 18px 30px; font-size: 15px; }
.btn__arrow {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 4px;
}
.btn--lime .btn__arrow { background: var(--ink); color: var(--lime); }
.btn--primary .btn__arrow { background: var(--lime); color: var(--ink); }

/* -------- Topbar -------- */
.topbar {
  background: var(--lime);
  color: var(--ink);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}
.topbar__marquee {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.topbar__marquee span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__marquee em { font-style: normal; opacity: .5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- Header -------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.header__logo {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.header__logo span { color: var(--lime); background: var(--ink); padding: 2px 8px; border-radius: 6px; }
.header__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.header__nav a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background .18s ease;
}
.header__nav a:hover { background: var(--bg-2); }
.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--bg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease;
  position: relative;
}
.icon-btn:hover { background: var(--ink); color: var(--lime); }
.icon-btn__badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
}
.header__menu-btn { display: none; }

/* -------- Hero (estilo HOODIE — display gigante + foto) -------- */
.hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero__eyebrow {
  text-align: right;
  margin-bottom: 8px;
}
.hero__title {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.hero__media {
  margin-top: -60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  position: relative;
  background: var(--bg-2);
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__pill {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg);
  padding: 16px 20px 16px 24px;
  border-radius: 18px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}
.hero__pill:hover { transform: translateY(-2px); background: var(--lime); }
.hero__pill-title {
  font-family: var(--f-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__pill-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero__social {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px 0 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero__social a:hover { color: var(--ink); }

/* -------- Trust bar -------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.trust__item strong { color: var(--ink); display: block; font-size: 14px; }
.trust__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -------- Section head split -------- */
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
}
.section__head h2 { font-size: clamp(32px, 4vw, 52px); }
.link-arrow {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink);
  transition: background .18s ease;
}
.link-arrow:hover { background: var(--ink); color: var(--lime); }

/* -------- Shop by collection (estilo Webflow + Aero Step) -------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.collection-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  transition: transform .3s ease;
  display: block;
}
.collection-card:hover { transform: translateY(-4px); }
.collection-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.collection-card__img {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.collection-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.collection-card__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: var(--bg);
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.collection-card__label strong {
  font-family: var(--f-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.collection-card__label span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: block;
}
.collection-card__arrow {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -------- Product cards (estilo Wellina) -------- */
.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--gutter);
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}
.carousel__nav {
  display: flex;
  gap: 8px;
}
.carousel__btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease;
}
.carousel__btn:hover { background: var(--ink); color: var(--lime); }
.carousel__btn:disabled { opacity: .3; cursor: not-allowed; }

.pcard {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard__media {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.pcard__tag--sale { background: var(--coral); }
.pcard__tag--new { background: var(--ink); color: var(--lime); }
.pcard__tag--best { background: var(--lime); color: var(--ink); }
.pcard__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
  margin: 8px;
  border-radius: 14px;
  flex: 1;
}
.pcard__name {
  min-height: 2.6em; /* trava 2 linhas p/ alinhar preços entre cards */
}
.pcard__cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pcard__name {
  font-size: 15px;
  font-weight: 600;
  margin: 4px 0 2px;
  line-height: 1.3;
  color: var(--ink);
}
.pcard__qty {
  font-size: 12px;
  color: var(--ink-2);
}
.pcard__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.pcard__price-old {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--ink-2);
}
.pcard__price-now {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.pcard__cta {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.pcard__row-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.pcard__rating {
  font-size: 12px;
  color: var(--ink-2);
}
.pcard__rating .star { color: var(--lime); background: var(--ink); padding: 2px 5px; border-radius: 4px; font-weight: 700; }

/* -------- Big banner (estilo Webflow "BUILD IN STYLE") -------- */
.big-banner {
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.big-banner__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.big-banner__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(-3deg);
}
.big-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.big-banner__cta { margin-top: 24px; }

/* -------- Chips filter -------- */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.chip {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg);
  transition: all .18s ease;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--lime); border-color: var(--ink); }

/* -------- Sort select -------- */
.sort-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0 24px;
}
.sort-wrap select {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

/* -------- Product grid -------- */
.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* -------- Page head -------- */
.page-head {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-head .display { max-width: 900px; }
.breadcrumb {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb__current { color: var(--ink); font-weight: 500; }

/* -------- Product detail -------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail__media {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__title { font-size: clamp(32px, 4vw, 56px); margin-top: 12px; }
.product-detail__sub { font-size: 17px; color: var(--ink-2); margin-top: 8px; }
.product-detail__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  margin-top: 20px;
  color: var(--ink-2);
}
.product-detail__qty strong { color: var(--ink); }
.product-detail__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-2);
}
.stars--big { font-size: 18px; color: var(--lime); background: var(--ink); padding: 4px 10px; border-radius: 6px; }
.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.product-detail__price-old {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--ink-2);
}
.product-detail__price-amount {
  font-family: var(--f-display);
  font-size: 44px;
}
.product-detail__price-off {
  background: var(--coral);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.product-detail__installments {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 14px;
}
.product-detail__desc { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-top: 20px; }
.product-detail__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.product-shipping {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
}
.product-shipping strong { display: block; font-size: 14px; margin-bottom: 4px; }
.product-shipping span { font-size: 12px; color: var(--ink-2); }
.product-specs {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.product-specs__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: block;
  margin-bottom: 12px;
}
.product-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}
.product-specs li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-specs li::before { content: "→"; color: var(--ink-2); }

/* -------- About page -------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-grid p { font-size: 16px; color: var(--ink-2); line-height: 1.75; margin: 0 0 20px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1.5px solid var(--line);
}
.stat__num {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat__num span { font-size: 24px; color: var(--ink-2); }
.stat__label { font-size: 13px; color: var(--ink-2); line-height: 1.4; }

/* -------- CTA final -------- */
.cta-final {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
}
.cta-final .display em { color: var(--lime); }
.cta-final__actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final__actions .btn--ghost { color: var(--lime); border-color: var(--lime); }
.cta-final__actions .btn--ghost:hover { background: var(--lime); color: var(--ink); }

/* -------- Newsletter -------- */
.newsletter {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter__title { font-family: var(--f-display); font-size: clamp(32px, 4vw, 52px); text-transform: uppercase; line-height: 0.95; margin: 0; }
.newsletter__title em { color: var(--lime); font-style: italic; }
.newsletter__form { display: flex; gap: 8px; }
.newsletter__form input {
  flex: 1;
  padding: 18px 22px;
  border-radius: var(--radius-pill);
  border: 0;
  background: rgba(255,255,255,0.1);
  color: var(--bg);
  font-family: inherit;
  font-size: 14px;
}
.newsletter__form input::placeholder { color: rgba(246,244,238,0.5); }

/* -------- Contact form -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
}
.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 14px; margin-bottom: 4px; }
.contact-info-item span { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.form { display: grid; gap: 16px; padding: 32px; background: var(--bg-2); border-radius: var(--radius-lg); }
.form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 600;
}
.form input, .form select, .form textarea {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .btn { justify-content: center; }
.flash { padding: 16px 20px; border-radius: 14px; margin-bottom: 20px; font-size: 14px; }
.flash--ok { background: var(--lime); color: var(--ink); }
.flash--err { background: var(--coral); color: var(--white); }

/* -------- Footer -------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 0;
  margin-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand-title { font-family: var(--f-display); font-size: 28px; text-transform: uppercase; margin: 0 0 12px; }
.footer__brand-title span { color: var(--lime); background: var(--bg); padding: 2px 8px; border-radius: 6px; }
.footer p { color: rgba(246,244,238,0.6); font-size: 14px; line-height: 1.6; margin: 0 0 8px; }
.footer h5 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px; color: var(--lime); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(246,244,238,0.75); }
.footer ul a:hover { color: var(--lime); }
.footer__pay {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
}
.footer__pay span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bg);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(246,244,238,0.5);
  gap: 20px;
  flex-wrap: wrap;
}
.footer__marquee {
  background: var(--lime);
  color: var(--ink);
  padding: 20px 0;
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.footer__marquee-inner {
  display: inline-block;
  animation: marquee 24s linear infinite;
  padding-right: 60px;
}
.footer__marquee-inner em { font-style: normal; color: var(--ink); opacity: .3; padding: 0 30px; }

/* -------- Modal -------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14,14,16,0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--bg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* -------- Responsive -------- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__menu-btn { display: inline-flex; }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel__track > * { flex: 0 0 calc((100% - 32px) / 3); }
  .product-grid, .product-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .big-banner { padding: 40px; }
  .newsletter { grid-template-columns: 1fr; padding: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 24px; }
  .hero__media { margin-top: 0; }
  .hero__pill { min-width: auto; left: 12px; right: 12px; bottom: 12px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel__track > * { flex: 0 0 calc((100% - 16px) / 2); }
  .product-grid, .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .trust__row { grid-template-columns: 1fr; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .big-banner { grid-template-columns: 1fr; padding: 32px; }
  .big-banner__media { transform: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-final { padding: 48px 24px; }
  .product-specs ul { grid-template-columns: 1fr; }
  .product-shipping { grid-template-columns: 1fr; }
  .hero__social { gap: 16px; font-size: 11px; }
}
