/* =============================================================
   HOMELY ROOTS — Premium Design System
   A cozy, editorial home-lifestyle aesthetic.
   ============================================================= */

/* -----------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------- */
:root {
  /* Colors */
  --ivory:        #FAF7F0;
  --cream:        #FFFDF8;
  --white:        #FFFFFF;
  --brown:        #2F241D;
  --brown-mid:    #4A3728;
  --brown-soft:   #6F6258;
  --sage:         #7A9A78;
  --sage-light:   #A8C4A6;
  --sage-bg:      #EEF4ED;
  --terracotta:   #C96F4A;
  --terracotta-dk:#A85A39;
  --beige:        #E7DCCB;
  --beige-light:  #F2EBE0;
  --gold:         #C7A86B;
  --footer-bg:    #2A201A;
  --footer-text:  #C8BFB5;
  --footer-dim:   #7A6B5F;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  1.5rem;
  --gap-lg:  2.5rem;
  --gap-xl:  4rem;
  --gap-2xl: 6rem;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(47,36,29,0.06);
  --shadow-sm:  0 2px 8px rgba(47,36,29,0.08);
  --shadow-md:  0 4px 20px rgba(47,36,29,0.10);
  --shadow-lg:  0 8px 40px rgba(47,36,29,0.12);

  /* Header */
  --header-h: 68px;

  /* Transitions */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t-fast: 150ms var(--ease);
  --t-base: 250ms var(--ease);
  --t-slow: 400ms var(--ease);
}

/* -----------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: var(--brown);
}

/* -----------------------------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------------------------- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
h4, h5     { font-family: var(--font-sans);  font-weight: 600; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.lead { font-size: 1.1rem; color: var(--brown-soft); line-height: 1.7; }

/* -----------------------------------------------------------
   4. LAYOUT UTILITIES
   ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1440px; }

.section { padding-block: var(--gap-2xl); }
.section--sm { padding-block: var(--gap-xl); }
.section--lg { padding-block: 8rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-lg); }

.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--gap-sm); }
.gap-md { gap: var(--gap-md); }

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* -----------------------------------------------------------
   5. ANNOUNCEMENT BAR
   ----------------------------------------------------------- */
.announcement-bar {
  background-color: var(--sage);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 500;
}

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
}

/* -----------------------------------------------------------
   6. HEADER
   ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
  height: var(--header-h);
  transition: box-shadow var(--t-base);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.site-header .container {
  height: 100%;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: var(--gap-md);
  position: relative;
}

/* Logo */
.logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
  white-space: nowrap;
  justify-self: start;
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--brown-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--brown);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background-color: var(--terracotta);
  transition: width var(--t-fast);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Actions (right side) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-self: end;
}

.action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  color: var(--brown);
  transition: background-color var(--t-fast);
}
.action-btn:hover { background-color: var(--beige-light); }
.action-btn svg   { width: 20px; height: 20px; stroke-width: 1.5; }

.cart-count-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile toggle — hidden on desktop */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}
.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--brown);
  border-radius: 2px;
  transition: var(--t-base);
}

/* Header collapse logic at 1150px */
@media (max-width: 860px) {
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-header .nav-menu {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }

  .site-header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.35rem; /* Compact logo */
  }

  .site-header .nav-actions .nav-search-btn,
  .site-header .nav-actions .nav-account-btn {
    display: none;
  }
}

/* -----------------------------------------------------------
   7. DRAWERS (Shared Base)
   ----------------------------------------------------------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47,36,29,0.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.drawer-overlay.active { opacity: 1; pointer-events: all; }

/* Mobile Nav Drawer (Full-Screen Warm Ivory) */
.mobile-nav-drawer {
  position: fixed;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ivory);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transition: left var(--t-slow);
  overflow-y: auto;
}
.mobile-nav-drawer.active { left: 0; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--beige);
}

.mobile-nav-body {
  padding: 2.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--beige);
  padding-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-nav-link:hover { color: var(--terracotta); padding-left: 0.5rem; }

/* Styling for non-collection links in the mobile drawer (like Home, Shop, About, Contact) */
.mobile-nav-drawer .mobile-nav-group:first-child .mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.mobile-nav-footer {
  padding: 2rem;
  border-top: 1px solid var(--beige);
  font-size: 0.82rem;
  color: var(--brown-soft);
  text-align: center;
}

