@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black:        #141414;
  --black-soft:   #1E1E1C;
  --gold:         #C8A84B;
  --gold-light:   #D4BA68;
  --gold-dark:    #A88B38;
  --gold-subtle:  #F0EFEB;
  --white:        #FFFFFF;
  --cream:        #F6F6F4;
  --cream-dark:   #EDECE8;
  --border:       #E0DED8;
  --text-dark:    #141414;
  --text-muted:   #6A6A66;
  --red-sale:     #B83B2C;
  --nav-h:        72px;
  --announce-h:   40px;
  --radius:       6px;
  --shadow:       0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.11);
  --transition:   0.25s ease;
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: var(--black);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-transform: uppercase;
}
.announce-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.announce-segment {
  white-space: nowrap;
  padding-right: 80px;
  display: flex;
  align-items: center;
  gap: 0;
}
.announce-segment span { color: var(--white); }
.announce-segment .announce-hi { color: var(--gold-light); }
.announce-dot {
  color: var(--gold);
  margin: 0 20px;
  font-size: 0.6rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.82) translateY(40px); }
  55%  { opacity: 1; transform: scale(1.05) translateY(-8px); }
  75%  { transform: scale(0.97) translateY(3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  will-change: opacity, transform;
}

/* Cards stay hidden until .revealed is added by IntersectionObserver */
.product-card.reveal {
  transform: scale(0.82) translateY(40px);
}
.product-card.revealed {
  animation: popIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--stagger-delay, 0ms);
}

.reveal:not(.product-card).revealed {
  animation: fadeInUp 0.7s var(--ease-out) both;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-h);
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.logo-img { height: 56px; width: auto; object-fit: contain; display: block; transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1); }
.logo-wrap:hover .logo-img { transform: scale(1.12); }
.logo-img--footer {
  height: 76px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-sizing: content-box;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.logo-text { display: none; }
.logo-monogram {
  width: 52px; height: 52px;
  background: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--gold);
  letter-spacing: -1px;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.logo-label { line-height: 1.2; }
.logo-label .brand { font-size: 1.4rem; font-weight: 900; letter-spacing: 0.08em; color: var(--black); }
.logo-label .sub   { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; color: var(--gold-dark); text-transform: uppercase; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black-soft);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 120ms ease, background-color 120ms ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  background: var(--gold-subtle);
}
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--black);
  border-radius: 4px;
  padding: 8px 14px;
}
.nav-links a.nav-cta:hover { background: var(--gold-dark); color: var(--white); }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: 16px; }
.header-icons button {
  font-size: 1.1rem; color: var(--black-soft);
  transition: color var(--transition);
  position: relative;
}
.header-icons button:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--black);
  font-size: 0.55rem; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.header-icon-link {
  display: flex; align-items: center; gap: 7px;
  color: var(--black-soft); text-decoration: none;
  transition: color var(--transition);
}
.header-icon-link:hover { color: var(--gold); }
.header-icon-link svg:first-child {
  width: 32px; height: 32px; padding: 7px;
  border: 1.5px solid #D8D8D8; border-radius: 50%;
  box-sizing: border-box;
  transition: border-color var(--transition);
}
.header-icon-link:hover svg:first-child { border-color: var(--gold); }
.header-phone-num {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.01em;
  white-space: nowrap;
}
.cart-header-link {
  position: relative; display: flex; align-items: center;
  color: var(--black-soft); text-decoration: none;
  transition: color var(--transition);
}
.cart-header-link:hover { color: var(--gold); }
.cart-header-link .cart-count {
  position: absolute; top: -7px; right: -9px;
  background: var(--gold); color: var(--black);
  font-size: 0.5rem; font-weight: 900;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  transition: transform 200ms var(--ease-out);
}
.cart-header-link:hover .cart-count { transform: scale(1.1); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav full-screen overlay */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--white); z-index: 2000;
  flex-direction: column;
  transform: translateY(-105%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 2px solid var(--gold);
  background: var(--white);
  position: sticky; top: 0; z-index: 1;
  flex-shrink: 0;
}
.mobile-nav-header .logo-img { height: 44px; }
.mobile-nav-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--border);
  color: var(--black); background: none; flex-shrink: 0;
  transition: border-color 150ms ease, color 150ms ease;
}
.mobile-nav-close:hover { border-color: var(--gold); color: var(--gold-dark); }
.mobile-nav-links { flex: 1; }
.mobile-nav-links a {
  display: flex; align-items: center;
  padding: 18px 24px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--black-soft);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav-links a:hover { color: var(--gold-dark); background: var(--gold-subtle); }
.mobile-nav-links a.active { color: var(--gold-dark); }
.mobile-nav-links a.nav-cta {
  color: var(--gold-dark);
  background: var(--gold-subtle);
  border-left: 3px solid var(--gold);
  padding-left: 21px;
}
.mobile-nav-links a.nav-cta:hover { color: var(--black); background: rgba(200,168,75,0.15); }
.mobile-nav-footer {
  padding: 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  flex-shrink: 0;
}
.mobile-nav-contact {
  display: flex; align-items: center; gap: 12px;
  color: var(--black-soft); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: color 150ms ease;
}
.mobile-nav-contact svg { flex-shrink: 0; }
.mobile-nav-contact:hover { color: var(--gold-dark); }
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 1999;
}
.nav-overlay.open { display: block; }

/* ===== HERO / BANNER ===== */
.hero-banner {
  background: linear-gradient(135deg, var(--black) 0%, #1A150C 55%, var(--black-soft) 100%);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 80% 30%, rgba(200,168,75,0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-block;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 2px;
  margin-bottom: 24px;
}
.hero-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-banner h1 span { color: var(--gold); }
.hero-tagline {
  font-size: 1.05rem; color: rgba(255,255,255,0.68);
  margin-bottom: 40px; max-width: 480px;
  line-height: 1.65;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: flex-start;
}

/* Right column price blocks */
.hero-prices {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 48px;
}
.price-block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.price-block:last-child { border-bottom: none; }
.price-block .label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.price-block .price {
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 6px;
}
.price-block .orig {
  font-size: 0.8rem; text-decoration: line-through;
  color: rgba(255,255,255,0.3);
}

/* ── Single "feature price" card (when only one price is shown) ── */
.hero-prices--single {
  border-left: none;          /* drop the tall divider rule */
  padding-left: 0;
  justify-content: center;
}
.price-feature {
  position: relative;
  padding: 26px 28px 24px;
  border: 1px solid rgba(200,168,75,0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012)),
    rgba(18,14,8,0.38);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 28px 56px -30px rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* gold accent bar */
.price-feature::before {
  content: ''; position: absolute; left: 0; top: 20px; bottom: 20px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}
.price-feature .label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.price-feature .price {
  font-size: 2.9rem;
  margin-bottom: 0;
}
.price-meta {
  display: flex; align-items: center; gap: 12px;
  margin-top: 10px;
}
.price-meta .orig { margin: 0; }
.save-pill {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: #1A1408;
  background: linear-gradient(150deg, var(--gold-light), var(--gold-dark));
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}

/* Supporting line beneath the feature price */
.hero-prices--single { gap: 16px; align-items: stretch; }
.price-support {
  display: flex; align-items: center; gap: 13px;
  padding: 0 4px;
}
.price-support .ps-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,168,75,0.10);
  border: 1px solid rgba(200,168,75,0.22);
  color: var(--gold-light);
}
.price-support .ps-icon svg { width: 21px; height: 21px; }
.ps-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ps-title {
  font-size: 0.84rem; font-weight: 700;
  color: rgba(255,255,255,0.85); line-height: 1.2;
}
.ps-sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.42);
  line-height: 1.2;
}

