/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 120:0 Unexpected "<"

**/
/* ============================================================
   ECHELON — Premium Shopify Theme
   Base Stylesheet
   ============================================================ */


<style>
  /* Target only pages that contain .faq-page */
  #MainContent:has(.faq-page) > h1,
  #MainContent:has(.faq-page) .page-title,
  #MainContent:has(.faq-page) .main-page-title,
  #MainContent:has(.faq-page) .page-header h1,
  #MainContent:has(.faq-page) h1:first-of-type {
    max-width: 920px !important;
    margin: 72px auto 24px !important;
    padding: 0 24px !important;
    text-align: center !important;
    font-size: clamp(42px, 5vw, 72px) !important;
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
    display: block !important;
  }

  #MainContent:has(.faq-page) .faq-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 12px 24px 72px;
  }

  #MainContent:has(.faq-page) .faq-intro {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
    font-size: 17px;
    line-height: 1.75;
    color: #4a4a4a;
  }

  #MainContent:has(.faq-page) .faq-item {
    border-top: 1px solid rgba(17,17,17,0.12);
    padding: 32px 0;
  }

  #MainContent:has(.faq-page) .faq-item h2 {
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 14px;
  }

  #MainContent:has(.faq-page) .faq-item p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0;
  }

  #MainContent:has(.faq-page) .faq-page a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #a8c5b5;
    background: linear-gradient(to top, rgba(168,197,181,0.28) 42%, transparent 42%);
    transition: all 0.2s ease;
  }

  #MainContent:has(.faq-page) .faq-page a:hover {
    border-bottom-color: #111;
    background: linear-gradient(to top, rgba(168,197,181,0.45) 48%, transparent 48%);
  }

  #MainContent:has(.faq-page) .faq-cta {
    margin-top: 48px;
    padding: 48px 32px;
    border-radius: 32px;
    background: #111;
    color: #fff;
    text-align: center;
  }

  #MainContent:has(.faq-page) .faq-cta h2 {
    color: #fff;
    margin-bottom: 12px;
  }

  #MainContent:has(.faq-page) .faq-cta p {
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto 24px;
  }

  #MainContent:has(.faq-page) .faq-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
  }

  @media (max-width: 768px) {
    #MainContent:has(.faq-page) h1:first-of-type {
      margin-top: 48px !important;
      font-size: 44px !important;
    }
  }
</style>

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-weight: 300;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* --- CSS Variables --- */
:root {
  --white: #ffffff;
  --off-white: #f5f5f7;
  --black: #111111;
  --mid-gray: #888888;
  --light-gray: #e5e5e5;
  --accent-sage: #a8c5b5;
  --accent-blue: #a0b4e0;
  --accent-gold: #c8a96e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --transition: 0.25s ease;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1280px;
  --gutter: 56px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 34px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mid-gray);
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-padding { padding: 80px var(--gutter); }
.section-padding-sm { padding: 56px var(--gutter); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all var(--transition);
  font-family: var(--font-body);
  cursor: pointer;
}

.btn-primary {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.btn-primary:hover {
  background: #f5f5f5;
}
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-secondary:hover { background: var(--off-white); }

.btn-ghost-light {
  background: transparent;
  color: #888;
  border: 1px solid #333;
}
.btn-ghost-light:hover { border-color: #666; color: #ccc; }

.btn-full { width: 100%; }

/* ============================================================
   HEADER / NAV — FINAL PREMIUM (CLEAN + BALANCED)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--light-gray);
}

.site-header__inner {
  height: 64px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 20px;
  color: var(--black);
  white-space: nowrap;
}

/* NAV */
.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #333;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 1px;
  background: #111;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #111;
}

.nav-links a:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* CART ICON */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000;
  transform: translateY(1px);
}

.cart-icon {
  width: 21px;
  height: 21px;
  display: block;
}

.cart-icon path {
  stroke: #000 !important;
  stroke-width: 1.8;
}

/* REMOVE OLD ICON BUG */
.header-cart::before {
  content: none !important;
}

/* CART COUNT BADGE */
.cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  background: #000;
  color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.header-actions .btn,
.header-actions .btn-primary {
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.14em;
  background: #111;
  color: #fff;
  border: 1px solid #111;
}

.header-actions .btn:hover,
.header-actions .btn-primary:hover {
  background: #000;
  border-color: #000;
}