.drawer-close {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  border: 1px solid var(--beige);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-fast);
}
.drawer-close:hover { background-color: var(--beige-light); }
.drawer-close svg { width: 16px; height: 16px; stroke: var(--brown); }

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: -480px;
  width: 440px;
  max-width: 100vw;
  height: 100%;
  background: var(--cream);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transition: right var(--t-slow);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.active { right: 0; }

.cart-drawer-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--beige);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

/* Cart empty state */
.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--gap-sm);
  padding: 3rem 2rem;
}

.cart-empty-icon { font-size: 2.5rem; margin-bottom: var(--gap-sm); }

.cart-empty h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cart-empty p {
  font-size: 0.88rem;
  color: var(--brown-soft);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: var(--gap-md);
}

/* Cart items */
.cart-items-list { display: flex; flex-direction: column; gap: var(--gap-sm); }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: var(--gap-sm);
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 0.875rem;
  align-items: start;
  transition: box-shadow var(--t-fast);
}
.cart-item:hover { box-shadow: var(--shadow-xs); }

.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--beige-light);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { display: flex; flex-direction: column; gap: 0.3rem; }

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
}

.cart-item-meta { font-size: 0.76rem; color: var(--brown-soft); }

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--beige);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-top: 0.4rem;
  background: var(--ivory);
}

.qty-btn {
  width: 28px; height: 28px;
  border: none;
  background: none;
  font-size: 1rem;
  color: var(--brown-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast);
}
.qty-btn:hover { color: var(--brown); }

.qty-val {
  font-size: 0.82rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  color: var(--brown);
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
}

.cart-item-remove {
  font-size: 0.72rem;
  color: var(--brown-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 0.4rem;
  transition: color var(--t-fast);
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.cart-item-remove:hover { color: var(--terracotta); }

/* Cart footer */
.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--beige);
  background: var(--cream);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--gap-md);
}
.cart-subtotal span:first-child {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.cart-subtotal span:last-child {
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-trust {
  font-size: 0.72rem;
  color: var(--brown-soft);
  text-align: center;
  margin-top: var(--gap-sm);
}

/* -----------------------------------------------------------
   8. BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dk);
  border-color: var(--terracotta-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,111,74,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-secondary:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--brown-soft);
  border-color: var(--beige);
}
.btn-ghost:hover {
  background: var(--beige-light);
  color: var(--brown);
  border-color: var(--beige);
}

.btn-sage {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn-sage:hover { background: #658463; border-color: #658463; }

.btn-wide { width: 100%; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.85rem; }

/* -----------------------------------------------------------
   9. HERO VIDEO SECTION
   ----------------------------------------------------------- */
.hero-video-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-block: var(--gap-2xl);
  background-color: #2F241D;
  background-image: url('images/hero_lifestyle.png');
  background-size: cover;
  background-position: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--beige-light);
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  /* soft warm gradient overlay for readability: soft ivory at left fading to transparent brown at right */
  background: linear-gradient(90deg, rgba(250, 247, 240, 0.35) 0%, rgba(250, 247, 240, 0.1) 60%, rgba(47, 36, 29, 0.05) 100%);
  z-index: 2;
}

.hero-video-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-video-content {
  max-width: 410px;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(255, 253, 248, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(231, 220, 203, 0.35);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(47, 36, 29, 0.03);
}

.hero-video-eyebrow {
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hero-video-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brown);
}

.hero-video-subtitle {
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.6;
}

.hero-video-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 0.25rem;
  width: 100%;
}

.hero-video-actions .btn {
  padding: 0.625rem 1rem;
  font-size: 0.8rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.hero-video-actions .btn-primary {
  background: var(--terracotta);
  color: #fff;
  border: 1.5px solid var(--terracotta);
}
.hero-video-actions .btn-primary:hover {
  background: var(--terracotta-dk);
  border-color: var(--terracotta-dk);
}

.hero-video-actions .btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid rgba(47, 36, 29, 0.7);
}
.hero-video-actions .btn-secondary:hover {
  background: rgba(47, 36, 29, 0.05);
  color: var(--brown);
}