/* ── Clickable feature price → scrolls to Best Sellers ── */
.price-feature-link {
  display: block; text-decoration: none; color: inherit;
  border-radius: 16px;
  -webkit-tap-highlight-color: transparent;
}
.price-feature-link:focus-visible {
  outline: 2px solid var(--gold-light); outline-offset: 3px;
}
.price-feature {
  transition: transform 0.25s var(--ease-out),
              border-color 0.25s ease, box-shadow 0.25s ease;
}
/* arrow cue (top-right), faint until hover */
.price-feature-arrow {
  position: absolute; top: 18px; right: 18px;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  opacity: 0.45;
  transform: translateX(-2px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}
.price-feature-arrow svg { width: 16px; height: 16px; }

@media (hover: hover) and (pointer: fine) {
  .price-feature-link:hover .price-feature {
    transform: translateY(-3px);
    border-color: rgba(200,168,75,0.5);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.07) inset,
      0 34px 64px -28px rgba(0,0,0,0.9),
      0 0 0 1px rgba(200,168,75,0.18);
  }
  .price-feature-link:hover .price-feature-arrow {
    opacity: 1; transform: translateX(2px);
  }
}
.price-feature-link:active .price-feature {
  transform: translateY(-1px) scale(0.99);
}

/* offset in-page scroll so the heading clears the sticky header */
#best-sellers { scroll-margin-top: 124px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Buttons */
.btn-primary {
  background: var(--gold); color: var(--black);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 32px; border-radius: var(--radius);
  transition: background-color 150ms ease, transform 150ms var(--ease-out), box-shadow 150ms ease;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(200,168,75,0.35); }
.btn-primary:active { transform: scale(0.97); box-shadow: none; transition-duration: 100ms; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 12px 32px; border-radius: var(--radius);
  transition: color 150ms ease, border-color 150ms ease, transform 100ms var(--ease-out);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline:active { transform: scale(0.97); transition-duration: 100ms; }

.btn-black {
  background: var(--black); color: var(--white);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 13px 28px; border-radius: var(--radius);
  transition: background-color 150ms ease, transform 150ms var(--ease-out);
  display: inline-block;
  border: 2px solid var(--black-soft);
}
.btn-black:hover { background: var(--black-soft); }
.btn-black:active { transform: scale(0.97); transition-duration: 100ms; }

/* ===== SECTION COMMON ===== */
.section { padding: 72px 20px; }
.section-dark { background: var(--black); color: var(--white); }
.section-cream { background: var(--cream); }
.section-gold  { background: var(--gold-subtle); }

.container { max-width: 1300px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black-soft);
  margin-bottom: 14px;
  line-height: 1.1;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  color: var(--text-muted); max-width: 520px;
  margin: 0 auto; font-size: 0.95rem; line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* Eyebrow label - no decorative punctuation */
.section-label {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--gold-light); }

.gold-line {
  width: 40px; height: 2px; background: var(--gold);
  margin: 14px auto 0; border-radius: 2px;
  display: none; /* hidden by default, shown when explicitly needed */
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 180ms ease;
  border: 1px solid var(--border);
  transition-delay: var(--stagger-delay, 0ms);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.product-img-placeholder .icon { font-size: 2.5rem; opacity: 0.3; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
/* Hover-to-play preview video layered over the card image */
.product-img .card-hover-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.product-img.playing .card-hover-video { opacity: 1; }
.badge-sale {
  position: absolute; top: 12px; left: 12px;
  background: var(--red-sale); color: var(--white);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
  z-index: 2;
}
.badge-new {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
}
.product-info { padding: 18px; }
.product-info .stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 6px; }
.product-info .stars span { color: var(--text-muted); font-size: 0.72rem; margin-left: 4px; }
.product-info h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; color: var(--black-soft); }
.product-price { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.price-current { font-size: 1.15rem; font-weight: 800; color: var(--black); }
.price-orig    { font-size: 0.85rem; text-decoration: line-through; color: var(--text-muted); }
.price-save    { font-size: 0.7rem; font-weight: 700; color: var(--red-sale); }
.product-actions { margin-top: 14px; display: flex; gap: 8px; align-items: stretch; }
.btn-add-cart {
  flex: 1; background: var(--gold); color: var(--black);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 10px; border-radius: var(--radius);
  text-align: center; display: flex; align-items: center; justify-content: center;
  transition: background-color 150ms ease, transform 100ms var(--ease-out);
}
.btn-add-cart:hover { background: var(--gold-dark); color: var(--white); }
.btn-add-cart:active { transform: scale(0.97); transition-duration: 80ms; }
.btn-view-details {
  flex: 1; background: var(--black); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 10px; border-radius: var(--radius);
  text-align: center; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 150ms ease, transform 100ms var(--ease-out);
}
.btn-view-details:hover { background: var(--gold-dark); color: var(--white); }
.btn-view-details:active { transform: scale(0.97); transition-duration: 80ms; }
.product-card h3 a { color: inherit; text-decoration: none; }
.product-card h3 a:hover { color: var(--gold-dark); }

/* ===== COMFORT FULL-BLEED SECTION ===== */
/* Mirror the hero gradient exactly, add faint gold glow */
.comfort-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #1A150C 55%, var(--black-soft) 100%);
}
/* Gold radial glow - same as hero ::before */
.comfort-full::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,168,75,0.09) 0%, transparent 55%);
}
/* Faint sofa-texture bg at low opacity */
.comfort-full::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: url('https://picsum.photos/seed/finity-sofa-texture/1400/800') center/cover no-repeat;
  opacity: 0.04;
}

/* ── Left: brand image + text ── */
.cf-left {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 72px 48px 72px 60px;
  gap: 36px;
}

/* Spotlit brand image card */
.cf-brand-wrap {
  width: 100%; max-width: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(200,168,75,0.14),
    0 24px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(200,168,75,0.10);
  /* entrance animation initial state */
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition:
    opacity 0.75s cubic-bezier(0.16,1,0.3,1),
    transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.cf-brand-wrap.cf-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cf-brand-img {
  width: 100%; height: auto; display: block;
}

/* Text block */
.cf-left-content {
  width: 100%; max-width: 380px;
  display: flex; flex-direction: column; gap: 14px;
  /* entrance animation initial state */
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0.12s,
    transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.12s;
}
.cf-left-content.cf-in {
  opacity: 1;
  transform: translateX(0);
}
.cf-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light);
}
.cf-heading {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--white); line-height: 1.06;
}
.cf-sub {
  font-size: 0.9rem; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
}
.cf-cta { align-self: flex-start; }

/* ── Right: floating numbered steps ── */
.cf-right {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  padding: 80px 60px 80px 48px;
}
.cf-steps { list-style: none; width: 100%; display: flex; flex-direction: column; }

.cf-step { display: flex; gap: 24px; align-items: flex-start; }