/* MICRO INTERACTION (PREMIUM FEEL) */
.header-cart:hover {
  opacity: 0.7;
  transform: translateY(0px);
  transition: all 0.2s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 90vh;
  background: #0a0a0a;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.6) 35%,
    rgba(0,0,0,0.15) 70%,
    transparent 100%
  );
  z-index: 1;
}
.hero__bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 180px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.06em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 80px var(--gutter);
}

.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  font-weight: 400;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent-sage);
}

.hero__sub {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 380px;
}

.hero__ctas {
  margin-top: 28px;
  gap: 14px;
}
.hero__product {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__product img,
.hero__product .hero-paddle-placeholder {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 40px 100px rgba(0,0,0,0.9));
  animation: floatPaddle 7s ease-in-out infinite;
}

.hero__price-tag {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  text-align: right;
}

.hero__price-tag .label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero__price-tag .price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__trust {
  color: #cfcfd3;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy p {
  color: #cfcfd3;
}

.hero__media img {
  transform: rotate(-6deg);
}
.hero-tagline {
  font-size: 42px;
  font-weight: 400;
  margin-top: 10px;
  color: #fff;
}
.hero-note {
  font-size: 12px;
  color: #9a9a9a;
  margin-top: 10px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.hero-tagline em {
  color: #b8c9c3;
}

@keyframes floatPaddle {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-20px) rotate(-6deg); }
}

/* ============================================================
   HERO IMAGE CROPPING FIX
   ============================================================ */

.hero {
  overflow: visible !important;
}

.hero__product {
  position: absolute;
  right: 0;
  top: 64px;
  bottom: 40px;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
  pointer-events: none;
}

.hero__product img,
.hero__product .hero-paddle-placeholder {
  width: auto !important;
  height: auto !important;
  max-width: 520px !important;
  max-height: calc(100vh - 140px) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 40px 100px rgba(0,0,0,0.9));
  animation: floatPaddle 7s ease-in-out infinite;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero {
    overflow: hidden !important;
  }

  .hero__product {
    position: relative;
    width: 100%;
    top: auto;
    bottom: auto;
    height: auto;
    padding: 40px 0 0;
  }

  .hero__product img {
    max-width: 82vw !important;
    max-height: 60vh !important;
  }
}

/* ============================================================
   VARIANT SELECTOR SECTION
   ============================================================ */
.variant-section {
  background: var(--off-white);
  padding: 80px var(--gutter);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}

.variant-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s;
  border: 1.5px solid transparent;
}

.variant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.variant-card.active { border-color: var(--black); }

.variant-card__image {
  width: 100px;
  margin: 0 auto 20px;
  transition: transform 0.35s;
}

.variant-card:hover .variant-card__image { transform: scale(1.05); }

.variant-card__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.variant-card__desc {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.6;
}

.variant-selected-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--black);
  transition: all 0.3s;
}

/* ============================================================
   FEATURES / BENEFITS GRID
   ============================================================ */
.features-section {
  padding: 100px var(--gutter);
  background: var(--white);
}

.features-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.feature-item__name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.feature-item__desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   MATERIALS / SPLIT SECTION
   ============================================================ */
.materials-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.materials-visual {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
}

.materials-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}

.materials-visual img {
  position: relative;
  z-index: 1;
  max-width: 220px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7));
}

.materials-visual__caption {
  position: absolute;
  bottom: 28px;
  left: 32px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #444;
  text-transform: uppercase;
  z-index: 2;
}

.materials-text {
  background: var(--off-white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 0.5px solid #d5d5d5;
}

.spec-item:last-child { border-bottom: none; }

.spec-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: #d0d0d0;
  line-height: 1;
  min-width: 36px;
}

.spec-info h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 5px;
}

.spec-info p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: #111;
  padding: 100px var(--gutter);
}

.testimonials-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-section__header h2 { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  padding: 32px;
  border: 0.5px solid #2a2a2a;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: #444; }

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: #bbb;
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #555;
  text-transform: uppercase;
}

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.email-section {
  padding: 100px var(--gutter);
  background: var(--white);
  text-align: center;
}

.email-section h2 { margin: 12px 0 16px; }

.email-section p {
  font-size: 14px;
  color: var(--mid-gray);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.email-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border: 0.5px solid #d0d0d0;
  background: var(--white);
}

.email-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--black);
  background: transparent;
}

.email-form button {
  padding: 15px 24px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: background var(--transition);
  white-space: nowrap;
}