.hero-video-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--brown);
  margin-top: 0.25rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Visibility Helpers */
.desktop-only { display: block; }
.mobile-only  { display: none; }

/* Responsive adjustments inside media queries */

/* -----------------------------------------------------------
   10. CATEGORY GRID
   ----------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.category-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--beige-light);
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.category-card:hover .category-card-img { transform: scale(1.06); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47,36,29,0.72) 0%, rgba(47,36,29,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--t-slow);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(47,36,29,0.82) 0%, rgba(47,36,29,0.2) 60%, transparent 100%);
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
}

.category-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--t-base);
}
.category-card:hover .category-card-desc { transform: translateY(0); opacity: 1; }

.category-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* -----------------------------------------------------------
   11. SECTION HEADERS
   ----------------------------------------------------------- */
.section-header {
  margin-bottom: var(--gap-xl);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-header--centered { align-items: center; text-align: center; }

.section-header p { max-width: 560px; color: var(--brown-soft); line-height: 1.7; }

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--gap-lg);
}

/* -----------------------------------------------------------
   12. PRODUCT CARDS
   ----------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--beige-light);
  flex-shrink: 0;
}

.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img { transform: scale(1.06); }

.product-card-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-pill);
}

.product-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-quickview {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: auto;
  min-width: 130px;
  padding: 0.65rem 1.25rem;
  border-radius: var(--r-pill);
  background: var(--terracotta);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(47, 36, 29, 0.15);
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, background-color var(--t-fast);
  white-space: nowrap;
}

.product-card-quickview:hover {
  background: var(--terracotta-dk);
  color: #fff;
}

.product-card:hover .product-card-quickview {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.product-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(47, 36, 29, 0.04);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  z-index: 5;
}
.product-card:hover .product-card-img-wrap::after {
  opacity: 1;
}

.product-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.3;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--brown-soft);
  margin-top: 0.15rem;
}

.product-card-rating .stars {
  color: var(--gold);
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.price-current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
}

.price-compare {
  font-size: 0.85rem;
  color: var(--brown-soft);
  text-decoration: line-through;
}

/* -----------------------------------------------------------
   13. BRAND STORY SPLIT
   ----------------------------------------------------------- */
.brand-story-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 24px;
  overflow: hidden;
  padding: 3.5rem;
  box-shadow: 0 8px 30px rgba(47,36,29,0.02);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.brand-story-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
  box-shadow: 0 4px 20px rgba(47,36,29,0.03);
}

.brand-story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.brand-story-image-wrap:hover img {
  transform: scale(1.04);
}

.brand-story-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--beige);
  padding: 0.5rem 0.875rem;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-story-info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.brand-story-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--brown);
  letter-spacing: -0.01em;
}

.brand-story-body {
  font-size: 1.025rem;
  color: var(--brown-soft);
  line-height: 1.75;
}

.brand-story-values-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.brand-value-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-value-pill .pill-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(122, 154, 120, 0.15); /* light sage background */
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.brand-value-pill .pill-text {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--brown);
}

.brand-story-cta-row {
  margin-top: 0.5rem;
}

.brand-value-item svg {
  width: 16px; height: 16px;
  stroke: var(--sage);
  flex-shrink: 0;
}

/* -----------------------------------------------------------
   14. TRUST / VALUE CARDS
   ----------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.trust-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.trust-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon--sage     { background: var(--sage-bg); }
.trust-icon--terracotta { background: #FBF0EC; }
.trust-icon--gold     { background: #FBF5E8; }

.trust-icon svg {
  width: 22px; height: 22px;
  stroke-width: 1.75;
}
.trust-icon--sage svg     { stroke: var(--sage); }
.trust-icon--terracotta svg { stroke: var(--terracotta); }
.trust-icon--gold svg     { stroke: var(--gold); }

.trust-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
}

.trust-card-body {
  font-size: 0.875rem;
  color: var(--brown-soft);
  line-height: 1.6;
}

/* -----------------------------------------------------------
   15. REVIEWS
   ----------------------------------------------------------- */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.reviews-stat {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
}
.reviews-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown);
}
.reviews-stat-label { font-size: 0.8rem; color: var(--brown-soft); margin-top: 0.25rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--t-base);
}
.review-card:hover { box-shadow: var(--shadow-sm); }