/* Number badge + vertical line */
.cf-step-aside {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 36px;
}
.cf-step-badge {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.3);
  background: rgba(200,168,75,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em;
  color: rgba(200,168,75,0.7);
  flex-shrink: 0;
  /* entrance */
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.45s cubic-bezier(0.34,1.56,0.64,1),
    transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.cf-step.cf-in .cf-step-badge { opacity: 1; transform: scale(1); }

.cf-step-line {
  width: 1px; flex: 1; min-height: 32px;
  background: rgba(200,168,75,0.18);
  margin: 6px 0;
  transform-origin: top center;
  /* entrance */
  opacity: 0;
  transform: scaleY(0);
  transition:
    opacity 0.35s ease 0.15s,
    transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.cf-step.cf-in .cf-step-line { opacity: 1; transform: scaleY(1); }

/* Step body */
.cf-step-body { flex: 1; padding-bottom: 8px; }

.cf-step-trigger {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 10px 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Outfit', sans-serif;
}
@media (hover: hover) and (pointer: fine) {
  .cf-step-trigger:hover .cf-step-title { color: var(--white); }
}

.cf-step-title {
  flex: 1; font-size: 0.95rem; font-weight: 700;
  color: rgba(255,255,255,0.72); letter-spacing: 0.005em;
  line-height: 1.3;
  transition: color var(--transition);
  /* entrance */
  opacity: 0;
  transform: translateY(10px);
}
.cf-step.cf-in .cf-step-title {
  opacity: 1; transform: translateY(0);
  transition:
    opacity 0.55s cubic-bezier(0.16,1,0.3,1) 0.1s,
    transform 0.55s cubic-bezier(0.16,1,0.3,1) 0.1s,
    color var(--transition);
}

/* Plus/Cross icon - hidden until step is in */
.cf-step-icon {
  width: 28px; height: 28px; position: relative; flex-shrink: 0;
  border: 1.5px solid rgba(200,168,75,0.35); border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s, background 0.3s ease, border-color 0.3s ease;
}
.cf-step.cf-in .cf-step-icon { opacity: 1; }
.cf-step-icon span {
  position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}
.cf-step-icon span:first-child { transform: translate(-50%,-50%); }
.cf-step-icon span:last-child  { transform: translate(-50%,-50%) rotate(90deg); }

/* Open state */
.cf-step.open .cf-step-badge { border-color: var(--gold); background: rgba(200,168,75,0.12); color: var(--gold); }
.cf-step.open .cf-step-title  { color: var(--white); }
.cf-step.open .cf-step-icon   { background: var(--gold); border-color: var(--gold); }
.cf-step.open .cf-step-icon span { background: var(--black); }
.cf-step.open .cf-step-icon span:last-child { transform: translate(-50%,-50%) rotate(0deg); opacity: 0; }

/* Expand panel */
.cf-step-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.cf-step-panel-inner { overflow: hidden; }
.cf-step-panel p {
  padding: 2px 40px 20px 0;
  font-size: 0.83rem; line-height: 1.8;
  color: rgba(255,255,255,0.45);
}
.cf-step.open .cf-step-panel { grid-template-rows: 1fr; }

/* Reduced motion: skip all entrance transforms */
@media (prefers-reduced-motion: reduce) {
  .cf-brand-wrap, .cf-left-content,
  .cf-step-badge, .cf-step-line,
  .cf-step-title, .cf-step-icon {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   COMFORT FEATURE — ENHANCED  (taste-skill + emil polish)
   Layered on top of the base styles above.
   ============================================================ */

/* Richer layered background: warm charcoal base + dual mesh glow */
.comfort-full {
  background:
    radial-gradient(120% 90% at 12% 8%,  rgba(200,168,75,0.10) 0%, transparent 42%),
    radial-gradient(90% 80% at 100% 100%, rgba(120,82,30,0.20)  0%, transparent 55%),
    linear-gradient(150deg, #100D08 0%, #1A150C 48%, #161310 100%);
}
.comfort-full::before {
  background: radial-gradient(ellipse at 22% 46%, rgba(200,168,75,0.10) 0%, transparent 58%);
}
/* CSS-only fine grain — replaces the external picsum texture (no network) */
.comfort-full::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ── Left column ── */
.cf-left { gap: 40px; }

/* eyebrow with a leading gold rule */
.cf-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold-light);
}
.cf-label::before {
  content: ''; width: 28px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* heading: tighter, with a single gold accent word */
.cf-heading {
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.cf-heading .cf-accent { color: var(--gold); }
.cf-sub { color: rgba(255,255,255,0.6); }

/* brand card: glass-edge refraction + tinted depth shadow */
.cf-brand-wrap {
  position: relative;
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(200,168,75,0.14),
    0 28px 60px -24px rgba(0,0,0,0.7),
    0 0 90px -30px rgba(200,168,75,0.25);
}
/* slow diagonal sheen sweep */
.cf-brand-wrap::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.10) 48%, transparent 58%);
  background-size: 240% 240%;
  animation: cf-sheen 7s var(--ease-in-out) infinite;
}
/* gentle float on the image (wrap owns the entrance transform) */
.cf-brand-img { animation: cf-float 7s ease-in-out infinite; }

@keyframes cf-sheen {
  0%, 100% { background-position: 140% 0; }
  50%      { background-position: -40% 0; }
}
@keyframes cf-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* CTA tactile press */
.cf-cta { transition: transform 0.16s var(--ease-out), filter 0.25s ease; }
.cf-cta:active { transform: scale(0.97); }

/* ── Right column ── */
.cf-right {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
}
/* faint vertical seam between the two columns */
.cf-right::before {
  content: ''; position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,168,75,0.22) 18%, rgba(200,168,75,0.22) 82%, transparent);
}

.cf-right-head {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.cf-right-head.cf-in { opacity: 1; transform: translateY(0); }
.cf-right-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-light);
}
.cf-right-eyebrow::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.cf-right-note {
  margin-top: 10px; font-size: 0.92rem; line-height: 1.6;
  color: rgba(255,255,255,0.5); max-width: 360px;
}

/* ── Steps ── */
.cf-steps { gap: 2px; }
.cf-step {
  gap: 22px;
  border-radius: 14px;
  padding: 2px 14px 2px 4px;
  transition: background 0.3s ease;
}
.cf-step-body { padding-bottom: 6px; }

/* number badge — refined idle, strong gold-fill active */
.cf-step-badge {
  font-size: 0.7rem;
  background: rgba(200,168,75,0.07);
  border-color: rgba(200,168,75,0.28);
  box-shadow: 0 0 0 4px rgba(200,168,75,0.04);
}
.cf-step.open .cf-step-badge {
  background: linear-gradient(150deg, var(--gold-light), var(--gold-dark));
  border-color: transparent;
  color: #1A1408;
  box-shadow: 0 6px 18px -6px rgba(200,168,75,0.6), 0 0 0 4px rgba(200,168,75,0.10);
}
.cf-step.open .cf-step-line { background: rgba(200,168,75,0.45); }

/* hover-aware title nudge + brighter icon ring */
.cf-step-title {
  letter-spacing: 0;
  transition: color var(--transition), transform 0.25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .cf-step-trigger:hover .cf-step-title { transform: translateX(2px); color: var(--white); }
  .cf-step-trigger:hover .cf-step-icon  { border-color: var(--gold); }
}

/* icon press feedback */
.cf-step-icon {
  transition: opacity 0.4s ease 0.2s, background 0.3s ease,
              border-color 0.3s ease, transform 0.18s var(--ease-out);
}
.cf-step-trigger:active .cf-step-icon { transform: scale(0.9); }