.email-form button:hover { background: #333; }

.email-note {
  font-size: 11px;
  color: #bbb;
  margin-top: 14px;
  letter-spacing: 0.06em;
}

/* ============================================================
   SEO CONTENT BLOCK
   ============================================================ */
.about-seo-block {
  padding: 80px 60px;
  background: #fff;
}

.about-seo-block h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-seo-block p {
  max-width: 700px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ============================
   TECHNOLOGY PAGE STYLES
   ============================ */

/* Premium formatting polish for Technology page */

.technology-story {
  background: #ffffff;
  color: #111111;
}

/* Improve global text readability */
.technology-story p {
  font-size: 16px;
  line-height: 1.72;
  color: #4a4a4a;
}

/* Better section spacing */
.tech-section {
  padding: 64px 0;
}

.tech-section--soft {
  padding: 76px 0;
}

/* Improve content width */
.tech-section-header {
  max-width: 900px;
  margin-bottom: 36px;
}

.tech-section-header.center {
  max-width: 860px;
}

/* More refined H2 sizing */
.tech-section h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

/* Make italic accent more premium but readable */
.tech-section h2 em {
  color: #91a896;
  font-style: italic;
  font-weight: 400;
}

/* Reduce large gaps between feature sections */
.tech-feature {
  gap: 44px;
}

.tech-feature + .tech-feature {
  margin-top: 56px;
}

/* Improve number badge */
.tech-number {
  width: 42px;
  height: 42px;
  font-size: 12px !important;
  margin-bottom: 18px !important;
}

/* Make image card cleaner */
.tech-image,
.tech-hero-card {
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.tech-image img,
.tech-hero-card img {
  border-radius: 18px;
}

/* Improve black highlight box */
.tech-highlight {
  margin-top: 28px;
  border-radius: 26px;
  padding: 32px 36px;
  gap: 32px;
}

.tech-highlight h3 {
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.tech-highlight p {
  font-size: 15px;
  line-height: 1.65;
}

/* Improve comparison and summary tables */
.tech-table-wrap {
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.04);
}

.tech-table th {
  padding: 16px 18px;
  font-size: 12px;
}

.tech-table td {
  padding: 18px;
  font-size: 15px;
}

/* Improve card grid */
.tech-card {
  border-radius: 22px;
  padding: 24px;
}

.tech-card strong {
  font-size: 17px;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .tech-section {
    padding: 48px 0;
  }

  .tech-section--soft {
    padding: 54px 0;
  }

  .tech-section h2 {
    font-size: 32px;
  }

  .tech-highlight {
    padding: 28px 22px;
  }

  .tech-feature {
    gap: 30px;
  }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-breadcrumb {
  padding: 14px var(--gutter);
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.06em;
  border-bottom: 0.5px solid #eee;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-breadcrumb a { transition: color var(--transition); }
.product-breadcrumb a:hover { color: var(--black); }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px var(--gutter) 100px;
  align-items: start;
}

/* Gallery */
.product-gallery__main {
  background: var(--off-white);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
  padding: 40px;
}

.product-gallery__main:hover img { transform: scale(1.04); }

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  background: var(--off-white);
  cursor: pointer;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.gallery-thumb.active { border-color: var(--black); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Product Info / Buy Box */
.product-info {
  position: sticky;
  top: 90px;
}

.product-info__tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.product-info__name {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 10px;
}

.product-info__price {
  font-size: 26px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.product-info__summary {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid #eee;
}

.product-benefits {
  margin: 18px 0 28px;
}

.product-benefits li {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 16px;
}

.product-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999;
}

.product-micro {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
  letter-spacing: 0.05em;
}

.product-micro-secondary {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.product-launch-note {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.waitlist-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.waitlist-content {
  background: #111;
  padding: 40px;
  color: #fff;
  max-width: 400px;
  text-align: center;
  position: relative; /* IMPORTANT */
}

.close {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.waitlist-content input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: none;
}

.waitlist-content button {
  background: #fff;
  color: #000;
  padding: 12px;
  width: 100%;
  border: none;
}


/* Color Swatch Selector */
.color-selector__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.color-selector__label span {
  color: var(--black);
  font-weight: 500;
}

.color-swatches {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  outline: 1.5px solid transparent;
  outline-offset: 3px;
}

.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { outline-color: var(--black); }

/* Add to Cart */
.product-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-add-to-cart {
  width: 100%;
  padding: 17px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-add-to-cart:hover { background: #333; }

.btn-preorder {
  width: 100%;
  padding: 17px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0.5px solid var(--black);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-preorder:hover { background: var(--off-white); }

/* Trust Bar */
.product-trust {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 0.5px solid #eee;
  border-bottom: 0.5px solid #eee;
  margin-bottom: 28px;
}

.trust-item {
  flex: 1;
  min-width: 120px;
  font-size: 11px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.trust-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #bbb;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Accordion */
.accordion-item {
  border-bottom: 0.5px solid #eee;
}

.accordion-header {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  user-select: none;
  transition: color var(--transition);
}

.accordion-header:hover { color: #555; }

.accordion-icon {
  font-size: 20px;
  font-weight: 300;
  color: #aaa;
  transition: transform 0.3s;
  line-height: 1;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s;
}

.accordion-body-inner {
  padding-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

.accordion-item.open .accordion-body { max-height: 400px; }

/* =========================
   PREMIUM BLOG STYLING
   ========================= */

.echelon-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
  color: #111;
}

/* Headings */

.echelon-article h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}

.echelon-article h2 {
  font-size: 26px;
  font-weight: 500;
  margin-top: 56px;
  margin-bottom: 16px;
}

.echelon-article h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
}

/* Paragraphs */

.echelon-article p {
  font-size: 17px;
  color: #444;
  margin-bottom: 18px;
}

/* Links */

.echelon-article a {
  color: #000;
  text-decoration: underline;
}

.echelon-article a:hover {
  opacity: 0.7;
}

/* Lists */

.echelon-article ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.echelon-article li {
  margin-bottom: 8px;
}

/* Tables */

.echelon-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.echelon-article th,
.echelon-article td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.echelon-article th {
  font-weight: 600;
}

/* Image */

.echelon-article img {
  width: 100%;
  border-radius: 6px;
  margin: 32px 0;
}

/* CTA Blocks */

.cta-block {
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-block:hover {
  transform: translateY(-2px);
}

/* Dark CTA refinement */

.cta-block h2,
.cta-block h3 {
  margin-bottom: 10px;
}

.cta-block p {
  margin-bottom: 12px;
}

/* Mobile */

@media (max-width: 768px) {
  .echelon-article {
    padding: 40px 16px;
  }

  .echelon-article h1 {
    font-size: 34px;
  }

  .echelon-article h2 {
    font-size: 22px;
  }
}

/* Reviews */
.reviews-section {
  padding: 80px var(--gutter);
  background: var(--off-white);
  max-width: 100%;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.reviews-avg {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.reviews-avg__score {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.reviews-avg__stars {
  color: var(--accent-gold);
  font-size: 18px;
  letter-spacing: 3px;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-header {
  text-align: center;
  padding: 80px var(--gutter) 56px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.collection-header p {
  font-size: 14px;
  color: var(--mid-gray);
  max-width: 440px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.collection-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--off-white);
  gap: 0;
}

.collection-feature__media {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  min-height: 540px;
}

.collection-feature__media img {
  max-width: 280px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.12));
}

.collection-feature__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-feature__swatches {
  display: flex;
  gap: 10px;
  margin: 20px 0 32px;
}

/* ============================================================
   BLOG / SEO HUB
   ============================================================ */
.blog-header {
  padding: 64px var(--gutter) 48px;
  border-bottom: 0.5px solid #eee;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-card {
  padding: 40px 40px 40px 0;
  border-right: 0.5px solid #eee;
  cursor: pointer;
}

.blog-card:last-child { border-right: none; padding-right: 0; }
.blog-card:first-child { padding-left: 0; }

.blog-card__thumb {
  background: var(--off-white);
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }

.blog-card__cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  font-weight: 300;
}

.blog-card__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  background: var(--off-white);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #666;
}
.template-blog .blog-articles {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.template-blog .article-card:first-child {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.template-blog img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.template-blog h1 {
  font-size: 48px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 60px;
}

.template-blog .article-card h2 {
  font-size: 24px;
  line-height: 1.4;
}

.template-blog .article-card {
  transition: all 0.3s ease;
}

.template-blog .article-card:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.template-blog .article-card {
  margin-bottom: 60px;
}

/* =========================
   JOURNAL GRID SPACING FIX
   ========================= */

.blog-articles,
.blog__posts,
.article-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px !important; /* space between cards */
}

/* Individual article card */

.article-card,
.blog-article,
.article-item {
  padding: 16px 0;
}

/* Image spacing */

.article-card img,
.blog-article img {
  margin-bottom: 16px;
}

/* Title spacing */

.article-card h2,
.blog-article h2 {
  margin-bottom: 10px;
}

/* Excerpt spacing */

.article-card p,
.blog-article p {
  margin-bottom: 12px;
}

.blog-articles > *,
.blog__posts > * {
  margin-bottom: 40px !important;
}

/* Mobile */

@media (max-width: 768px) {
  .blog-articles,
  .blog__posts,
  .article-list {
    grid-template-columns: 1fr;
    gap: 32px !important;
  }
}
/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: #0a0a0a;
  padding: 100px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

.about-hero h1 { color: var(--white); }
.about-hero h1 em { font-style: italic; color: var(--accent-sage); }

.about-hero p {
  font-size: 14px;
  color: #777;
  line-height: 1.9;
  margin-top: 20px;
  font-weight: 300;
}

.about-paddle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-paddle img {
  transform: scale(1.3) rotate(-6deg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0a0a0a;
  padding: 80px 40px;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-box:last-child {
  border-right: none;
}

.stat-num {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.about-philosophy {
  padding: 80px var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-philosophy p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  font-weight: 300;
}



/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0d0d0d;
  padding: 64px var(--gutter) 36px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.footer-brand__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand__tagline {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  max-width: 220px;
  font-weight: 300;
}

.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: #ccc; }

.site-footer__bottom {
  border-top: 0.5px solid #1e1e1e;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #444;
  letter-spacing: 0.08em;
  max-width: var(--max-width);
  margin: 0 auto;
}

.color-editions-grid {
  max-width: 1180px;
  margin: 70px auto 0;
  padding: 0 32px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.color-edition-card {
  display: block;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid #eee;
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-edition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.color-edition-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  margin-bottom: 28px;
}

.color-edition-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.color-edition-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.article-card,
.blog-article,
.article-item,
.blog__post,
.blog-card {
  border: none !important;
}

.article-card::after,
.article-card::before,
.blog-article::after,
.blog-article::before,
.article-item::after,
.article-item::before {
  display: none !important;
  content: none !important;
}

/* Remove grid divider lines */

.blog-articles > *,
.blog__posts > * {
  border-right: none !important;
  border-left: none !important;
}
/* =========================
   FAQ PAGE — Premium Layout Fix
   ========================= */

/* Style the Shopify-generated page title only on pages that contain .faq-page */
body.template-page #MainContent:has(.faq-page) > h1:first-of-type,
body.template-page main:has(.faq-page) > h1:first-of-type,
body.template-page #MainContent:has(.faq-page) .page-title,
body.template-page #MainContent:has(.faq-page) .page-header h1 {
  display: block !important;
  max-width: 980px !important;
  margin: 72px auto 20px !important;
  padding: 0 24px !important;
  text-align: center !important;
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
  color: #111111 !important;
}

.faq-page {
  max-width: 920px !important;
  margin: 0 auto !important;
  padding: 18px 24px 72px !important;
}

.faq-page h1 {
  display: none !important;
}

.faq-intro {
  max-width: 760px !important;
  margin: 0 auto 52px !important;
  text-align: center !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: #4a4a4a !important;
}

.faq-item {
  border-top: 1px solid rgba(17,17,17,0.12) !important;
  padding: 32px 0 !important;
}

.faq-item h2 {
  font-size: clamp(24px, 2.8vw, 34px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 14px !important;
  color: #111111 !important;
}

.faq-item p {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: #4a4a4a !important;
  margin: 0 !important;
}

.faq-page a {
  color: #111111 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-bottom: 2px solid #a8c5b5 !important;
  background: linear-gradient(to top, rgba(168,197,181,0.28) 42%, transparent 42%) !important;
  transition: all 0.2s ease !important;
}

.faq-page a:hover {
  border-bottom-color: #111111 !important;
  background: linear-gradient(to top, rgba(168,197,181,0.45) 48%, transparent 48%) !important;
}

.faq-cta {
  margin-top: 48px !important;
  padding: 48px 32px !important;
  border-radius: 32px !important;
  background: #111111 !important;
  color: #ffffff !important;
  text-align: center !important;
}

.faq-cta h2 {
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

.faq-cta p {
  color: rgba(255,255,255,0.75) !important;
  max-width: 640px !important;
  margin: 0 auto 24px !important;
}

.faq-cta .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
}

@media (max-width: 768px) {
  body.template-page #MainContent:has(.faq-page) > h1:first-of-type,
  body.template-page main:has(.faq-page) > h1:first-of-type,
  body.template-page #MainContent:has(.faq-page) .page-title,
  body.template-page #MainContent:has(.faq-page) .page-header h1 {
    margin: 46px auto 16px !important;
    font-size: 44px !important;
  }

  .faq-page {
    padding: 12px 20px 56px !important;
  }

  .faq-intro {
    margin-bottom: 38px !important;
    font-size: 16px !important;
  }

  .faq-item {
    padding: 26px 0 !important;
  }
}

/* Remove gray background behind Journal images */

.article-card__image,
.blog-card__image,
.media,
.card__media,
.card__inner,
.article-card__media {
  background: transparent !important;
  box-shadow: none !important;
}

/* Ensure image wrapper doesn't create gray blocks */

.article-card__image-wrapper,
.blog-card__image-wrapper {
  background: transparent !important;
}

/* Clean image rendering */

.template-blog .article-card img,
.blog-card__thumb img,
.article-card img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .color-editions-grid {
    grid-template-columns: 1fr;
    padding: 0 22px 70px;
  }

  .color-edition-card img {
    height: 300px;
  }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; gap: 48px; }
  .product-info { position: static; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero { min-height: 100svh; }
  .hero__product {
    display: flex;
    align-items: center;   /* centers vertically */
    justify-content: flex-end;
    height: 100%;
    overflow: visible;     /* 🔥 THIS FIXES CROPPING */
  }
  .hero__product img {
    max-height: 88vh;
    padding-right: 40px;
  }
  .hero { flex-direction: column; }
  .hero__content { padding-bottom: 0; }
  .variant-grid { grid-template-columns: 1fr; }
  .materials-section { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-paddle { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-philosophy { grid-template-columns: 1fr; gap: 24px; }
  .collection-feature { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__bg-text { display: none; }
}

/* ============================================================
   ANIMATIONS / SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.divider { height: 0.5px; background: #eee; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   ECHELON APEX UPGRADES — premium single-product execution
   ============================================================ */
.section-spacious { padding: 96px var(--gutter); }
.container { max-width: var(--max-width); margin: 0 auto; }
.why-apex { background: #fff; }
.why-apex__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.why-apex__copy h2 { font-size: clamp(38px, 5vw, 72px); line-height: .95; letter-spacing: -0.05em; margin: 12px 0 24px; }
.why-apex__copy p { font-size: 19px; line-height: 1.65; color: #555; max-width: 680px; }
.why-apex__copy a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.why-apex__copy a:hover {
  color: #006633;
}
.why-apex__cards { display: grid; gap: 14px; }
.why-card { background: #f5f5f7; border-radius: 28px; padding: 26px; border: 1px solid #eee; }
.why-card strong { display: block; font-size: 18px; margin-bottom: 8px; letter-spacing: -0.02em; }
.why-card span { color: #666; line-height: 1.5; }
.specs-block { background: #f5f5f7; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e7e7ea; border-radius: 30px; overflow: hidden; }
.specs-grid div { background: #fff; padding: 30px; min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; }
.specs-grid span { color: #777; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.specs-grid strong { font-size: 20px; letter-spacing: -0.03em; margin-top: 22px; }
.variant-positioning { margin: 18px 0 26px; border: 1px solid #eee; border-radius: 22px; overflow: hidden; background: #fff; }
.variant-positioning__item { display: none; padding: 18px 20px; }
.variant-positioning__item.active { display: block; }
.variant-positioning__item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.variant-positioning__item span { display: block; color: #666; font-size: 14px; line-height: 1.45; }
.product-trust { grid-template-columns: repeat(2, 1fr); }
.product-info__summary { font-size: 17px; line-height: 1.6; color: #444; }

@media (max-width: 768px) {
  .section-spacious { padding: 64px var(--gutter); }
  .why-apex__grid { grid-template-columns: 1fr; gap: 32px; }
  .specs-grid { grid-template-columns: 1fr; }
  .product-cta { position: sticky; bottom: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); padding: 12px 0; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); border-top: 1px solid #eee; }
  .product-gallery__thumbs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