.review-stars { display: flex; gap: 0.2rem; color: var(--gold); font-size: 0.9rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--beige);
  padding-top: 1rem;
}

.review-name { font-size: 0.85rem; font-weight: 600; color: var(--brown); }

.review-verified {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* -----------------------------------------------------------
   16. GUARANTEE BANNER
   ----------------------------------------------------------- */
.guarantee-banner {
  background: var(--sage-bg);
  border: 1px solid rgba(122,154,120,0.25);
  border-radius: var(--r-lg);
  padding: var(--gap-xl) var(--gap-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
}

.guarantee-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-pill);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.5rem;
}
.guarantee-icon svg { width: 28px; height: 28px; stroke: var(--sage); }

.guarantee-banner h2 { max-width: 560px; }

.guarantee-banner p {
  color: var(--brown-soft);
  max-width: 480px;
  line-height: 1.7;
}

.guarantee-meta {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 600;
}

/* -----------------------------------------------------------
   17. FOOTER
   ----------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-block: 4rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: var(--gap-xl);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--footer-text);
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--footer-text);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--ivory); }

.footer-email {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 1.5rem;
  display: block;
}
.footer-email:hover { color: var(--gold); }

/* Newsletter */
.footer-newsletter-form { display: flex; gap: 0; margin-bottom: 0.75rem; }

.footer-newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  background: rgba(255,255,255,0.06);
  color: var(--ivory);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.footer-newsletter-input::placeholder { color: var(--footer-dim); }
.footer-newsletter-input:focus { border-color: rgba(255,255,255,0.3); }

.footer-newsletter-btn {
  padding: 0.75rem 1rem;
  background: var(--terracotta);
  color: #fff;
  border: 1px solid var(--terracotta);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--t-fast);
  white-space: nowrap;
}
.footer-newsletter-btn:hover { background: var(--terracotta-dk); }

.footer-newsletter-note {
  font-size: 0.73rem;
  color: var(--footer-dim);
}

.newsletter-success { display: none; font-size: 0.8rem; color: var(--sage-light); margin-top: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding-top: var(--gap-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}

.footer-bottom p { font-size: 0.8rem; color: var(--footer-dim); }

.footer-bottom-links {
  display: flex;
  gap: var(--gap-md);
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--footer-dim);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: var(--footer-text); }

/* -----------------------------------------------------------
   18. SHOP PAGE
   ----------------------------------------------------------- */
.shop-hero {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--beige);
  text-align: left;
}

.shop-hero-all {
  background-color: #FAF6F0;
  background-image: radial-gradient(circle at 80% 20%, #FFFDF8 0%, transparent 60%),
                    radial-gradient(circle at 10% 80%, #FAF0E0 0%, transparent 60%),
                    linear-gradient(135deg, rgba(201,111,74,0.02) 0%, transparent 100%);
}

.shop-hero-kitchen {
  background-color: #FAF7F0;
  background-image: radial-gradient(circle at 80% 20%, #EFEBE0 0%, transparent 60%),
                    radial-gradient(circle at 10% 80%, #FFFDF8 0%, transparent 60%),
                    linear-gradient(135deg, rgba(122,154,120,0.02) 0%, transparent 100%);
}

.shop-hero-decor {
  background-color: #FFFDF8;
  background-image: radial-gradient(circle at 80% 20%, #FAF2E3 0%, transparent 60%),
                    radial-gradient(circle at 10% 80%, #FAF7F0 0%, transparent 60%);
}

.shop-hero-lighting {
  background-color: var(--brown);
  background-image: radial-gradient(circle at 80% 20%, #3e3027 0%, transparent 60%),
                    radial-gradient(circle at 10% 80%, #1c1511 0%, transparent 60%);
}

.shop-hero-cleaning {
  background-color: #F4F6F4;
  background-image: radial-gradient(circle at 80% 20%, #E5ECE6 0%, transparent 60%),
                    radial-gradient(circle at 10% 80%, #FAF7F0 0%, transparent 60%);
}

.shop-hero-lighting .shop-breadcrumb a,
.shop-hero-lighting .shop-breadcrumb span,
.shop-hero-lighting h1,
.shop-hero-lighting p { color: var(--ivory); }
.shop-hero-lighting .shop-breadcrumb span { color: rgba(255,255,255,0.5); }

.shop-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--brown);
  margin-top: 0.5rem;
  line-height: 1.15;
}

.shop-hero p {
  color: var(--brown-soft);
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
}

.shop-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center; /* center breadcrumbs */
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brown-soft);
  margin-bottom: 0.5rem;
}
.shop-breadcrumb a:hover { color: var(--terracotta); }
.shop-breadcrumb span { color: var(--beige); }

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--gap-xl);
  padding-top: var(--gap-xl);
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(47, 36, 29, 0.02);
}

.sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--beige);
  padding-bottom: 0.5rem;
}

.sidebar-cats { display: flex; flex-direction: column; gap: 0.5rem; }

.sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--brown-soft);
  transition: all var(--t-fast);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid transparent;
}
.sidebar-cat:hover { background: var(--ivory); color: var(--brown); border-color: var(--beige); }
.sidebar-cat.active { background: var(--ivory); color: var(--terracotta); font-weight: 600; border-color: var(--beige); }