/* open step: warm wash + smoother reveal */
.cf-step.open {
  background: linear-gradient(90deg, rgba(200,168,75,0.07), rgba(200,168,75,0.015) 60%, transparent);
}
.cf-step.open .cf-step-title { color: var(--white); }
.cf-step-panel { transition: grid-template-rows 0.42s var(--ease-out); }
.cf-step-panel p { color: rgba(255,255,255,0.55); padding-right: 28px; }

/* Stack cleanly on mobile: drop the seam, lighten paddings */
@media (max-width: 900px) {
  .cf-right::before { display: none; }
  .cf-right { gap: 22px; }
  .cf-step { padding-right: 8px; }
}

/* Reduced motion: silence perpetual + entrance motion for the new bits */
@media (prefers-reduced-motion: reduce) {
  .cf-brand-img, .cf-brand-wrap::after { animation: none !important; }
  .cf-right-head { opacity: 1 !important; transform: none !important; }
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white); padding: 28px;
  border-radius: 10px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 220ms var(--ease-out), border-color 180ms ease;
  transition-delay: var(--stagger-delay, 0ms);
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.review-text  { font-size: 0.9rem; line-height: 1.72; color: var(--text-muted); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--black) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-meta .name  { font-weight: 700; font-size: 0.88rem; }
.review-meta .date  { font-size: 0.72rem; color: var(--text-muted); }
.review-verified { display: flex; align-items: center; gap: 4px; font-size: 0.7rem; color: #27AE60; font-weight: 600; margin-top: 3px; }

/* ===== COLLECTION SHOWCASE ===== */
.collection-showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.collection-card {
  border-radius: 10px; overflow: hidden; position: relative;
  min-height: 340px; cursor: pointer; display: flex; align-items: flex-end;
  background: var(--black-soft);
  transition: transform 250ms var(--ease-out), box-shadow 250ms ease;
}
.collection-card:hover { box-shadow: var(--shadow-lg); }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.collection-card:hover img { transform: scale(1.05); }
.collection-card-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1510 0%, #2d2318 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; color: var(--gold); opacity: 0.4; font-size: 0.8rem;
}
.collection-card-placeholder .icon { font-size: 3.5rem; }
.collection-overlay {
  position: relative; z-index: 2;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, transparent 100%);
  width: 100%; padding: 28px;
}
.collection-overlay .tag {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 8px;
}
.collection-overlay h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 8px;
  line-height: 1.25;
}
.collection-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.collection-overlay .price { font-size: 1.1rem; font-weight: 800; color: var(--gold-light); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--black);
  padding: 44px 20px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 960px; margin: 0 auto; gap: 20px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stat-num  {
  font-size: 2.2rem; font-weight: 900;
  color: var(--white); margin-bottom: 8px;
  letter-spacing: -0.02em; line-height: 1;
}
.stat-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.stat-divider { border-right: 1px solid rgba(255,255,255,0.08); }

/* ===== COUCH REMOVAL HIGHLIGHT (homepage) ===== */
.removal-cta {
  background: linear-gradient(135deg, var(--black) 0%, #1C170E 100%);
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}
.removal-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px; color: var(--white);
  line-height: 1.1;
}
.removal-cta h2 span { color: var(--gold); }
.removal-cta p {
  max-width: 540px; margin: 0 auto 36px;
  color: rgba(255,255,255,0.68); font-size: 1rem; line-height: 1.75;
}
.removal-features {
  display: flex; gap: 40px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.removal-feature {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.82); font-size: 0.85rem; font-weight: 600;
}
.removal-feature .icon { color: var(--gold); font-size: 1rem; }

@keyframes shake-cta {
  0%   { transform: scale(1) translateX(0); }
  6%   { transform: scale(1.07) translateX(0); }
  12%  { transform: scale(1.07) translateX(-9px); }
  18%  { transform: scale(1.07) translateX(9px); }
  24%  { transform: scale(1.07) translateX(-7px); }
  30%  { transform: scale(1.07) translateX(6px); }
  36%  { transform: scale(1.04) translateX(-3px); }
  42%  { transform: scale(1) translateX(0); }
  100% { transform: scale(1) translateX(0); }
}
.removal-cta:hover .btn-primary {
  animation: shake-cta 2.8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .removal-cta:hover .btn-primary { animation: none; }
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 180ms ease;
  background: var(--white);
  transition-delay: var(--stagger-delay, 0ms);
}
.blog-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: 24px; }
.blog-category {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--black-soft); }
.blog-card-body p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: var(--text-muted); }
.blog-meta .author { font-weight: 600; color: var(--black-soft); }
.blog-read-time { color: var(--gold-dark); font-weight: 700; }
.blog-read-more {
  font-size: 0.75rem; font-weight: 700; color: var(--gold-dark);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.blog-read-more:hover { color: var(--black); }
.blog-read-more::after { content: 'Read Article'; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 20px; text-align: center;
}
.newsletter h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.newsletter p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.newsletter-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 13px 18px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.9rem; background: var(--white);
  transition: var(--transition); color: var(--text-dark);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  background: var(--black); color: var(--white);
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }
.newsletter-form button:active { transform: scale(0.98); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black); color: rgba(255,255,255,0.72);
  padding: 64px 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px; max-width: 1300px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand .logo-label .brand { color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.5);
  transition: var(--transition); letter-spacing: 0;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,168,75,0.08); }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col ul li a::before { content: '>'; color: var(--gold-dark); font-size: 0.8rem; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem; padding: 6px 0; color: rgba(255,255,255,0.55);
}
.footer-contact .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 4px 10px;
  font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1C170E 60%, var(--black-soft) 100%);
  color: var(--white); padding: 80px 20px 70px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,168,75,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px; position: relative;
  line-height: 1.05;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.68);
  max-width: 560px; margin: 0 auto; position: relative;
}
.breadcrumb {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  margin-bottom: 20px; position: relative;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}
.filter-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.filter-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.filter-btn {
  padding: 7px 16px; border: 1px solid var(--border); border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-dark);
  transition: var(--transition); background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.filter-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.sort-select {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.8rem; background: var(--white); color: var(--text-dark);
}

/* ===== PLACEHOLDER CONTENT ===== */
.placeholder-section {
  background: var(--cream); border: 2px dashed var(--border);
  border-radius: 12px; padding: 60px 40px;
  text-align: center; margin: 40px 0;
}
.placeholder-section .placeholder-icon { font-size: 3rem; opacity: 0.3; margin-bottom: 16px; }
.placeholder-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-muted); }
.placeholder-section p  { font-size: 0.85rem; color: var(--text-muted); }

