@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,900;1,9..40,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cta:          #1c6d6b;
  --cta-hover:    #155958;
  --accent-dark:  #0D4F4D;
  --accent-light: #F5F8F7;
  --discount:     #D63A2F;
  --dark:         #0d1f1e;
  --dark-2:       #1a3332;
  --nav-bg:       var(--dark);
  --card-bg:      #F5F5F5;
  --border:       2px solid var(--dark);
  --radius-btn:   2.4rem;
  --radius-card:  2rem;
  --max-w:        1410px;
  --pad:          2rem;
  --font:         'DM Sans', sans-serif;
  /* Height of the sticky .site-top (announcement bar + header) */
  --site-top-h:   10.9rem;
}

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.6;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: 7.2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1.3rem 3rem;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(28,109,107,.35); }
.btn-outline { background: transparent; border: 2px solid var(--cta); color: var(--cta); }
.btn-outline:hover { background: var(--cta); color: #fff; }
.btn-black { background: var(--dark); color: #fff; }
.btn-black:hover { background: var(--dark-2); color: #fff; }
.btn-full { width: 100%; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--cta);
  color: #fff;
  overflow: hidden;
  padding-block: .9rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}
.announcement-bar__track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
/* hover no longer pauses the ticker */
.announcement-bar__msg {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 3rem;
}
.announcement-bar__dot { opacity: .5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar__track { animation: none; justify-content: center; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

/* Single sticky wrapper — avoids z-index stacking-context clipping between
   the announcement bar and header when hovering nav links */
.site-top {
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-header {
  /* position handled by .site-top wrapper */
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.site-header.stuck {
  background: var(--nav-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
/* Non-home pages always black */
body:not(.page-home) .site-header { background: var(--nav-bg); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.4rem;
  padding-block: 1.8rem;
}

/* Logo */
.logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.logo-icon {
  width: 3.6rem;
  height: 3.6rem;
  background: var(--cta);
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon-img {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Nav links */
.nav { display: flex; align-items: center; justify-content: center; gap: .4rem; }
.nav a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.2rem;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: .4rem;
  transition: color .15s, background .15s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.1); }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: .4rem; justify-content: flex-end; }
.header-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  border-radius: 50%;
  text-decoration: none;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.header-icon:hover { background: rgba(255,255,255,.12); color: #fff; }
.header-icon svg { width: 2rem; height: 2rem; }

/* Mobile hamburger */
.hamburger { display: none; background: none; border: none; padding: .8rem; color: #fff; }
.hamburger svg { width: 2.2rem; height: 2.2rem; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 300;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  gap: .8rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav-acct-link {
  margin-top: auto !important;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: none !important;
  opacity: .85;
  font-size: 2rem !important;
}
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

@media (max-width: 989px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .acct-nav-link { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--site-top-h));
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a2020 0%, #0d3535 40%, #1c4040 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(10rem + var(--site-top-h));
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.4rem;
  width: 100%;
}
.hero h1 {
  color: #fff;
  font-size: clamp(4rem, 6vw, 7.2rem);
  max-width: 88rem;
  text-shadow: 0 2px 32px rgba(0,0,0,.5);
}
.hero h1 span { color: var(--cta); }
.hero p {
  color: rgba(255,255,255,.8);
  font-size: clamp(1.6rem, 2vw, 2rem);
  max-width: 56rem;
  line-height: 1.55;
}
.hero-disclaimer {
  color: rgba(255,255,255,.4) !important;
  font-size: 1.1rem !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .8rem;
}
.hero-cta { font-size: 1.5rem; padding: 1.6rem 3.8rem; box-shadow: 0 4px 24px rgba(28,109,107,.4); }

/* Trust badges */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .4rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.7);
  font-size: 1.3rem;
  font-weight: 500;
}
.hero-badge svg { width: 1.6rem; height: 1.6rem; color: var(--cta); flex-shrink: 0; }

@media (max-width: 749px) {
  .hero { min-height: 55vh; }
  .hero-content { padding-top: calc(7rem + var(--site-top-h)); padding-bottom: 7rem; gap: 1.8rem; }
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  border: var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.12); transform: translateY(-3px); }

.product-card__img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.6rem;
  transition: transform .35s;
}
.product-card:hover .product-card__img { transform: scale(1.05); }

/* Placeholder gradient image */
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5f4 0%, #d0eeec 100%);
}
.product-card__img-placeholder svg { width: 5.6rem; height: 5.6rem; color: var(--cta); opacity: .5; }

.product-card__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--discount);
  color: #fff;
  border-radius: .5rem;
  padding: .3rem .9rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  z-index: 1;
}
.product-card__badge--new {
  background: var(--dark);
  left: auto;
  right: 1.2rem;
}

.product-card__body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1;
}

.product-card__stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.product-card__stars span { color: #888; font-size: 1.2rem; font-weight: 500; }

.product-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: #111;
}

.product-card__sizes { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.product-card__size-pill { font-size: 1.15rem; font-weight: 600; color: #374151; background: #f3f4f6; border-radius: 4px; padding: .2rem .6rem; }

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: .8rem;
}
.product-card__sale { color: var(--cta); font-weight: 700; font-size: 1.8rem; }
.product-card__compare { color: #999; font-size: 1.3rem; text-decoration: line-through; }

.product-card__cta {
  margin-top: auto;
  font-size: 1.3rem;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
}
/* Stretched link — clicking anywhere on the card follows the CTA href.
   ::after is position:absolute relative to .product-card (position:relative).
   overflow:hidden on .product-card clips it to card bounds. */
.product-card__cta::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ============================================================
   FEATURED PRODUCTS SECTION
   ============================================================ */
.featured-products { background: #fff; }

.section-header { text-align: center; margin-bottom: 4.8rem; }
.section-header h2 { font-size: clamp(3rem, 4vw, 5rem); margin-bottom: .8rem; }
.section-header p { color: #666; font-size: 1.6rem; }

/* slider-wrapper = outer shell, no overflow clip */
.slider-wrapper { }

/* slider-clip = the actual clipping box around the track */
.slider-clip { overflow-x: hidden; padding-block: 8px; margin-block: -8px; margin-inline: auto; }

.slider-track {
  display: flex;
  gap: 2.4rem;
  will-change: transform;
}
.slider-item { flex: 0 0 28rem; display: flex; }
.slider-item .product-card { width: 100%; }

/* Buttons sit below the track */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.slider-btn {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 2px solid var(--dark);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  color: var(--dark);
  flex-shrink: 0;
}
.slider-btn:hover { background: var(--cta); border-color: var(--cta); color: #fff; }
.slider-btn svg { width: 1.8rem; height: 1.8rem; }

.section-footer-cta { text-align: center; margin-top: 4.8rem; }

/* Dots indicator (mobile only) */
.slider-dots { display: none; }
@media (max-width: 749px) {
  .slider-item { flex: 0 0 24rem; }
  .slider-btn { display: none; }
  /* Allow peek of neighboring cards */
  .slider-wrapper { overflow: hidden; }
  .slider-clip { overflow: visible; }
  /* Dots */
  .slider-dots { display: flex; justify-content: center; gap: .7rem; margin-top: 1.6rem; }
  .slider-dot { width: 7px; height: 7px; border-radius: 50%; background: #d1d5db; transition: background .2s, transform .2s; }
  .slider-dot.active { background: var(--cta); transform: scale(1.3); }
}

/* ============================================================
   UGC CAROUSEL
   ============================================================ */
.ugc { background: #f9f9f9; }
.ugc-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  padding: .4rem .4rem 1.2rem;
  max-width: 72rem;
  margin: 0 auto;
}
.ugc-item {
  aspect-ratio: 5/3;
  border-radius: var(--radius-card);
  border: var(--border);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.ugc-item:hover { transform: scale(1.02); }
@media (max-width: 640px) {
  .ugc-track { max-width: 100%; gap: 1rem; }
  .ugc-item { aspect-ratio: auto; }
  .ugc-item-inner { padding: 1.6rem 1.2rem; }
}
.ugc-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  background: linear-gradient(135deg, #e8f5f4, #d0eeec);
  color: var(--cta);
  padding: 2rem;
  text-align: center;
}
.ugc-item-inner svg { width: 5.6rem; height: 5.6rem; opacity: .6; }
.ugc-item-inner p { font-size: 1.5rem; font-weight: 700; color: var(--accent-dark); opacity: .9; margin: 0; }
.ugc-sub { font-size: 1.2rem; color: var(--accent-dark); opacity: .55; font-weight: 400; }

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story { background: #fff; }
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 52rem;
  border-radius: var(--radius-card);
  border: var(--border);
  overflow: hidden;
}
.brand-story-img {
  background: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-story-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem;
  color: rgba(255,255,255,.6);
}
.brand-story-img-inner svg { width: 10rem; height: 10rem; color: rgba(255,255,255,.3); }
.brand-story-content {
  padding: 5.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cta);
}
.brand-story-content h2 { font-size: clamp(2.8rem, 3.5vw, 4.4rem); }
.brand-story-content p { font-size: 1.6rem; line-height: 1.7; color: #444; }

@media (max-width: 749px) {
  .brand-story-grid { grid-template-columns: 1fr; }
  .brand-story-img { min-height: 28rem; }
  .brand-story-content { padding: 3.6rem 2.4rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: #f9f9f9; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.testimonial-card {
  background: var(--accent-light);
  border-radius: var(--radius-card);
  border: var(--border);
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.t-stars { color: #f5a623; font-size: 2rem; letter-spacing: .05em; }
.t-body { font-size: 1.5rem; line-height: 1.65; color: #222; flex: 1; font-style: italic; }
.t-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,.1);
}
.t-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 1.4rem; }
.t-title { font-size: 1.2rem; color: #666; font-style: italic; }

@media (max-width: 989px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }
.faq-list { max-width: 80rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.12); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,.12); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-size: 1.7rem; font-weight: 700; flex: 1; }
.faq-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  color: var(--cta);
  position: relative;
}
.faq-icon svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
}
.faq-icon .minus { opacity: 0; }
.faq-item[open] .faq-icon .plus { opacity: 0; }
.faq-item[open] .faq-icon .minus { opacity: 1; }
.faq-answer { padding-bottom: 2rem; animation: faq-in .22s ease; }
.faq-answer p { font-size: 1.6rem; line-height: 1.65; color: #444; max-width: 68rem; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-.6rem); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-answer { animation: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding-top: 6.4rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4.8rem;
  padding-bottom: 4.8rem;
}
.footer-subscribe { display: flex; flex-direction: column; gap: 1.6rem; }
.footer-subscribe h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
}
.footer-subscribe h2 em { color: var(--cta); font-style: normal; font-size: 1.25em; }
.footer-sub-text { font-size: 1.4rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-email-row { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-email-input {
  flex: 1;
  min-width: 18rem;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: var(--font);
  font-size: 1.4rem;
  outline: none;
  transition: border-color .2s;
}
.footer-email-input::placeholder { color: rgba(255,255,255,.38); }
.footer-email-input:focus { border-color: var(--cta); }
.footer-col { display: flex; flex-direction: column; gap: 1.6rem; }
.footer-col-heading {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.footer-links { display: flex; flex-direction: column; gap: .8rem; }
.footer-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color .15s;
}
.footer-links a:hover { color: var(--cta); }
.footer-ship { font-size: 1.4rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-divider { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-block: 2.4rem;
}
.footer-copy { font-size: 1.3rem; color: rgba(255,255,255,.45); }
.footer-disclaimer { font-size: 1.2rem; color: rgba(255,255,255,.28); font-style: italic; margin-top: .4rem; }
.footer-social { display: flex; align-items: center; gap: .8rem; }
.footer-social a {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--cta); color: #fff; }
.footer-social svg { width: 1.6rem; height: 1.6rem; }
.footer-payment { display: flex; align-items: center; gap: .6rem; }
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .4rem;
  padding: .3rem .9rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.pay-zelle  { background: #6D1ED4; }
.pay-venmo  { background: #3D95CE; }
.pay-paypal { background: #003087; }
.pay-echeck { background: #157347; }

@media (max-width: 989px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3.2rem; }
  .footer-subscribe { grid-column: 1 / -1; }
}
@media (max-width: 599px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-subscribe { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PRODUCTS PAGE (GRID)
   ============================================================ */
.collection-hero {
  background: var(--accent-dark);
  padding-block: 7rem;
  text-align: center;
}
.collection-hero h1 { color: #fff; font-size: clamp(3.2rem, 5vw, 5.6rem); margin-bottom: 1.2rem; }
.collection-hero p { color: rgba(255,255,255,.7); font-size: 1.8rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  padding-block: 5.6rem;
}
@media (max-width: 989px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .products-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail { padding-block: 6rem; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5.6rem; align-items: start; }
.product-gallery-main {
  aspect-ratio: 1/1;
  border-radius: var(--radius-card);
  border: var(--border);
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-main-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.4rem;
  transition: opacity .2s;
}
.product-thumbs { display: flex; gap: 1.2rem; margin-top: 1.2rem; }
.product-thumb {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 1rem;
  border: 2px solid transparent;
  background: #f9f9f9;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s;
  flex-shrink: 0;
  padding: .4rem;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-thumb.active, .product-thumb:hover { border-color: var(--cta); }

.product-info { display: flex; flex-direction: column; gap: 2rem; }
.breadcrumb { display: flex; gap: .6rem; align-items: center; font-size: 1.3rem; color: #888; }
.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: var(--cta); }
.breadcrumb-sep { color: #ccc; }
.save-badge {
  display: inline-block;
  background: var(--discount);
  color: #fff;
  border-radius: .6rem;
  padding: .3rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.product-title { font-size: clamp(2.8rem, 3.5vw, 4rem); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}
.product-price-sale { color: var(--cta); font-size: 2.8rem; font-weight: 700; }
.product-price-compare { color: #aaa; font-size: 1.8rem; text-decoration: line-through; }

.product-stars { display: flex; align-items: center; gap: .8rem; color: #f5a623; font-size: 1.8rem; }
.product-stars small { color: #888; font-size: 1.3rem; }

.trust-badges { display: flex; flex-direction: column; gap: .8rem; }
.trust-badge { display: flex; align-items: center; gap: .8rem; font-size: 1.4rem; font-weight: 600; }
.trust-badge svg { width: 1.8rem; height: 1.8rem; color: var(--cta); }

.variant-label { font-size: 1.4rem; font-weight: 700; margin-bottom: .8rem; }
.variants { display: flex; flex-wrap: wrap; gap: .8rem; }
.variant-btn {
  padding: .7rem 1.8rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--dark);
  background: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.variant-btn:hover {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}
.variant-btn.active {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(28,109,107,.25);
  transform: scale(1.05);
}
.variant-btn.oos, .variant-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  text-decoration: line-through;
  border-style: dashed;
}
.variant-btn.preorder { position: relative; overflow: visible; }
.variant-btn__tag {
  position: absolute;
  top: -2.1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: .15rem .55rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(28, 109, 107, .55);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.12);
  border: 1.5px solid #fff;
  white-space: nowrap;
  pointer-events: none;
}

.spec-table { width: 100%; border-collapse: collapse; font-size: 1.4rem; }
.spec-table th, .spec-table td { padding: .8rem 1.2rem; border-bottom: 1px solid rgba(0,0,0,.08); text-align: left; vertical-align: top; }
.spec-table th { font-weight: 600; color: #666; width: 38%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.coa-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--cta);
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  border: 1.5px solid var(--cta);
  padding: .8rem 1.6rem;
  border-radius: var(--radius-btn);
  transition: background .15s, color .15s;
}
.coa-link:hover { background: var(--cta); color: #fff; }
.coa-link svg { width: 1.6rem; height: 1.6rem; }

.research-notice {
  background: var(--accent-light);
  border-radius: .8rem;
  border-left: 3px solid var(--cta);
  padding: 1.2rem 1.6rem;
}
.research-notice p { font-size: 1.3rem; color: #555; font-style: italic; }

@media (max-width: 749px) {
  .product-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: #f5f5f5; padding-block: 7.2rem; }
.contact-page-header { text-align: center; margin-bottom: 4.8rem; }
.contact-page-header h1 { font-size: clamp(4rem, 5vw, 6.4rem); margin-bottom: 1rem; }
.contact-page-header p { font-size: 1.8rem; color: #666; }
.contact-card-wrap { display: flex; justify-content: center; }
.contact-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 4.8rem;
  width: 100%;
  max-width: 64rem;
}
.contact-card h2 { font-size: clamp(2.8rem, 4vw, 4rem); color: #fff; margin-bottom: .8rem; }
.contact-card-sub { font-size: 1.5rem; color: rgba(255,255,255,.6); margin-bottom: 3.2rem; line-height: 1.6; }
.contact-card-sub a { color: var(--cta); text-decoration: none; }
.contact-card-sub a:hover { text-decoration: underline; }
.form-group { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.8rem; }
.form-group label { font-size: 1.4rem; font-weight: 600; color: rgba(255,255,255,.65); }
.form-group input, .form-group textarea, .form-group select {
  padding: 1.2rem 1.6rem;
  border-radius: .8rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: var(--font);
  font-size: 1.5rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.32); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--cta); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.form-group textarea { resize: vertical; min-height: 14rem; }

@media (max-width: 599px) {
  .contact-card { padding: 3.2rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO — shared by COA & Research pages
   ============================================================ */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 9rem 0 7rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(4rem, 6vw, 7.2rem); }
.page-hero p { font-size: 1.8rem; color: rgba(255,255,255,.68); max-width: 64rem; margin: 2rem auto 0; line-height: 1.6; }
.page-hero .page-hero-tags { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 3.2rem; }
.page-hero-tag { border: 1.5px solid rgba(255,255,255,.25); border-radius: var(--radius-btn); padding: .6rem 1.6rem; font-size: 1.3rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.8); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--cta); color: #fff; padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: clamp(3.2rem, 4vw, 5.2rem); font-weight: 900; letter-spacing: -.05em; display: block; line-height: 1; }
.stat-label { font-size: 1.2rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; opacity: .82; margin-top: .6rem; display: block; }
@media (max-width: 749px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   COA PAGE
   ============================================================ */
.coa-trust { background: var(--dark); color: #fff; padding: 8rem 0; }
.coa-trust-header { text-align: center; margin-bottom: 6rem; }
.coa-trust-header h2 { font-size: clamp(3rem, 4vw, 5rem); }
.coa-trust-header p { font-size: 1.7rem; color: rgba(255,255,255,.65); max-width: 60rem; margin: 1.6rem auto 0; line-height: 1.65; }
.trust-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5rem; }
.trust-step-num { font-size: 6.4rem; font-weight: 900; color: var(--cta); letter-spacing: -.06em; line-height: 1; display: block; margin-bottom: 2rem; }
.trust-step h3 { font-size: 2.2rem; margin-bottom: 1.2rem; }
.trust-step p { color: rgba(255,255,255,.6); font-size: 1.5rem; line-height: 1.7; }
@media (max-width: 749px) { .trust-steps { grid-template-columns: 1fr; gap: 3.2rem; } }

.coa-section { background: #f5f5f5; padding: 8rem 0; }
.coa-section-header { text-align: center; max-width: 72rem; margin: 0 auto 5.6rem; }
.coa-section-header h2 { font-size: clamp(3rem, 3.5vw, 4.4rem); margin-bottom: 1.6rem; }
.coa-section-header p { font-size: 1.6rem; color: #555; line-height: 1.7; }
.coa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
@media (max-width: 999px) { .coa-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 599px) { .coa-grid { grid-template-columns: 1fr; } }
.coa-card {
  background: #fff;
  border-radius: 1.6rem;
  border: 2px solid #e4e4e4;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.coa-card:hover { transform: translateY(-4px); box-shadow: 0 14px 48px rgba(0,0,0,.12); border-color: var(--cta); }
.coa-card img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: top; background: #f9f9f9; }
.coa-card-info { padding: 1.6rem 2rem; }
.coa-card-product { font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cta); margin-bottom: .4rem; }
.coa-card-name { font-size: 1.6rem; font-weight: 700; }

.coa-callout { background: var(--dark); color: #fff; padding: 6rem 0; text-align: center; }
.coa-callout h2 { font-size: clamp(2.8rem, 3.5vw, 4.4rem); margin-bottom: 1.2rem; }
.coa-callout p { font-size: 1.6rem; color: rgba(255,255,255,.65); max-width: 60rem; margin: 0 auto; line-height: 1.65; }

/* ============================================================
   RESEARCH / BLOG PAGE
   ============================================================ */
.research-intro { background: #fff; padding: 7.2rem 0 5.6rem; }
.research-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.research-intro-inner h2 { font-size: clamp(3rem, 4vw, 5rem); margin-bottom: 2rem; }
.research-intro-inner p { font-size: 1.6rem; color: #555; line-height: 1.75; }
@media (max-width: 749px) { .research-intro-inner { grid-template-columns: 1fr; } }

.articles-section { background: #f5f5f5; padding: 8rem 0; }
.articles-section-header { text-align: center; margin-bottom: 5.6rem; }
.articles-section-header h2 { font-size: clamp(3rem, 3.5vw, 4.4rem); margin-bottom: 1rem; }
.articles-section-header p { font-size: 1.6rem; color: #666; }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3.2rem; }
@media (max-width: 599px) { .article-grid { grid-template-columns: 1fr; } }
.article-card {
  background: #fff;
  border-radius: 2rem;
  border: 2px solid #e4e4e4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 14px 48px rgba(0,0,0,.1); border-color: var(--cta); }
.article-card-header { background: var(--accent-dark); padding: 3.2rem 2.8rem; }
.article-card-header-light { background: var(--accent-light); padding: 3.2rem 2.8rem; }
.article-date { font-size: 1.15rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--cta); margin-bottom: 1rem; display: block; }
.article-card-header .article-date { color: rgba(255,255,255,.6); }
.article-title { font-size: 2rem; font-weight: 900; letter-spacing: -.03em; line-height: 1.2; }
.article-card-header .article-title { color: #fff; }
.article-card-body { padding: 2.4rem 2.8rem; flex: 1; display: flex; flex-direction: column; gap: 1.6rem; }
.article-excerpt { font-size: 1.5rem; color: #555; line-height: 1.7; flex: 1; }
.article-tag { display: inline-flex; border: 1.5px solid var(--cta); color: var(--cta); border-radius: var(--radius-btn); padding: .5rem 1.4rem; font-size: 1.2rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.research-cta-bar { background: var(--cta); color: #fff; padding: 6rem 0; }
.research-cta-bar h2 { font-size: clamp(2.8rem, 3.5vw, 4.4rem); margin-bottom: 1.2rem; }
.research-cta-bar p { font-size: 1.6rem; opacity: .82; max-width: 56rem; margin: 0 0 0; }
.research-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.research-cta-btns { display: flex; gap: 1.6rem; flex-shrink: 0; }
@media (max-width: 749px) { .research-cta-inner { grid-template-columns: 1fr; } .research-cta-btns { flex-direction: column; } }

/* Research badge box */
.research-intro-badge { display: flex; justify-content: center; }
.research-badge-box { background: var(--accent-dark); color: #fff; border-radius: 2rem; padding: 4rem 3.2rem; text-align: center; max-width: 28rem; }
.research-badge-icon { color: var(--cta); margin-bottom: 2rem; display: flex; justify-content: center; }
.research-badge-icon svg { stroke: #1c6d6b; }
.research-badge-label { font-size: 2rem; font-weight: 900; margin-bottom: .8rem; }
.research-badge-sub { font-size: 1.4rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* Section label / heading */
.section-label { font-size: 1.2rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cta); margin-bottom: 1rem; }
.section-heading { font-size: clamp(3rem, 4vw, 5rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: 4.8rem; }

/* Article card: new layout */
.article-card-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: #f5f5f5; }
.article-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.article-card:hover .article-card-img-wrap img { transform: scale(1.04); }
.article-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.article-card--featured .article-card-img-wrap { aspect-ratio: unset; min-height: 32rem; border-radius: 12px 0 0 12px; }
.article-card--featured .article-card-body { padding: 3.6rem; justify-content: center; }
.article-card--featured .article-title { font-size: 2.4rem; }
.article-card--featured .article-excerpt { font-size: 1.5rem; line-height: 1.7; }
@media (max-width: 599px) { .article-card--featured { grid-column: span 1; grid-template-columns: 1fr; } }
@media (max-width: 599px) { .article-card--featured { grid-column: span 1; grid-template-columns: 1fr; } }
/* duplicate removed — .article-card-body defined on line 1134 */
.article-meta { display: flex; align-items: center; gap: 1.2rem; }
.article-footer { display: flex; align-items: center; gap: 2rem; margin-top: auto; padding-top: .8rem; flex-wrap: wrap; }
.article-read-more { font-size: 1.4rem; font-weight: 700; color: var(--cta); text-decoration: none; letter-spacing: .03em; }
.article-read-more:hover { text-decoration: underline; }
.btn-sm { font-size: 1.3rem !important; padding: .8rem 1.8rem !important; }
.research-cta-bar .btn-outline { border-color: #fff; color: #fff; }
.research-cta-bar .btn-outline:hover { background: #fff; color: var(--dark); }

/* ══════════════════════════════════════════
   ARTICLE PAGES
   ══════════════════════════════════════════ */

/* Reading progress bar */
.article-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--cta); z-index: 9999; width: 0%;
  transition: width .08s linear; pointer-events: none;
}

/* Hero */
.article-page-hero {
  background: var(--accent-dark); color: #fff;
  padding: 7rem 0 6rem; position: relative; overflow: hidden;
}
.article-page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.article-back {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: 1.4rem; font-weight: 600;
  text-decoration: none; letter-spacing: .04em; margin-bottom: 3rem;
  transition: color .2s; position: relative;
}
.article-back:hover { color: #fff; }
.article-page-hero .article-meta { margin-bottom: 2rem; position: relative; }
.article-page-hero .article-tag { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.9); }
.article-page-hero .article-date { color: rgba(255,255,255,.5); }
.article-page-title {
  font-size: clamp(2.8rem, 4vw, 5.2rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.08; max-width: 80rem;
  margin: 0; position: relative;
}

/* Reading meta bar */
.article-reading-meta {
  background: #fff; border-bottom: 1px solid #ececec;
  padding: 1.2rem 0;
}
.article-reading-meta-inner {
  display: flex; align-items: center; gap: 1.6rem;
  font-size: 1.35rem; color: #777; font-weight: 500;
}
.article-reading-meta-inner .article-tag { font-size: 1.15rem; padding: .3rem 1.1rem; }
.article-meta-dot { color: #ccc; }

/* Layout: prose + TOC sidebar */
.article-prose-section { padding: 6rem 0 10rem; background: #fff; }
.article-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1280px;
}
@media (max-width: 1099px) { .article-layout { grid-template-columns: 1fr; } }

/* Sticky TOC */
.article-toc {
  position: sticky; top: 9rem;
  background: var(--accent-light);
  border: 1.5px solid #d8eae8;
  border-radius: 1.4rem; padding: 2.4rem;
}
.article-toc-label {
  font-size: 1.05rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cta); margin-bottom: 1.4rem;
}
.article-toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .2rem; }
.article-toc a {
  display: block; font-size: 1.35rem; color: #555; text-decoration: none;
  line-height: 1.4; padding: .65rem 1rem; border-radius: .7rem;
  border-left: 2.5px solid transparent; transition: all .18s;
}
.article-toc a:hover { background: rgba(28,109,107,.07); color: var(--cta); border-left-color: rgba(28,109,107,.3); }
.article-toc a.toc-active { background: rgba(28,109,107,.1); color: var(--cta); border-left-color: var(--cta); font-weight: 600; }
@media (max-width: 1099px) { .article-toc { display: none; } }

/* Prose typography */
.article-prose {
  font-size: 1.7rem; line-height: 1.85; color: #2a2a2a; min-width: 0;
}
.article-prose > p:first-child {
  font-size: 1.9rem; line-height: 1.7; color: #444; font-weight: 400;
}
.article-prose h2 {
  font-size: clamp(2rem, 2.2vw, 2.6rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.2;
  margin: 5.6rem 0 1.6rem; color: #0a0a0a;
  padding: 1.6rem 2rem; border-radius: 1rem;
  background: var(--accent-light); border-left: 4px solid var(--cta);
  scroll-margin-top: 10rem;
}
.article-prose h2:first-of-type { margin-top: 3.2rem; }
.article-prose h3 {
  font-size: 1.95rem; font-weight: 700; color: var(--cta);
  margin: 3.2rem 0 .8rem; letter-spacing: -.01em;
}
.article-prose p { margin-bottom: 1.8rem; }
.article-prose strong { color: #111; font-weight: 700; }

/* Custom list bullets */
.article-prose ul, .article-prose ol {
  margin: .8rem 0 2.4rem; padding: 0; list-style: none;
}
.article-prose ul li, .article-prose ol li {
  position: relative; padding: .5rem 0 .5rem 2.6rem; margin-bottom: .2rem;
}
.article-prose ul li::before {
  content: ''; position: absolute; left: .5rem; top: 1.35rem;
  width: .7rem; height: .7rem; border-radius: 50%; background: var(--cta); opacity: .8;
}
.article-prose ol { counter-reset: article-ol; }
.article-prose ol li { counter-increment: article-ol; }
.article-prose ol li::before {
  content: counter(article-ol); position: absolute; left: 0; top: .5rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--cta); color: #fff;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Callout boxes */
.article-callout {
  margin: 3.2rem 0; padding: 2.2rem 2.6rem; border-radius: 1.2rem;
  border-left: 4px solid var(--cta); background: var(--accent-light);
  font-size: 1.6rem; line-height: 1.7;
}
.article-callout-label {
  font-size: 1.05rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cta); margin-bottom: .8rem;
}
.article-callout--warning { border-left-color: #b45309; background: #fffbeb; }
.article-callout--warning .article-callout-label { color: #92400e; }
.article-callout p { margin: 0; }

/* Disclaimer */
.article-disclaimer {
  margin-top: 5.6rem; padding: 2.2rem 2.6rem; border-radius: 1rem;
  background: #f7f7f7; border: 1px solid #e0e0e0; border-left: 4px solid #aaa;
  font-size: 1.45rem; color: #666; font-style: italic; line-height: 1.7;
}

/* Product CTA */
.article-product-cta { background: var(--accent-dark); color: #fff; padding: 6.4rem 0; text-align: center; }
.article-product-cta h2 { font-size: clamp(2.4rem, 3vw, 3.6rem); font-weight: 900; margin-bottom: 1.2rem; letter-spacing: -.03em; }
.article-product-cta p { font-size: 1.65rem; opacity: .75; margin-bottom: 3.2rem; max-width: 54rem; margin-left: auto; margin-right: auto; }

/* ============================================================
   MOBILE-FIRST IMPROVEMENTS
   ============================================================ */

/* Products grid: 2 columns on phones instead of 1 */
@media (max-width: 599px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; padding-block: 3.2rem; }
  .product-card__body { padding: 1.2rem; gap: .5rem; }
  .product-card__name { font-size: 1.3rem; }
  .product-card__sale { font-size: 1.5rem; }
  .product-card__cta { font-size: 1.2rem; padding: .8rem 1.2rem; }
}

/* Hero: tighten up on small phones */
@media (max-width: 480px) {
  .hero { min-height: 50vh; }
  .hero-content { gap: 1.4rem; }
  .hero-badges { gap: 1.4rem; }
  .hero-cta { padding: 1.3rem 2.8rem; font-size: 1.4rem; }
  .section { padding-block: 4.8rem; }
}

/* Product detail: stack image above info on mobile, reduce gaps */
@media (max-width: 749px) {
  .product-detail { padding-block: 3.2rem; }
  .product-detail-grid { gap: 2.8rem; }
  .product-title { font-size: clamp(2.2rem, 6vw, 3.2rem); }
}

/* Mobile nav: larger touch targets, cleaner spacing */
@media (max-width: 989px) {
  .header-icon { width: 4.4rem; height: 4.4rem; }
  .hamburger { padding: .6rem; }
}

/* Section headers: tighten on mobile */
@media (max-width: 599px) {
  .section-header { margin-bottom: 2.8rem; }
  .section-header h2 { font-size: clamp(2.4rem, 8vw, 3.6rem); }
  .collection-hero { padding-block: 4rem; }
  .collection-hero h1 { font-size: clamp(2.8rem, 8vw, 4rem); }
  .collection-hero p { font-size: 1.5rem; }
}

/* Cart upsell grid on narrow phones */
@media (max-width: 380px) {
  .upsell-grid { grid-template-columns: 1fr; }
}

/* ── Mobile-only UX improvements ── */

/* Container padding reduction on narrow phones */
@media(max-width:480px){
  :root { --pad:1.4rem; }
}

/* Product card tap feedback */
@media(max-width:989px){
  .product-card { transition:transform .15s,box-shadow .15s; }
  .product-card:active { transform:scale(.97); box-shadow:0 4px 16px rgba(0,0,0,.1); }
  .product-card__cta:active { transform:scale(.95); }
}

/* Global button active states */
@media(max-width:989px){
  .btn-primary:active { filter:brightness(.88); transform:scale(.97); }
  .btn-outline:active  { background:var(--cta); color:#fff; }
  .btn-black:active    { filter:brightness(1.15); transform:scale(.97); }
  .variant-btn:active  { transform:scale(.96); }
}

/* Product detail thumbnails — smaller on mobile */
@media(max-width:749px){
  .product-thumb { width:5.6rem; height:5.6rem; }
}

/* Announcement bar — tighter on tiny phones */
@media(max-width:380px){
  .announcement-bar { font-size:1.1rem; padding-block:.65rem; }
}