.sidebar-cat-count {
  font-size: 0.75rem;
  color: var(--brown-soft);
  background: var(--cream);
  border: 1px solid var(--beige);
  padding: 0.15rem 0.6rem;
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
}
.sidebar-cat.active .sidebar-cat-count { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

/* Shop grid controls */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--gap-lg);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid var(--beige);
}

.shop-count { font-size: 0.875rem; color: var(--brown-soft); }

.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--brown-soft);
}

.sort-select {
  border: 1px solid var(--beige);
  border-radius: 40px; /* match pills design */
  padding: 0.5rem 1.25rem;
  background: var(--cream);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%232F241D' stroke-width='1.5'%3E%3Cpath d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.25rem;
  transition: all var(--t-fast);
}
.sort-select:hover {
  border-color: var(--brown-soft);
  background-color: var(--ivory);
}

/* Mobile filter btn */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--beige);
  border-radius: 40px; /* match pills design */
  background: var(--cream);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
}
.mobile-filter-btn:hover {
  border-color: var(--brown-soft);
  background-color: var(--ivory);
}
.mobile-filter-btn svg { width: 16px; height: 16px; }

/* Mobile filter drawer */
.filter-drawer {
  position: fixed;
  bottom: -100%;
  left: 0; right: 0;
  background: var(--cream);
  z-index: 400;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 1.5rem;
  transition: bottom var(--t-slow);
  max-height: 80vh;
  overflow-y: auto;
}
.filter-drawer.active { bottom: 0; }

.filter-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--beige);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

/* -----------------------------------------------------------
   19. PRODUCT DETAIL PAGE
   ----------------------------------------------------------- */
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-xl);
  align-items: start;
  padding-top: var(--gap-xl);
}

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--header-h) + 1.5rem); }

.product-main-img {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--beige-light);
  margin-bottom: 0.75rem;
  border: 1px solid var(--beige);
}
.product-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-main-img:hover img { transform: scale(1.03); }

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.product-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--beige-light);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t-fast);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--terracotta); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Purchase panel */
.product-purchase {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.product-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: -0.5rem;
}

.product-category-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.product-title-main {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--brown-soft);
}
.product-rating-stars { color: var(--gold); }

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.product-price-now { font-size: 1.6rem; font-weight: 700; color: var(--brown); }
.product-price-was { font-size: 1rem; color: var(--brown-soft); text-decoration: line-through; }

.product-benefit-intro {
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.65;
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid var(--beige);
}

.product-bullets { display: flex; flex-direction: column; gap: 0.5rem; }

.product-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--brown-soft);
  line-height: 1.5;
}
.product-bullet svg {
  width: 16px; height: 16px;
  stroke: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Variant options */
.option-group { display: flex; flex-direction: column; gap: 0.5rem; }

.option-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-soft);
  display: flex;
  justify-content: space-between;
}
.option-selected { font-weight: 700; color: var(--brown); text-transform: none; letter-spacing: 0; }