/* ===== COUCH REMOVAL PAGE ===== */
.removal-hero { background: linear-gradient(135deg, #0A0A0A 0%, #1C170E 100%); }
.removal-steps { counter-reset: step; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.removal-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px; background: var(--white);
  border-radius: 10px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 200ms var(--ease-out), border-color 180ms ease;
}
.removal-step:hover { border-color: var(--gold); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.service-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-tag {
  background: var(--cream); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-dark);
  transition: var(--transition);
}
.area-tag:hover { background: var(--gold-subtle); border-color: var(--gold); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form-wrap {
  background: var(--white); padding: 40px;
  border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.9rem; transition: var(--transition);
  background: var(--white); color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-wrap { padding: 10px; }
.contact-info-wrap h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex; gap: 16px; padding: 20px;
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border); margin-bottom: 16px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.contact-info-item:hover { border-color: var(--gold); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-subtle); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-dark); flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.78rem; font-weight: 700; margin-bottom: 4px;
  color: var(--black-soft); text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-detail p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== BLOG PAGE ===== */
.blog-search { max-width: 500px; margin: 0 auto 48px; position: relative; }
.blog-search input {
  width: 100%; padding: 14px 50px 14px 18px;
  border: 2px solid var(--border); border-radius: 30px;
  font-family: inherit; font-size: 0.9rem;
  color: var(--text-dark);
}
.blog-search input:focus { outline: none; border-color: var(--gold); }
.blog-search button { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; color: var(--gold-dark); font-size: 1rem; }

/* ===== SALE PAGE ===== */
.sale-timer {
  background: var(--red-sale); color: var(--white);
  text-align: center; padding: 14px 20px;
}
.sale-timer .timer-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.timer-boxes { display: flex; gap: 12px; justify-content: center; }
.timer-box { text-align: center; }
.timer-box .num { font-size: 1.8rem; font-weight: 900; display: block; }
.timer-box .unit { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-32 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.view-all-wrap { text-align: center; margin-top: 44px; }
.loading-placeholder { opacity: 0.5; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 0.8; } }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  transition-delay: var(--stagger-delay, 0ms);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
  transition-delay: 0ms; /* reset so hover states are never delayed */
}

/* ===== HERO ENTRY ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-content {
  animation: heroFadeUp 550ms var(--ease-out) both;
}
.hero-prices {
  animation: heroFadeUp 550ms var(--ease-out) 180ms both;
}

/* ===== STAGGER: product grids ===== */
.product-grid .product-card:nth-child(1) { --stagger-delay: 0ms; }
.product-grid .product-card:nth-child(2) { --stagger-delay: 60ms; }
.product-grid .product-card:nth-child(3) { --stagger-delay: 120ms; }
.product-grid .product-card:nth-child(4) { --stagger-delay: 180ms; }

/* ===== STAGGER: stats bar ===== */
.stats-grid .stat-item:nth-child(1) { --stagger-delay: 0ms; }
.stats-grid .stat-item:nth-child(2) { --stagger-delay: 80ms; }
.stats-grid .stat-item:nth-child(3) { --stagger-delay: 160ms; }
.stats-grid .stat-item:nth-child(4) { --stagger-delay: 240ms; }

/* ===== STAGGER: review cards ===== */
.reviews-grid .review-card:nth-child(1) { --stagger-delay: 0ms; }
.reviews-grid .review-card:nth-child(2) { --stagger-delay: 70ms; }
.reviews-grid .review-card:nth-child(3) { --stagger-delay: 140ms; }

/* ===== STAGGER: blog cards ===== */
.blog-grid .blog-card:nth-child(1) { --stagger-delay: 0ms; }
.blog-grid .blog-card:nth-child(2) { --stagger-delay: 70ms; }
.blog-grid .blog-card:nth-child(3) { --stagger-delay: 140ms; }

/* ===== HOVER: only on pointer devices (not touch) ===== */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover { transform: translateY(-4px); }
  .blog-card:hover { transform: translateY(-3px); }
  .review-card:hover { transform: translateY(-2px); }
  .collection-card:hover { transform: scale(1.01); }
  .btn-primary:hover { transform: translateY(-1px); }
  .removal-step:hover { transform: translateY(-2px); }
  .contact-info-item:hover { border-color: var(--gold); }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-content,
  .hero-prices {
    animation: none;
  }
  .product-card,
  .blog-card,
  .review-card,
  .collection-card,
  .btn-primary,
  .btn-outline,
  .btn-black,
  .btn-add-cart,
  .removal-step {
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease !important;
    transform: none !important;
  }
}

/* ===== CART PAGE ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }

.cart-items-col { display: flex; flex-direction: column; }
.cart-page-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.cart-count-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 32px; }

.cart-item {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 20px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  animation: cartItemIn 300ms var(--ease-out) both;
}
@keyframes cartItemIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cart-item-img { width: 110px; height: 86px; border-radius: 10px; overflow: hidden; background: var(--cream); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 0.93rem; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.cart-item-meta { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 12px; }
.cart-item-prices { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.cart-item-prices .price-current { font-size: 1rem; font-weight: 800; }
.cart-item-prices .price-orig { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.cart-item-qty-row { display: flex; align-items: center; gap: 12px; }
.cart-item-qty { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.cart-item-qty button { width: 34px; height: 36px; font-size: 1rem; font-weight: 700; background: var(--cream); color: var(--black); border: none; cursor: pointer; transition: background 120ms ease; }
.cart-item-qty button:hover { background: var(--cream-dark); }
.cart-item-qty button:active { background: var(--border); }
.cart-item-qty span { width: 38px; text-align: center; font-weight: 700; font-size: 0.85rem; }
.cart-item-remove {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer; border: none; background: none;
  border-radius: 7px; transition: color 150ms ease, background 150ms ease;
  flex-shrink: 0; align-self: flex-start; margin-top: 2px;
}
.cart-item-remove:hover { color: var(--red-sale); background: rgba(184,59,44,0.08); }
.cart-item-remove:active { transform: scale(0.94); }

.cart-empty {
  text-align: center; padding: 80px 20px;
  border: 2px dashed var(--border); border-radius: 14px;
  margin-bottom: 32px;
}
.cart-empty .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; }
.cart-empty h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cart-empty p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; }

/* Cart Summary */
.cart-summary {
  position: sticky; top: calc(var(--nav-h) + var(--announce-h) + 24px);
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
}
.cart-summary h3 { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.85rem; margin-bottom: 12px; color: var(--text-muted); }
.cart-summary-row span:last-child { font-weight: 700; color: var(--black); }
.cart-summary-free { color: #2d7a3a; font-weight: 700; }
.cart-summary-divider { border-top: 1px solid var(--border); margin: 16px 0; }
.cart-summary-total { font-size: 1rem; font-weight: 900; color: var(--black); margin-bottom: 0; }
.cart-summary-total span { font-size: 1.2rem; }
.cart-checkout-btn { display: block; text-align: center; margin-top: 20px; padding: 15px; font-size: 0.88rem; letter-spacing: 0.04em; }
.cart-continue-btn { display: block; text-align: center; margin-top: 10px; padding: 12px; font-size: 0.82rem; }
.cart-summary-meta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.cart-summary-meta p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; }
.cart-summary-meta a { color: var(--gold-dark); font-weight: 600; }
.cart-payment-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.cart-payment-row .footer-badge { font-size: 0.55rem; padding: 3px 6px; }

/* Cart YMAL */
.cart-ymal { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.cart-ymal-title { font-size: 1rem; font-weight: 800; margin-bottom: 20px; color: var(--black); }
.cart-ymal-list { display: flex; flex-direction: column; gap: 14px; }
.cart-ymal-item {
  display: grid; grid-template-columns: 88px 1fr auto;
  gap: 16px; align-items: center; padding: 16px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--white); text-decoration: none; color: var(--black);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .cart-ymal-item:hover { border-color: var(--gold-light); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
}
.cart-ymal-img { width: 88px; height: 68px; border-radius: 8px; overflow: hidden; background: var(--cream); }
.cart-ymal-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-ymal-name { font-size: 0.83rem; font-weight: 700; line-height: 1.3; margin-bottom: 5px; }
.cart-ymal-prices { display: flex; align-items: baseline; gap: 8px; }
.cart-ymal-prices .price-current { font-size: 0.85rem; font-weight: 800; }
.cart-ymal-prices .price-orig { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.cart-ymal-cta { font-size: 0.72rem; font-weight: 700; color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }

@media (max-width: 960px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 640px) {
  .cart-item { grid-template-columns: 90px 1fr auto; gap: 14px; }
  .cart-item-img { width: 90px; height: 72px; }
  .cart-ymal-item { grid-template-columns: 72px 1fr; }
  .cart-ymal-cta { display: none; }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pdp-breadcrumb { padding: 20px 0 0; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pdp-grid > * { min-width: 0; }

.pdp-gallery { position: sticky; top: calc(var(--nav-h) + var(--announce-h) + 20px); }
.pdp-main-img {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--cream);
}
.pdp-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 200ms var(--ease-out);
}
.pdp-main-img video {
  width: 100%; height: 100%; object-fit: cover;
  background: #000; display: block;
}
.pdp-thumb-video { position: relative; }
.pdp-thumb-video img { filter: brightness(0.72); }
.pdp-thumb-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.85);
  color: #fff;
  transition: background 150ms ease, transform 150ms var(--ease-out);
}
.pdp-thumb-play svg { width: 13px; height: 13px; margin-left: 1px; }
.pdp-thumb-video:hover .pdp-thumb-play {
  background: var(--gold); border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
}
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.pdp-thumb {
  width: 82px; height: 62px; border-radius: 8px; overflow: hidden;
  cursor: pointer; flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 150ms ease, transform 150ms ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--gold); }
.pdp-thumb:hover:not(.active) { border-color: var(--gold-light); transform: translateY(-2px); }

.pdp-title { font-size: 1.55rem; font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: var(--black); }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.pdp-rating-count { font-size: 0.82rem; color: var(--text-muted); }
.pdp-rating-link { font-size: 0.82rem; color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.pdp-price .price-current { font-size: 1.9rem; font-weight: 900; }
.pdp-price .price-orig { font-size: 1rem; }
.pdp-price .price-save { font-size: 0.72rem; }

.pdp-option-group { margin-bottom: 22px; }
.pdp-option-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.pdp-swatches { display: flex; gap: 10px; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.08);
  outline: 2px solid transparent; outline-offset: 3px;
  cursor: pointer;
  transition: outline-color 150ms ease, transform 150ms var(--ease-out);
}
.swatch.active { outline-color: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .swatch:hover { transform: scale(1.12); }
}
.pdp-sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.size-pill {
  padding: 9px 22px; border: 1.5px solid var(--border); border-radius: 7px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  background: var(--white); color: var(--black);
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 80ms ease;
}
.size-pill.active { border-color: var(--black); background: var(--black); color: var(--white); }
@media (hover: hover) and (pointer: fine) {
  .size-pill:not(.active):hover { border-color: var(--black-soft); }
}
.size-pill:active { transform: scale(0.97); }

.pdp-cart-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: stretch; }
.pdp-qty {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden;
}
.pdp-qty button {
  width: 40px; height: 50px; font-size: 1.1rem; font-weight: 700;
  background: var(--cream); color: var(--black); border: none; cursor: pointer;
  transition: background 120ms ease;
}
.pdp-qty button:hover { background: var(--cream-dark); }
.pdp-qty button:active { background: var(--border); }
.pdp-qty span { width: 46px; text-align: center; font-weight: 700; font-size: 0.92rem; }
.pdp-add-cart { flex: 1; font-size: 0.9rem; letter-spacing: 0.04em; transition: background 150ms ease, transform 80ms ease, box-shadow 150ms ease; }
.pdp-add-cart:active { transform: scale(0.97); }

.pdp-delivery-note {
  font-size: 0.78rem; line-height: 1.7; color: var(--text-muted);
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 28px;
}
.pdp-delivery-note a { color: var(--gold-dark); font-weight: 600; }

.pdp-accordion { border-top: 1px solid var(--border); }
.pdp-accordion:last-of-type { border-bottom: 1px solid var(--border); }
.pdp-accordion summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; font-size: 0.88rem; font-weight: 700; color: var(--black);
  transition: color 150ms ease;
}
.pdp-accordion summary::-webkit-details-marker { display: none; }
.pdp-accordion summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300;
  color: var(--text-muted); line-height: 1;
  transition: transform 250ms var(--ease-out), color 150ms ease;
}
.pdp-accordion[open] summary::after { transform: rotate(45deg); color: var(--gold); }
.pdp-accordion[open] summary { color: var(--gold-dark); }
.pdp-accordion > *:not(summary) { padding-bottom: 20px; }
.pdp-features-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pdp-features-list li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; display: flex; gap: 10px; }
.pdp-features-list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.pdp-dims { display: flex; flex-direction: column; gap: 0; }
.pdp-dim-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.83rem; padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pdp-dim-row:last-child { border-bottom: none; }
.pdp-dim-row span:last-child { font-weight: 700; color: var(--black); }
.pdp-accordion p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* Review Aggregate */
.review-aggregate {
  display: grid; grid-template-columns: 160px 1fr; gap: 48px;
  align-items: start; margin-bottom: 48px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px;
}
.review-score-big { text-align: center; }
.review-score-big .score { font-size: 4.5rem; font-weight: 900; line-height: 1; color: var(--black); letter-spacing: -0.03em; }
.review-score-big .stars { font-size: 1.1rem; color: var(--gold); margin: 6px 0; }
.review-score-big .count { font-size: 0.75rem; color: var(--text-muted); }
.review-bars { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.review-bar-row { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-muted); }
.review-bar-track { flex: 1; height: 6px; background: var(--cream-dark); border-radius: 99px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--gold); border-radius: 99px; transition: width 600ms var(--ease-out); }
.review-write-btn { margin-top: 20px; }

/* You May Also Like */
.ymal-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 32px; }

/* Home Upgraded */
.home-upgraded-text h2 { color: var(--white); }