.color-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.color-swatch {
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  border: 2px solid var(--beige);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
  position: relative;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border-color: var(--terracotta); }
.color-swatch.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--terracotta);
  border-radius: var(--r-pill);
  opacity: 0.4;
}

.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.size-pill {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--beige);
  border-radius: 40px; /* clean pills */
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  transition: all var(--t-fast);
  background: var(--cream);
  white-space: nowrap;
}
.size-pill:hover { border-color: var(--brown); background: var(--ivory); }
.size-pill.active { border-color: var(--brown); color: #fff; background: var(--brown); }

/* Quantity */
.qty-row { display: flex; align-items: center; gap: var(--gap-sm); }

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--beige);
  border-radius: 40px; /* match the rounded look */
  overflow: hidden;
  background: var(--cream);
  height: 48px;
}
.qty-control .qty-btn {
  width: 44px; height: 100%;
  font-size: 1.1rem;
  color: var(--brown);
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.qty-control .qty-btn:hover { background: var(--ivory); }
.qty-display {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

.product-trust-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--brown-soft);
  margin-top: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--beige);
  padding-top: 1.25rem;
  width: 100%;
}

/* -----------------------------------------------------------
   20. PRODUCT BELOW-FOLD SECTIONS
   ----------------------------------------------------------- */
/* Feature highlights */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.feature-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.feature-card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.85rem; color: var(--brown-soft); line-height: 1.6; }

/* Lifestyle section */
.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.lifestyle-img {
  border-radius: var(--r-xl) var(--r-xl) var(--r-md) var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }

.lifestyle-content { display: flex; flex-direction: column; gap: var(--gap-md); }

/* Comparison table */
.comparison-table-wrap {
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-xs);
}

.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--beige-light);
  border-bottom: 1px solid var(--beige);
  color: var(--brown);
}
.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--beige);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--brown); }
.comparison-table td.homely { color: var(--sage); font-weight: 600; }
.comparison-table td.generic { color: var(--brown-soft); }

/* FAQ Accordion */
.accordion {
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  overflow: hidden;
}

.accordion-item { border-bottom: 1px solid var(--beige); }
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--cream);
  transition: background var(--t-fast);
}
.accordion-header:hover { background: var(--beige-light); }

.accordion-header h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}

.accordion-icon {
  width: 20px; height: 20px;
  border: 1.5px solid var(--beige);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-fast);
}
.accordion-icon::before { content: '+'; font-size: 0.9rem; color: var(--brown-soft); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--beige-light); }

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--cream);
}
.accordion-item.open .accordion-content { display: block; }
.accordion-content p { font-size: 0.875rem; color: var(--brown-soft); line-height: 1.7; }

/* FBT (Frequently Bought Together) */
.fbt-panel {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 2rem;
}

.fbt-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.fbt-item { text-align: center; width: 120px; }

.fbt-item-img {
  width: 90px; height: 90px;
  border-radius: var(--r-sm);
  border: 1px solid var(--beige);
  object-fit: cover;
  margin: 0 auto 0.5rem;
  display: block;
}

.fbt-item-name { font-size: 0.78rem; font-weight: 600; color: var(--brown); line-height: 1.3; margin-bottom: 0.2rem; }
.fbt-item-price { font-size: 0.78rem; color: var(--brown-soft); }

.fbt-plus { font-size: 1.25rem; color: var(--beige); font-weight: 300; }

.fbt-checks {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fbt-check-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--brown);
  cursor: pointer;
}
.fbt-check-label input { accent-color: var(--terracotta); }

.fbt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}

.fbt-total-label { font-size: 0.78rem; color: var(--brown-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.fbt-total-price { font-size: 1.35rem; font-weight: 700; color: var(--brown); }

/* -----------------------------------------------------------
   21. CART PAGE
   ----------------------------------------------------------- */
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--gap-xl);
  align-items: start;
}

.cart-page-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--gap-lg);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid var(--beige);
}
.cart-page-header h1 { font-size: 2rem; }
.cart-item-count { font-size: 0.82rem; color: var(--brown-soft); }

.cart-table-head {
  display: grid;
  grid-template-columns: 1fr 120px 80px;
  gap: var(--gap-sm);
  padding: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  border-bottom: 1px solid var(--beige);
  margin-bottom: var(--gap-sm);
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr 120px 80px;
  gap: var(--gap-sm);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--beige-light);
  align-items: center;
}

.cart-row-product { display: flex; gap: var(--gap-sm); align-items: start; }

.cart-row-img {
  width: 80px; height: 80px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--beige-light);
  flex-shrink: 0;
  border: 1px solid var(--beige);
}
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-row-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.cart-row-meta { font-size: 0.78rem; color: var(--brown-soft); margin-bottom: 0.5rem; }
.cart-row-remove {
  font-size: 0.75rem;
  color: var(--brown-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.cart-row-remove:hover { color: var(--terracotta); }

.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--beige);
  border-radius: var(--r-pill);
  overflow: hidden;
  width: fit-content;
  background: var(--cream);
}
.cart-row-qty .qty-btn { width: 30px; height: 30px; }
.cart-row-qty .qty-val { min-width: 24px; font-size: 0.85rem; }

.cart-row-total { font-weight: 700; text-align: right; }

/* Guarantee grid on cart page */
.cart-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  text-align: center;
}

@media (max-width: 768px) {
  .cart-guarantee-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }
}

/* Order summary */
.order-summary {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.order-summary h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--beige);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--brown-soft);
  margin-bottom: 0.75rem;
}

.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  border-top: 1px solid var(--beige);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.checkout-note { font-size: 0.75rem; color: var(--brown-soft); text-align: center; margin-top: 1rem; line-height: 1.5; }

/* -----------------------------------------------------------
   22. ABOUT PAGE
   ----------------------------------------------------------- */
.about-hero {
  padding-block: var(--gap-2xl);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--beige-light) 100%);
  border-bottom: 1px solid var(--beige);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.promise-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.promise-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.promise-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.promise-card h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: 0.5rem; }
.promise-card p  { font-size: 0.85rem; color: var(--brown-soft); line-height: 1.6; }

.mission-banner {
  background: var(--brown);
  border-radius: var(--r-lg);
  padding: var(--gap-2xl) var(--gap-xl);
  text-align: center;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
}
.mission-banner h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--ivory); font-style: italic; }
.mission-banner p  { color: var(--beige-light); max-width: 520px; line-height: 1.7; }

/* -----------------------------------------------------------
   23. CONTACT PAGE
   ----------------------------------------------------------- */
.contact-hero {
  padding-block: var(--gap-xl);
  border-bottom: 1px solid var(--beige);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap-xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-sm); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--gap-md);
}

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}

.form-input, .form-textarea, .form-select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  transition: border-color var(--t-fast);
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--brown-soft); }
.form-textarea { resize: vertical; min-height: 140px; }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--brown-soft); opacity: 0.6; }

.contact-success {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}
.contact-success.show { display: block; }

.support-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.support-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--t-base);
}
.support-card:hover { box-shadow: var(--shadow-sm); }
.support-icon { font-size: 1.75rem; margin-bottom: 0.875rem; display: block; }
.support-line-icon {
  width: 36px;
  height: 36px;
  stroke: var(--sage);
  margin-inline: auto;
  margin-bottom: 0.875rem;
  display: block;
}
.support-card h3 { font-size: 0.95rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: 0.4rem; }
.support-card p  { font-size: 0.82rem; color: var(--brown-soft); line-height: 1.55; }