/* PDP Responsive */
@media (max-width: 960px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-gallery { position: static; }
  .review-aggregate { grid-template-columns: 120px 1fr; gap: 28px; padding: 24px; }
}
@media (max-width: 640px) {
  .pdp-title { font-size: 1.25rem; }
  .pdp-price .price-current { font-size: 1.6rem; }
  .review-aggregate { grid-template-columns: 1fr; }
  .review-score-big { display: flex; align-items: center; gap: 16px; text-align: left; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 0.68rem; padding: 7px 9px; }
  .hero-split { gap: 48px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .header-icon-link { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .comfort-full { grid-template-columns: 1fr; }
  .cf-left { padding: 56px 32px 40px; }
  .cf-right { padding: 40px 32px 56px; }
  .cf-step-panel p { padding-right: 0; }
  .cf-brand-wrap { max-width: 300px; }
  .collection-showcase { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(2) { border-right: none; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-prices {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-left: 0;
    padding-top: 40px;
    margin-top: 40px;
    flex-direction: row;
    justify-content: space-around;
  }
  .price-block {
    border-bottom: none;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .price-block:last-child { border-right: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; --announce-h: 28px; }
  .announce-bar { font-size: 0.6rem; letter-spacing: 0.06em; }
  .announce-dot { margin: 0 10px; }
  .announce-segment { padding-right: 40px; }
  .header-top { padding: 0 16px; }
  .header-phone-num { display: none; }
  .logo-img { height: 44px; }
  .section { padding: 52px 16px; }
  .hero-banner { padding: 60px 16px 48px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px; }
  .product-info h3 { font-size: 0.75rem; }
  .price-current { font-size: 0.95rem; }
  .price-orig { font-size: 0.72rem; }
  .price-save { display: none; }
  .product-info .stars { font-size: 0.7rem; margin-bottom: 4px; }
  .review-card { padding: 18px; }
  .review-text { font-size: 0.82rem; line-height: 1.6; margin-bottom: 14px; }
  .review-stars { font-size: 0.75rem; margin-bottom: 10px; }
  .review-meta .name { font-size: 0.8rem; }
  .review-avatar { width: 34px; height: 34px; font-size: 0.75rem; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
  .footer-brand {
    grid-column: 1 / -1;
    order: 2;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p { font-size: 0.78rem; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-col { order: 1; }
  .footer-col h4 { font-size: 0.62rem; margin-bottom: 12px; }
  .footer-col ul li a { font-size: 0.75rem; }
  .footer-col ul li + li { margin-top: 7px; }
  .footer-contact li { font-size: 0.75rem; gap: 8px; }
  .footer-contact a { word-break: break-all; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 24px; }
  .cf-heading { font-size: 1.7rem; }
  .cf-left { padding: 40px 20px 32px; }
  .cf-right { padding: 32px 20px 48px; }
  .cf-step-title { font-size: 0.85rem; }
  .cf-brand-wrap { max-width: 260px; }
  .removal-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .removal-step { flex-direction: column; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .blog-card-body { padding: 12px 10px; }
  .blog-card-body h3 { font-size: 0.8rem; margin-bottom: 6px; }
  .blog-card-body p { display: none; }
  .blog-meta { font-size: 0.6rem; gap: 3px; }
  .sa-page-cities { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .sa-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sa-trust-card { padding: 16px 12px; }
  .sa-trust-card h4 { font-size: 0.82rem; }
  .sa-trust-card p { font-size: 0.72rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .review-card { padding: 14px; }
  .review-text { font-size: 0.76rem; line-height: 1.5; margin-bottom: 8px; }
  .review-avatar { width: 28px; height: 28px; font-size: 0.68rem; }
  .pdp-breadcrumb { padding: 12px 16px 0; }
  .hero-prices {
    flex-direction: column;
    padding-top: 32px;
  }
  .price-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    text-align: left;
  }
  .price-block:last-child { border-bottom: none; }
  .price-block .price { font-size: 1.8rem; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-info { padding: 8px; }
  .product-info h3 { font-size: 0.7rem; }
  .price-current { font-size: 0.88rem; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 16px 8px; }
}

/* Keep the single feature-price card intact on smaller screens */
@media (max-width: 960px) {
  .hero-prices--single {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 36px;
    margin-top: 36px;
  }
  .hero-prices--single .price-feature {
    width: 100%; max-width: 340px;
    padding: 24px 26px 22px;
    border: 1px solid rgba(200,168,75,0.22);
    border-radius: 16px;
    text-align: left;
  }
  .hero-prices--single .price-support { max-width: 340px; }
}
@media (max-width: 640px) {
  .hero-prices--single .price-feature { max-width: none; padding: 22px 22px 20px; }
  .hero-prices--single .price-feature .price { font-size: 2.5rem; }
}

/* ============================================================
   CONTACT — Cart Checkout section
   ============================================================ */
#cartFields {
  max-height: 0; opacity: 0; overflow: hidden; margin: 0;
  transition: max-height 0.6s ease, opacity 0.45s ease, margin 0.45s ease;
}
#cartFields.open { max-height: 4000px; opacity: 1; margin: 4px 0 20px; }
@media (prefers-reduced-motion: reduce) { #cartFields { transition: none; } }

.cart-review { display: flex; flex-direction: column; gap: 10px; }
.cart-line {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--white);
}
.cart-line-img {
  width: 56px; height: 56px; border-radius: 8px; object-fit: cover;
  background: var(--cream-dark); flex-shrink: 0;
}
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.cart-line-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }
.cart-line-price { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); white-space: nowrap; }
.cart-line.cart-total {
  background: transparent; border: none; border-top: 2px solid var(--border);
  border-radius: 0; padding: 12px 12px 0;
}
.cart-line.cart-total .cart-line-info {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 800; color: var(--text-muted);
}
.cart-line.cart-total .cart-line-price { font-size: 1.05rem; color: var(--gold-dark); }
.cart-empty { font-size: 0.85rem; color: var(--text-muted); padding: 8px 0; }
.cart-empty a { color: var(--gold-dark); font-weight: 700; }

.fee-box {
  border: 1px solid var(--gold); border-radius: 12px;
  background: var(--gold-subtle); padding: 18px 18px 16px;
}
.fee-row { display: flex; justify-content: space-between; align-items: baseline; }
.fee-label { font-size: 0.82rem; font-weight: 700; color: var(--black-soft); }
.fee-amount { font-size: 1.3rem; font-weight: 900; color: var(--gold-dark); }
.fee-note { font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; margin: 8px 0 14px; }
.fee-pay-btn {
  display: block; width: 100%; text-align: center;
  background: #635BFF; color: #fff;
  padding: 13px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em;
  transition: transform 0.16s var(--ease-out), filter 0.2s ease;
}
.fee-pay-btn:hover { filter: brightness(1.07); }
.fee-pay-btn:active { transform: scale(0.98); }
.fee-confirm {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 14px; font-size: 0.8rem; color: var(--black-soft); cursor: pointer;
}
.fee-confirm input {
  margin-top: 2px; width: 16px; height: 16px;
  accent-color: var(--gold-dark); flex-shrink: 0;
}

#sendBtn:disabled { opacity: 0.5; cursor: not-allowed; }

.order-success {
  border: 1px solid var(--gold); background: var(--gold-subtle);
  border-radius: 12px; padding: 30px 26px; text-align: center;
}
.order-success h3 { color: var(--gold-dark); margin-bottom: 8px; }
.order-success p { font-size: 0.88rem; color: var(--black-soft); line-height: 1.65; }

/* ============================================================
   TRUST / RESTORED CLARITY ELEMENTS
   ============================================================ */

/* Hero restored sub-label */
.hero-restored-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.28);
  border-radius: 999px;
  padding: 6px 14px; margin: 10px 0 14px;
}

/* Restored badge on product cards */
.badge-restored {
  position: absolute; top: 12px; right: 12px;
  background: rgba(20,16,8,0.82);
  color: var(--gold-light);
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 3px;
  border: 1px solid rgba(200,168,75,0.35);
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ── What Does Restored Mean? section ── */
.restored-explainer { padding: 80px 0; }
.restored-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin-top: 52px; flex-wrap: wrap;
}
.restored-step {
  flex: 1; min-width: 160px; max-width: 210px;
  text-align: center; padding: 0 12px;
}
.restored-step-arrow {
  color: rgba(200,168,75,0.4); font-size: 1.6rem;
  align-self: center; padding-bottom: 32px; flex-shrink: 0;
}
.restored-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(200,168,75,0.10);
  border: 1.5px solid rgba(200,168,75,0.28);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: var(--gold-light);
}
.restored-icon svg { width: 26px; height: 26px; }
.restored-num {
  font-size: 0.6rem; font-weight: 900; letter-spacing: 0.14em;
  color: var(--gold-dark); margin-bottom: 8px;
}
.restored-step h4 {
  font-size: 0.92rem; font-weight: 800; color: var(--white);
  margin-bottom: 8px; line-height: 1.25;
}
.restored-step p {
  font-size: 0.76rem; color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
@media (max-width: 700px) {
  .restored-explainer { padding: 44px 0; }
  .restored-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
    margin-top: 28px;
  }
  .restored-step-arrow { display: none; }
  .restored-step { max-width: none; padding: 0 4px; }
  .restored-icon { width: 44px; height: 44px; margin-bottom: 10px; }
  .restored-icon svg { width: 20px; height: 20px; }
  .restored-step h4 { font-size: 0.84rem; margin-bottom: 6px; }
  .restored-step p { font-size: 0.72rem; line-height: 1.55; }
  .restored-num { margin-bottom: 5px; }
}

/* ── Product detail: Condition field ── */
.pdp-condition {
  margin: 16px 0;
  padding: 14px 16px;
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 10px;
}
.pdp-condition-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
  margin-right: 8px;
}
.pdp-condition-value {
  font-size: 0.82rem; font-weight: 800;
  color: var(--gold-dark);
}
.pdp-condition-note {
  font-size: 0.75rem; color: var(--text-muted);
  line-height: 1.65; margin-top: 8px;
}

/* ── Badge: NEW ARRIVALS (wider text support) ── */
.badge-new { white-space: nowrap; }

/* ── Section break sash between Reviews and Blog ── */
.section-break-sash {
  height: 90px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,168,75,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #100D08 0%, #1A150C 55%, #161310 100%);
  clip-path: polygon(0 0, 100% 28%, 100% 72%, 0 100%);
  margin: -1px 0;
  position: relative;
  z-index: 2;
}

/* ── Blog section on dark background ── */
.blog-dark {
  background: #111009;
  padding-top: 36px;
  padding-bottom: 44px;
}
.blog-dark .section-header { margin-bottom: 24px; }
.blog-dark .blog-card-img { aspect-ratio: 2/1; }
.blog-dark .blog-card-body { padding: 16px 18px; }
.blog-dark .blog-card-body h3 { font-size: 0.9rem; margin-bottom: 6px; }
.blog-dark .blog-card-body p { font-size: 0.82rem; margin-bottom: 10px; line-height: 1.55; }
.blog-dark .view-all-wrap { margin-top: 24px; }
.blog-dark .section-label { color: var(--gold-light); }
.blog-dark h2 { color: var(--white); }
.blog-dark p { color: rgba(255,255,255,0.6); }
.blog-dark .blog-card {
  background: #1c1710;
  border: 1px solid rgba(200,168,75,0.15);
}
.blog-dark .blog-card-body { background: transparent; }
.blog-dark .blog-category { color: var(--gold-light); }
.blog-dark .blog-card h3 { color: var(--white); }
.blog-dark .blog-card p { color: rgba(255,255,255,0.55); }
.blog-dark .blog-meta { color: rgba(255,255,255,0.6); }
.blog-dark .blog-meta .author { color: rgba(255,255,255,0.85); }
.blog-dark .blog-read-time { color: var(--gold-light); font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .blog-dark .blog-card:hover {
    border-color: rgba(200,168,75,0.35);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
}
.blog-dark .btn-black {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
@media (hover: hover) and (pointer: fine) {
  .blog-dark .btn-black:hover { background: var(--gold-light); border-color: var(--gold-light); }
}

/* ===== SERVICE AREA STRIP ===== */
.sa-strip { background: #141210; overflow: hidden; }
.sa-strip-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 520px;
}
.sa-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 52px 64px 40px; gap: 20px;
}
.sa-text h2 { color: var(--white); font-size: clamp(1.55rem, 2.8vw, 2.1rem); margin: 0; line-height: 1.22; }
.sa-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.sa-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border: 2px solid rgba(255,255,255,0.28);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.sa-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.sa-map-wrap { position: relative; overflow: hidden; }
.sa-map-wrap .finity-map { width: 100%; height: 580px; display: block; }
@media (max-width: 860px) { .sa-map-wrap .finity-map { height: 300px; } }
@media (max-width: 860px) {
  .sa-strip-inner { grid-template-columns: 1fr; }
  .sa-text { padding: 44px 24px 36px; text-align: center; align-items: center; }
  .sa-btns { justify-content: center; }
  .sa-map-wrap svg { min-height: 280px; }
}

/* ===== SERVICE AREA PAGE ===== */
.sa-page-cities { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 24px 32px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
.sa-county-group h4 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.sa-county-group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sa-county-group li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text-dark); font-weight: 500;
}
.sa-county-group li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.sa-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.sa-trust-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px 20px; text-align: center;
}
.sa-trust-card .sa-trust-icon { font-size: 1.8rem; margin-bottom: 12px; }
.sa-trust-card h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.sa-trust-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

@media (max-width: 640px) {
  .sa-page-cities { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .sa-county-group li { font-size: 0.8rem; gap: 6px; }
  .sa-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
  .sa-trust-card { padding: 16px 12px; }
  .sa-trust-card .sa-trust-icon { font-size: 1.4rem; margin-bottom: 8px; }
  .sa-trust-card h4 { font-size: 0.82rem; }
  .sa-trust-card p { font-size: 0.72rem; }
}

/* Leaflet map tooltip */
.finity-map-tip {
  background: var(--black) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35) !important;
  white-space: nowrap !important;
}
.finity-map-tip::before { border-top-color: var(--black) !important; }

/* ===== SCHEDULE VISIT FIELDS ===== */
#scheduleFields {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin: 0;
}
#scheduleFields.open { max-height: 800px; opacity: 1; margin: 4px 0 20px; }
}

/* ===== IMAGE LIGHTBOX ===== */
.product-img img,
.pdp-main-img img { cursor: zoom-in; }

.pdp-thumb { cursor: pointer; }
.pdp-thumb.active { cursor: zoom-in; }

.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  touch-action: none;
  cursor: zoom-out;
}
.lb-overlay.lb-open {
  opacity: 1;
  visibility: visible;
}
.lb-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}
.lb-wrap:active { cursor: grabbing; }
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  transform-origin: center center;
}
.lb-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.13);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 9001;
  line-height: 1;
}
.lb-close:hover {
  background: rgba(255,255,255,0.26);
  transform: scale(1.08);
}
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.13);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 9001;
  line-height: 1;
  user-select: none;
}
.lb-arrow:hover {
  background: rgba(255,255,255,0.26);
  transform: translateY(-50%) scale(1.08);
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-arrow.lb-hidden { opacity: 0; pointer-events: none; }
.lb-counter {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  z-index: 9001;
  pointer-events: none;
}
.lb-hint {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 9001;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .lb-overlay { transition: none; }
  .lb-img    { transition: none !important; }
}
@media (max-width: 480px) {
  .lb-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .lb-prev  { left: 8px; }
  .lb-next  { right: 8px; }
}

/* ── Newsletter Toast ── */
.nl-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  max-width: 520px;
  width: calc(100% - 48px);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.nl-toast.nl-toast-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}
.nl-toast-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.nl-toast-text {
  flex: 1;
  font-size: 0.84rem; line-height: 1.56;
  color: #2A2A28; margin: 0;
}
.nl-toast-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted);
  font-size: 0.82rem; padding: 2px 4px; line-height: 1;
  flex-shrink: 0; opacity: 0.55;
  transition: opacity 0.15s;
  align-self: flex-start; margin-top: 1px;
}
.nl-toast-close:hover { opacity: 1; }