/* -----------------------------------------------------------
   24. QUICK VIEW MODAL
   ----------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47,36,29,0.55);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.quickview-modal {
  background: var(--cream);
  border-radius: var(--r-md);
  width: 90vw;
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.quickview-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 10;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--beige-light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.quickview-close:hover { background: var(--beige); }
.quickview-close svg { width: 14px; height: 14px; stroke: var(--brown); }

.quickview-img-wrap {
  background: var(--beige-light);
  border-radius: var(--r-md) 0 0 var(--r-md);
  overflow: hidden;
}
.quickview-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.quickview-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.quickview-details h2 { font-size: 1.5rem; }
.quickview-price { font-size: 1.35rem; font-weight: 700; }

.product-option-group { display: flex; flex-direction: column; gap: 0.5rem; }
.product-option-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-soft);
}
.color-picker-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.color-option {
  width: 28px; height: 28px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t-fast);
}
.color-option.active { border-color: var(--terracotta); }

.size-picker-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-option {
  padding: 0.4rem 0.875rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.size-option.active { border-color: var(--terracotta); color: var(--terracotta); }

.product-actions-wrapper { display: flex; gap: var(--gap-sm); margin-top: auto; }

/* -----------------------------------------------------------
   25. TOAST NOTIFICATIONS
   ----------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--brown);
  color: var(--ivory);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  box-shadow: var(--shadow-md);
  min-width: 280px;
  max-width: 380px;
  transform: translateX(120%);
  opacity: 0;
  transition: all var(--t-base);
}
.toast.show { transform: translateX(0); opacity: 1; }

.toast-message { font-size: 0.875rem; flex: 1; line-height: 1.4; }

.toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
  flex-shrink: 0;
}
.toast-close:hover { color: #fff; }

/* -----------------------------------------------------------
   26. SCROLL ANIMATION
   ----------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* -----------------------------------------------------------
   27. RESPONSIVE BREAKPOINTS
   ----------------------------------------------------------- */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }

  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-stats { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }

  .shop-layout { grid-template-columns: 200px 1fr; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); }

  .product-layout { grid-template-columns: 1fr 1fr; }

  .cart-page-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }

  .contact-layout { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }

  .quickview-modal { grid-template-columns: 1fr; max-width: 480px; }
  .quickview-img-wrap { border-radius: var(--r-md) var(--r-md) 0 0; aspect-ratio: 4/3; }

  .brand-story-card { padding: 2rem; }
  .brand-story-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .brand-story-image-wrap { aspect-ratio: 1.5 / 1; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .announcement-bar { font-size: 0.72rem; padding: 0.5rem 0.75rem; }

  .hero-video-section {
    min-height: 80vh;
    align-items: flex-end;
    padding-bottom: 3rem;
    padding-top: 5rem;
  }
  
  .hero-video-overlay {
    background: linear-gradient(180deg, rgba(250, 247, 240, 0.3) 0%, rgba(250, 247, 240, 0.6) 100%);
  }

  .hero-video-content {
    max-width: calc(100% - 2rem);
    margin-inline: 1rem;
    padding: 1.5rem;
    align-items: center;
    text-align: center;
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(10px);
  }

  .hero-video-actions {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-video-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-video-trust {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }



  .section { padding-block: var(--gap-xl); }
  .section--lg { padding-block: var(--gap-xl); }



  .category-grid { grid-template-columns: 1fr; gap: var(--gap-md); }
  .category-card { aspect-ratio: 16/10; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-sm); }

  .trust-grid { grid-template-columns: 1fr; }

  .reviews-stats { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .shop-sidebar { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-sm); }
  .mobile-filter-btn { display: flex; }

  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-thumbs { grid-template-columns: repeat(4, 1fr); }

  .features-grid { grid-template-columns: 1fr; }
  .lifestyle-split { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 0.75rem 1rem; font-size: 0.8rem; }

  .cart-page-layout { grid-template-columns: 1fr; }
  .cart-table-head { display: none; }
  .cart-row { grid-template-columns: 1fr auto; }
  .cart-row-total { grid-column: 2; }

  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .support-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .fbt-items { gap: var(--gap-sm); }
  .fbt-item { width: 90px; }
  .fbt-item-img { width: 72px; height: 72px; }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .shop-products-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .brand-story-card { padding: 1.25rem; }
  .brand-story-image-wrap { aspect-ratio: 1.2 / 1; }
}

/* ── Mobile: Quick View hover-only → show static link ────────────── */
@media (hover: none), (max-width: 768px) {
  /* Hide the hover-only pill on touch devices */
  .product-card-quickview {
    display: none;
  }
  /* Show an always-visible "View Product" link below the price */
  .product-card-mobile-cta {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.03em;
    text-decoration: none;
  }
  .product-card-mobile-cta:hover {
    text-decoration: underline;
  }
}

/* Desktop: hide the mobile CTA, rely on hover Quick View pill */
@media (hover: hover) and (min-width: 769px) {
  .product-card-mobile-cta {
    display: none;
  }
}
