/* ===================================================================
   Oh My Socks — Global Stylesheet
   Colors, fonts, and tokens sourced from Shopify audit 2026-02-27
   =================================================================== */

/* ── Google Fonts imported in <head> via PHP header ── */

/* ══════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (Design Tokens)
══════════════════════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --color-accent:       #00FFEC;
  --color-teal:         #4FECE1;
  --color-header-bg:    #F0F0F0;
  --color-page-bg:      #F0F0F0;
  --color-footer-bg:    #4FECE1;
  --color-text:         #2D2D2D;
  --color-text-sub:     #555555;
  --color-white:        #FFFFFF;

  /* Buttons */
  --color-btn-primary:  #00FFEC;
  --color-btn-secondary:#FFA07A;
  --color-btn-text:     #2D2D2D;

  /* Badges */
  --color-sold-out:     #F83A3A;
  --color-badge-purple: #803CEE;
  --color-star:         #FFB74A;
  --color-on-sale-bg:   #2D2D2D;

  /* State */
  --color-border:       rgba(45, 45, 45, 0.12);
  --color-success:      #00A341;
  --color-error:        #F83A3A;

  /* Section accents */
  --color-yellow-band:  #F5C800;
  --color-yellow-feat:  #FFDD57;
  --color-coral:        #FF8F72;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Questrial', sans-serif;

  /* Font sizes */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.25rem;   /* 20px */
  --text-h6:   1.25rem;
  --text-h5:   1.5rem;
  --text-h4:   2rem;
  --text-h3:   2.25rem;
  --text-h2:   3rem;
  --text-h1:   3.75rem;

  /* Layout */
  --header-height:        125px;
  --announcement-height:  48px;
  --container-max:        1600px;
  --container-narrow:     1350px;
  --container-gutter:     3rem;
  --grid-gap:             1.5rem;
  --section-gap:          6rem;

  /* Shape */
  --radius-btn:    3.75rem;
  --radius-card:   0.75rem;
  --radius-sm:     0.375rem;
  --radius-input:  0.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.10);
  --shadow:    0 5px 15px rgba(45, 45, 45, 0.10);
  --shadow-md: 0 5px 30px rgba(45, 45, 45, 0.12);
  --shadow-lg: 0 18px 50px rgba(45, 45, 45, 0.12);

  /* Transitions */
  --transition: 0.25s 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-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* ══════════════════════════════════════════════════════════
   3. UTILITIES / CONTAINERS
══════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }

/* ══════════════════════════════════════════════════════════
   4. ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--color-teal);
  color: #000;
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 200;
}

.announcement-bar__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.announcement-bar__item { padding-inline: 0.5rem; }
.announcement-bar__separator { opacity: 0.5; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   5. HEADER & NAVIGATION
══════════════════════════════════════════════════════════ */
.site-header {
  background: transparent;
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

/* Transparent navbar — white text/icons only on pages with a hero */
.site-header--transparent:not(.scrolled) .nav-link,
.site-header--transparent:not(.scrolled) .header-icon-btn {
  color: var(--color-white);
}
.site-header--transparent:not(.scrolled) .mobile-menu-toggle span {
  background: var(--color-white);
}
.site-header--transparent:not(.scrolled) .header-logo img {
  filter: brightness(0) invert(1);
}

.header-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.header-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.header-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(45,45,45,0.07); }
.nav-chevron { font-size: 0.65em; transition: transform var(--transition); }
.nav-item.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.dropdown-link:hover { background: var(--color-page-bg); }

/* Header Icons */
.header-icons { display: flex; align-items: center; gap: 0.25rem; }

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--color-text);
  transition: background var(--transition);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.header-icon-btn:hover { background: rgba(45,45,45,0.07); }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  background: var(--color-teal);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition);
}
.mobile-menu-toggle:hover { background: rgba(45,45,45,0.07); }
.mobile-menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-white);
  z-index: 300;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu[hidden] { display: block; transform: translateX(-100%); }
.mobile-menu__close {
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  margin-bottom: 1.5rem; display: block;
}
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: var(--text-base);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu hr { border: none; border-top: 1px solid var(--color-border); margin: 0.5rem 0; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 299;
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu-overlay[hidden] { display: block; opacity: 0; pointer-events: none; }
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

/* ══════════════════════════════════════════════════════════
   6. BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-btn-primary);
  color: var(--color-btn-text);
  border-color: var(--color-btn-primary);
}
.btn-primary:hover { background: #00e6d4; border-color: #00e6d4; }

.btn-secondary {
  background: var(--color-btn-secondary);
  color: var(--color-white);
  border-color: var(--color-btn-secondary);
}
.btn-secondary:hover { background: #e8906a; border-color: #e8906a; }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn-outline:hover { background: var(--color-text); color: var(--color-white); }

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover { background: var(--color-white); color: var(--color-text); }

.btn-sm { padding: 0.55rem 1.25rem; font-size: var(--text-xs); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: var(--text-base); }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════════════════════
   7. PRODUCT CARDS
══════════════════════════════════════════════════════════ */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
}
.product-card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 1rem;
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-heading);
}
.badge-sale { background: var(--color-on-sale-bg); color: var(--color-white); }
.badge-new  { background: var(--color-badge-purple); color: var(--color-white); }

.product-card__body {
  padding: 1rem 1.25rem 1.25rem;
}
.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}
.product-card__price {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.product-card__price .sale-price { font-weight: 700; }
.product-card__price .original-price {
  text-decoration: line-through;
  color: var(--color-text-sub);
  margin-left: 0.4rem;
}

/* ══════════════════════════════════════════════════════════
   8. PRODUCT GRID
══════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .product-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   8b. SHOP PAGE
══════════════════════════════════════════════════════════ */

/* Page wrapper */
.shop-page {
  padding-block: var(--section-gap);
  min-height: 60vh;
}

/* Page title */
.shop-header {
  margin-bottom: 2rem;
}
.shop-title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Collection filter pill row */
.shop-filter-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.collection-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-btn);
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-white);
}
.pill--active {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}

/* Toolbar: count + sort */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.product-count {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sort-label {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  white-space: nowrap;
}
.sort-select {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-input);
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D2D2D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color var(--transition);
}
.sort-select:focus {
  outline: none;
  border-color: var(--color-text);
}

/* 3-column shop grid */
.product-grid--shop {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  row-gap: 3rem;
}
@media (max-width: 900px)  { .product-grid--shop { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .product-grid--shop { grid-template-columns: 1fr; } }

/* Product card hover overlay (Quick add) */
.product-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.product-card:hover .product-card__hover { opacity: 1; }

.product-card__quick-add {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* Sold out badge */
.badge-sold-out {
  background: var(--color-sold-out);
  color: var(--color-white);
}

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 5rem 0;
  color: var(--color-text-sub);
}
.shop-empty p {
  font-size: var(--text-lg);
  margin-bottom: 1.5rem;
}

/* Collection banner (specific collection header) */
.collection-banner {
  position: relative;
  height: 280px;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
}
.collection-banner__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.collection-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.collection-banner__body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.collection-banner__title {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.collection-banner__count {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════════════════════
   9. SECTION DEFAULTS
══════════════════════════════════════════════════════════ */
.section { padding-block: var(--section-gap); }
.section--sm { padding-block: 3rem; }
.section--featured {
  background-color: var(--color-yellow-feat);
  background-image: radial-gradient(#f5f2af 8%, transparent 8%);
  background-size: 30px 30px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
}
.section-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.section-link:hover { color: #555; }

/* ══════════════════════════════════════════════════════════
   10. HERO SLIDESHOW
══════════════════════════════════════════════════════════ */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--announcement-height));
  min-height: 480px;
  overflow: hidden;
  background: #1a1a1a;
  margin-top: calc(-1 * var(--header-height));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
  max-width: 780px;
}
.hero-slide__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, var(--text-h1));
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Slideshow Dots */
.slideshow-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.slideshow-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow-dot.active {
  background: var(--color-white);
  color: var(--color-text);
}

/* Slideshow Arrows */
.slideshow-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.slideshow-arrow:hover { background: rgba(255,255,255,0.35); }
.slideshow-arrow--prev { left: 1.5rem; }
.slideshow-arrow--next { right: 1.5rem; }

/* ══════════════════════════════════════════════════════════
   11. SCROLLING TEXT BAND
══════════════════════════════════════════════════════════ */
.scrolling-text-band {
  background: #ffffff;
  padding: 5.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.scrolling-text-band__track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee-scroll 41s linear infinite;
  will-change: transform;
}
.scrolling-text-band__item {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.2vw, 5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.scrolling-text-band__sep { opacity: 0.4; }

/* ══════════════════════════════════════════════════════════
   12. COLLECTION GRID
══════════════════════════════════════════════════════════ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 768px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .collection-grid { grid-template-columns: 1fr; } }

.collection-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.collection-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.collection-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover .collection-card__img { transform: scale(1.05); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.collection-card__name {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ══════════════════════════════════════════════════════════
   13. LIFESTYLE IMAGE ROW
   Architecture mirrors Shopify image-link-blocks.liquid:
   - Outer <section> = gradient wrapper, position:relative, padding 20px top/bottom
   - ::before / ::after = coral (#ff8f72) tiling wave — exact SVG paths from theme
   - Inner .lifestyle-inner = coral content area (like the section-properties <div>)
   Source: wave_style=medium, wave_height=20, wave_color=#ff8f72
══════════════════════════════════════════════════════════ */

/* Outer wrapper — gradient background, wave pseudo-elements on top/bottom padding */
.section--lifestyle {
  position: relative;
  background: linear-gradient(to bottom, #ffdd57, #f0f0f0);
  padding-top: 20px;
  padding-bottom: 20px;
}

/* TOP wave — verbatim SVG from image-link-blocks.liquid, medium style, h=20, color=#ff8f72 */
.section--lifestyle::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0,0 C15,0 15,20 30,20 C45,20 45,0 60,0 L60,20 L0,20 Z' fill='%23ff8f72'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 60px 20px;
  z-index: 1;
}

/* BOTTOM wave — verbatim SVG from image-link-blocks.liquid, medium style, h=20, color=#ff8f72 */
.section--lifestyle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0,20 C15,20 15,0 30,0 C45,0 45,20 60,20 L60,0 L0,0 Z' fill='%23ff8f72'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 60px 20px;
  z-index: 1;
}

/* Inner content area — coral background, mirrors Shopify's inner section-properties div */
.lifestyle-inner {
  background: #ff8f72;
  padding: 2rem var(--container-gutter);
}

.lifestyle-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 1024px) { .lifestyle-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .lifestyle-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .lifestyle-row { grid-template-columns: 1fr; } }

.lifestyle-img {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.lifestyle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════
   14. BRAND STATEMENT / IMPACT SECTION
══════════════════════════════════════════════════════════ */
.brand-statement {
  background: var(--color-coral);
  padding: 5rem 0;
  text-align: center;
}
.brand-statement .container { max-width: 760px; }
.brand-statement h2 {
  font-size: clamp(2rem, 3.5vw, 5rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(117,117,117,0.64) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-statement p {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   15. TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--color-page-bg);
  padding: var(--section-gap) 0;
  text-align: center;
}
.testimonials .container { max-width: 700px; }
.stars {
  color: var(--color-star);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}
.testimonial-quote {
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}
.testimonial-quote::before { display: none; }
.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}

/* ── Carousel layout ── */
.testimonial-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.testimonial-slides { width: 100%; }
.testimonial-slide  { display: none; }
.testimonial-slide.active { display: block; }

/* Navigation row below slides */
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(45,45,45,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.testimonial-dot.active { background: var(--color-text); }

.testimonial-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.testimonial-arrow:hover {
  background: var(--color-text);
  color: var(--color-white);
}
@media (max-width: 480px) {
  .testimonial-arrow { width: 36px; height: 36px; }
  .testimonial-nav { gap: 1rem; }
}

/* ══════════════════════════════════════════════════════════
   15b. MULTIPLE IMAGES WITH TEXT
══════════════════════════════════════════════════════════ */
.multi-images-section {
  background: var(--color-page-bg);
  padding: var(--section-gap) 0;
}

.multi-images__slider {
  position: relative;
  overflow: hidden;
}

.multi-images__track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.multi-images__slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.multi-images__slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.multi-images__slide-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.multi-images__slide-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.multi-images__slide-body { padding: 2rem 0; }

.multi-images__slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, var(--text-h3));
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.multi-images__slide-text {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.7;
  opacity: 0.85;
}

.multi-images__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.multi-images__arrow {
  background: none;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition);
}
.multi-images__arrow:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

.multi-images__dots {
  display: flex;
  gap: 0.5rem;
}
.multi-images__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(45,45,45,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.multi-images__dot.active { background: var(--color-text); }

@media (max-width: 768px) {
  .multi-images__slide-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-inline: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════
   16. NEWSLETTER SECTION
══════════════════════════════════════════════════════════ */
.newsletter-section {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Wavy borders — verbatim SVG from newsletter.liquid (medium, wave_height=20, wave_color=#4fece1) */
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 20px;
  background-color: #F0F0F0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0,0 C15,0 15,20 30,20 C45,20 45,0 60,0 L60,20 L0,20 Z' fill='%234fece1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 60px 20px;
  z-index: 1;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 20px;
  background-color: #F0F0F0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0,20 C15,20 15,0 30,0 C45,0 45,20 60,20 L60,0 L0,0 Z' fill='%234fece1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 60px 20px;
  z-index: 1;
}
.newsletter-inner {
  background: #4fece1;
  text-align: center;
  padding: 5rem var(--container-gutter);
}
.newsletter-section .container { max-width: 580px; }
.newsletter-section h2 {
  font-size: var(--text-h2);
  color: var(--color-text);
  margin-bottom: 1rem;
}
.newsletter-section p {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: 2rem;
  opacity: 0.85;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin-inline: auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  height: 3.125rem;
  padding-inline: 1.25rem;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(45,45,45,0.15);
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--color-text); }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* ══════════════════════════════════════════════════════════
   17. TRUST BADGES BAR
══════════════════════════════════════════════════════════ */
.trust-badges {
  position: relative;
  padding-bottom: 20px;
  background: #F0F0F0;
}
/* Bottom wave — arch fill only; Z closes (60,20)→(0,20) along y=20 baseline,
   filling the arch UNDER the curve: teal at center (x=30), transparent at sides (x=0,60).
   Result: teal bumps pointing UP into the white trust-badges section. */
.trust-badges::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0,20 C15,20 15,0 30,0 C45,0 45,20 60,20 Z' fill='%234fece1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 60px 20px;
  z-index: 1;
}
.trust-badges-inner {
  background: #F0F0F0;
  padding: 5rem var(--container-gutter);
}
.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: var(--page-width);
  margin-inline: auto;
}
@media (max-width: 768px) { .trust-badges__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-badges__grid { grid-template-columns: 1fr; } }

.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.trust-badge__icon { color: var(--color-text); opacity: 0.8; }
.trust-badge__text { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-badge__text strong { font-family: var(--font-heading); font-size: var(--text-sm); font-weight: 600; }
.trust-badge__text span { font-size: var(--text-xs); color: var(--color-text-sub); }

/* ══════════════════════════════════════════════════════════
   19. FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: var(--color-footer-bg);
  padding: calc(4rem + 20px) 0 2rem;
  color: var(--color-text);
}
/* Top wave — verbatim from footer.liquid ::before, wave_style=medium, wave_height=20, wave_color=#4fece1 */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0,0 C15,0 15,20 30,20 C45,20 45,0 60,0 L60,20 L0,20 Z' fill='%234fece1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 60px 20px;
  z-index: 1;
}

.footer-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-body { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand { display: flex; flex-direction: column; }
.footer-logo-link img { max-width: 170px; height: 170px; object-fit: contain; }

/* Footer aside top — equivalent to footer__aside-top in Shopify theme */
.footer-aside-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45,45,45,0.15);
}

/* Social icons list — equivalent to .social-media in Shopify theme */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-social .tap-area {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition);
}
.footer-social .tap-area:hover { opacity: 0.7; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .footer-nav { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .footer-nav { grid-template-columns: repeat(2, 1fr); } }

.footer-col__heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
  letter-spacing: 0;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright { font-size: var(--text-sm); opacity: 0.7; }

.footer-payment-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.payment-icon {
  background: rgba(45,45,45,0.1);
  border: 1px solid rgba(45,45,45,0.2);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text);
}

/* ══════════════════════════════════════════════════════════
   20. FORMS & INPUTS
══════════════════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: var(--text-sm); font-weight: 600; }
.form-control {
  height: 3.125rem;
  padding-inline: 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--color-teal); }

/* ══════════════════════════════════════════════════════════
   21. PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--color-page-bg);
  padding: 4rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { font-size: var(--text-h2); margin-bottom: 0.5rem; }
.page-hero p  { color: var(--color-text-sub); max-width: 600px; margin-inline: auto; }

/* ══════════════════════════════════════════════════════════
   22. EMPTY STATES
══════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--color-text-sub);
}
.empty-state h2 { font-size: var(--text-h3); margin-bottom: 1rem; }
.empty-state p  { margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════
   23. ALERTS / MESSAGES
══════════════════════════════════════════════════════════ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: var(--text-sm);
}
.alert-success { background: #E0F4E8; color: #00A341; border: 1px solid #00A34130; }
.alert-error   { background: #FEE7E7; color: #F83A3A; border: 1px solid #F83A3A30; }

/* ══════════════════════════════════════════════════════════
   24. RESPONSIVE TYPOGRAPHY
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-gap: 4rem;
    --container-gutter: 1.5rem;
    --text-h1: 2.5rem;
    --text-h2: 2rem;
    --text-h3: 1.75rem;
  }
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-slideshow { height: 60vh; min-height: 360px; }
  .hero-slide__title { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  :root { --container-gutter: 1rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   25. PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════ */

/* ── Cart added banner ── */
.cart-added-banner {
  background: #E0F4E8;
  border-bottom: 1px solid rgba(0,163,65,0.2);
  padding: 0.8rem 0;
}
.cart-added-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #00A341;
  font-size: var(--text-sm);
  font-weight: 600;
}
.cart-added-banner__link {
  margin-left: auto;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  padding-block: 1.5rem;
}
.breadcrumb a {
  color: var(--color-text-sub);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--color-text); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb [aria-current="page"] { color: var(--color-text); }

/* ── Page wrapper ── */
.product-page { padding-bottom: var(--section-gap); }

/* ── 2-column layout ── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}
@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Image gallery ── */
.product-gallery__main {
  position: relative;
  background: #f8f8f8;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.4s ease;
}
.product-gallery__main:hover img { transform: scale(1.03); }

.product-gallery__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-heading);
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 72px; height: 72px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f8f8f8;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.product-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}
.product-gallery__thumb.is-active,
.product-gallery__thumb:hover { border-color: var(--color-text); }

/* ── Product info ── */
.product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, var(--text-h2));
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.product-price {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: 600;
  color: var(--color-text);
}
.product-price--sale   { color: var(--color-error); }
.product-price--compare {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-sub);
  text-decoration: line-through;
}

.product-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text-sub);
  background: rgba(45,45,45,0.06);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.product-description {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.product-description strong {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ── Product form ── */
.product-form { margin-bottom: 0.5rem; }

.product-form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.product-form__qty { margin-bottom: 1.25rem; }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-input);
  overflow: hidden;
  background: var(--color-white);
}
.qty-btn {
  width: 44px; height: 44px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-text);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.qty-btn:hover { background: var(--color-page-bg); }

.qty-input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  height: 44px;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.product-atc-btn { margin-top: 0.5rem; }

.product-size-note {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

/* ── Accordion ── */
.product-accordions {
  border-top: 1px solid var(--color-border);
}
.product-accordion {
  border-bottom: 1px solid var(--color-border);
}
.product-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  user-select: none;
  gap: 0.75rem;
  transition: color var(--transition);
}
.product-accordion__summary::-webkit-details-marker { display: none; }
.product-accordion__summary::marker { display: none; }
.product-accordion__summary:hover { color: #555; }

.accordion-chevron {
  flex-shrink: 0;
  color: var(--color-text-sub);
  transition: transform var(--transition);
}
.product-accordion[open] .accordion-chevron { transform: rotate(180deg); }

.product-accordion__body {
  padding-bottom: 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  line-height: 1.75;
}
.product-accordion__body p + p { margin-top: 0.5rem; }

/* ── Related products ── */
.related-products {
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}
.related-products__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 2rem;
}

@media (max-width: 860px) {
  .product-gallery__main img { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .product-gallery__thumbs { gap: 0.5rem; }
  .product-gallery__thumb  { width: 60px; height: 60px; }
}

/* ══════════════════════════════════════════════════════════
   26. CART DRAWER
══════════════════════════════════════════════════════════ */

/* ── Overlay ── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 399;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay[hidden] { display: block; }
.cart-drawer-overlay.open    { opacity: 1; pointer-events: auto; }

/* ── Drawer panel ── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--color-white);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer[hidden] { display: flex; }
.cart-drawer.open    { transform: translateX(0); }

/* ── Inner layout ── */
.cart-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* ── Head ── */
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}
.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  color: var(--color-text-sub);
  transition: background var(--transition), color var(--transition);
}
.cart-drawer__close:hover { background: var(--color-page-bg); color: var(--color-text); }

/* ── Body ── */
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

/* ── Empty state ── */
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--color-text-sub);
}
.cart-drawer__empty-text {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: 600;
  color: var(--color-text);
}

/* ── Items list ── */
.cart-drawer__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cart-drawer__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.2s ease;
}
.cart-drawer__item:last-child { border-bottom: none; }

.cart-drawer__item-img-wrap {
  display: block;
  width: 80px; height: 80px;
  background: #f8f8f8;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-drawer__item-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}

.cart-drawer__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.cart-drawer__item-name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.3;
}
.cart-drawer__item-name:hover { text-decoration: underline; text-underline-offset: 2px; }
.cart-drawer__item-price {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  margin: 0;
}

.cart-drawer__item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.cart-drawer__remove {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  padding: 0.2rem 0;
  transition: color var(--transition);
}
.cart-drawer__remove:hover { color: var(--color-error); }

.cart-drawer__item-total {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  margin: 0;
  padding-top: 0.15rem;
}

/* ── Qty control small variant ── */
.qty-control--sm .qty-btn {
  width: 30px; height: 30px;
  font-size: 1rem;
}
.qty-control--sm .drawer-qty-val {
  display: inline-block;
  min-width: 28px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  padding: 0 0.25rem;
}

/* ── Footer ── */
.cart-drawer__foot {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem 1.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-drawer__foot--hidden { display: none; }

.cart-drawer__shipping-note {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  text-align: center;
  background: var(--color-page-bg);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin: 0;
  line-height: 1.5;
}
.cart-drawer__shipping-note--earned {
  color: #00A341;
  background: rgba(0,163,65,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}
.cart-drawer__tax-note {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  text-align: center;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   27. CART PAGE
══════════════════════════════════════════════════════════ */

.cart-page { padding-block: 2.5rem var(--section-gap); }

/* ── Cart page header ── */
.cart-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, var(--text-h2));
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 2rem;
}

/* ── Two-column layout ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
}

/* ── Items column ── */
.cart-items {
  border-top: 2px solid var(--color-text);
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 580px) {
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__qty,
  .cart-item__total { display: none; }
}

.cart-item__img-wrap {
  display: block;
  width: 100px; height: 100px;
  background: #f8f8f8;
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 580px) { .cart-item__img-wrap { width: 80px; height: 80px; } }

.cart-item__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cart-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.3;
}
.cart-item__name:hover { text-decoration: underline; text-underline-offset: 2px; }
.cart-item__unit-price {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}

.cart-item__remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  padding: 0;
  margin-top: 0.5rem;
  transition: color var(--transition);
}
.cart-item__remove-btn:hover { color: var(--color-error); }

.cart-item__qty { align-self: center; }

.cart-item__total {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  align-self: center;
  text-align: right;
}

/* ── Order summary (sticky sidebar) ── */
.cart-summary {
  background: var(--color-page-bg);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.cart-summary__title {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: 0.5rem 0;
}
.cart-summary__row--total {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.cart-summary__shipping-note {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.5;
}
.cart-summary__shipping-note--earned {
  color: #00A341;
  font-weight: 600;
}
.cart-summary__tax-note {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  text-align: center;
  margin-top: 0.75rem;
}
.cart-summary__checkout { margin-top: 1rem; }

/* ── Empty cart state ── */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  text-align: center;
  gap: 1.5rem;
}
.cart-empty__icon-wrap { position: relative; display: inline-flex; }
.cart-empty__badge {
  position: absolute;
  top: -6px; right: -10px;
  min-width: 22px; height: 22px;
  background: var(--color-teal);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-empty__heading {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-text);
}
.cart-empty__sub {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  margin-top: -0.5rem;
}

/* ══════════════════════════════════════════════════════════
   28. ABOUT PAGE (Who We Are)
══════════════════════════════════════════════════════════ */

/* ── Intro / Rich Text ── */
.about-intro {
  padding: 3.5rem 0 0;
}
.about-intro__inner {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  text-align: center;
}
.about-intro__heading {
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.about-intro__body p {
  text-align: justify;
  line-height: 1.75;
  color: var(--color-text);
}
.about-intro__body p + p { margin-top: 1rem; }

/* ── Media-with-text blocks ── */
.about-mwt {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  padding-top: 2.5rem;
  padding-bottom: var(--section-gap);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Default: content (55%) left, media (45%) right */
.about-mwt__item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  height: 420px;
}
/* Variant: media (45%) left, content (55%) right */
.about-mwt__item--img-left {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-mwt__content {
  border-radius: var(--radius-card);
  padding: 3rem;
  display: flex;
  align-items: center;
}
.about-mwt__content--middle {
  align-items: center;   /* place-self-center-start */
}

.about-mwt__media {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-mwt__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-mwt__title {
  font-size: clamp(2rem, 2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  white-space: normal;
}
.about-mwt__prose { width: 100%; }
.about-mwt__prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0;
}
.about-mwt__prose li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: var(--text-sm);
}
.about-mwt__prose li:last-child { margin-bottom: 0; }
.about-mwt__prose p {
  font-size: var(--text-sm);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-mwt__prose p:last-child { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 999px) {
  .about-mwt__item,
  .about-mwt__item--img-left {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  /* Push image to top on mobile for blocks where content precedes image in DOM */
  .about-mwt__item:not(.about-mwt__item--img-left) .about-mwt__media {
    order: -1;
  }
  .about-mwt__media { min-height: 280px; }
  .about-mwt__content,
  .about-mwt__content--middle { align-items: flex-start; }
}
@media (max-width: 768px) {
  .about-intro__heading { font-size: var(--text-h2); }
  .about-mwt { padding-inline: 1rem; }
  .about-mwt__content { padding: 2rem 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   29. SUSTAINABILITY PAGE
   Source: page.sustainability-page.json
   Sections: rich_text_maNfL8, tabs_JafpCY, media_with_text_KLtUJJ
══════════════════════════════════════════════════════════ */

/* ── Section 1: Rich Text Intro ── */
/* content_width: medium (~65ch), text_position: center, text_color: #2d2d2d */
.sustain-intro {
  padding: 3.5rem 0 0;
}
.sustain-intro__inner {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  text-align: center;
}
.sustain-intro__heading {
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2d2d2d;
  margin-bottom: 2rem;
}
.sustain-intro__body p {
  text-align: justify;
  line-height: 1.75;
  color: #2d2d2d;
}

/* ── Section 2: Tabs — "Our Commitment" ── */
/* full_width: true, content_size: medium → max-width 1000px */
/* custom_css: .prose{text-align:left} .h2{text-align:center} */
.sustain-tabs {
  padding: var(--section-gap) 0;
}
.sustain-tabs__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  display: grid;
  gap: 2.5rem;
}
.sustain-tabs__header {
  text-align: center;
}
.sustain-tabs__h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2d2d2d;
}

/* Tab navigation — desktop */
/* Source: .tabs-inner::part(tab-list) — sliding 2px underline indicator */
.sustain-tab-list {
  display: none; /* mobile: hidden, shown via desktop MQ below */
  position: relative;
  box-shadow: inset 0 -2px rgba(45, 45, 45, 0.1);
}
.sustain-tab-btn {
  padding: 1.5rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(45, 45, 45, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease-in-out;
  flex: 1;
}
.sustain-tab-btn[aria-selected="true"] {
  color: #2d2d2d;
}
/* Sliding underline — matches Shopify .tabs-inner::part(tab-list):after */
.sustain-tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: calc(100% / 3); /* 3 tabs */
  background: #2d2d2d;
  transition: transform 0.3s;
  pointer-events: none;
}

/* Tab panels */
.sustain-tab-panels {
  text-align: left;
}
.sustain-tab-panel {
  line-height: 1.75;
  color: #2d2d2d;
}
.sustain-tab-panel[hidden] { display: none; }
.sustain-tab-panel p { margin-bottom: 1rem; }
.sustain-tab-panel p:last-child { margin-bottom: 0; }

/* Mobile: accordion, desktop: hide accordions, show tab UI */
.sustain-tabs__mobile {
  display: block;
}
.sustain-accordion {
  border-bottom: 1px solid rgba(45, 45, 45, 0.15);
}
.sustain-accordion__title {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2d2d2d;
}
.sustain-accordion__title::after {
  content: '+';
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}
details[open] .sustain-accordion__title::after { content: '−'; }
.sustain-accordion__body {
  padding-bottom: 1.25rem;
  line-height: 1.75;
  color: #2d2d2d;
}
.sustain-accordion__body p { margin-bottom: 0.75rem; }
.sustain-accordion__body p:last-child { margin-bottom: 0; }

@media screen and (min-width: 700px) {
  .sustain-tab-list {
    display: flex;
  }
  .sustain-tab-panels {
    display: block;
  }
  .sustain-tabs__mobile {
    display: none;
  }
}

/* ── Section 3: Media with Text ── */
/* Source: media_with_text_KLtUJJ — spacing: small (gap = var(--spacing-6) ≈ 1.5rem) */
/* media_width: 45 → media_ratio = 0.9fr, content_ratio = 1.1fr */
/* custom_css: .h2{font-size:clamp(2rem,2vw,4rem); font-weight:700; white-space:normal; margin:0} */
.sustain-mwt {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  padding-top: 2.5rem;
  padding-bottom: var(--section-gap);
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* spacing: small */
}

/* Default: content (1.1fr) left, media (0.9fr) right */
.sustain-mwt__item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  min-height: 420px;
}
/* Variant: media (0.9fr) left, content (1.1fr) right */
.sustain-mwt__item--img-left {
  grid-template-columns: 0.9fr 1.1fr;
}

.sustain-mwt__content {
  border-radius: var(--radius-card);
  padding: 3rem;
  display: flex;
  align-items: center; /* place-self-center-start text-start */
}
.sustain-mwt__media {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.sustain-mwt__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* custom_css from template: clamp(2rem, 2vw, 4rem), font-weight:700, white-space:normal, margin:0 */
.sustain-mwt__title {
  font-size: clamp(2rem, 2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: normal;
  margin: 0 0 1.25rem;
}
.sustain-mwt__prose { width: 100%; }
.sustain-mwt__prose p {
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.sustain-mwt__prose p:last-child { margin-bottom: 0; }

/* Responsive: stack vertically on mobile */
@media (max-width: 999px) {
  .sustain-mwt__item,
  .sustain-mwt__item--img-left {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .sustain-mwt__item--img-left .sustain-mwt__media {
    order: -1;
  }
  .sustain-mwt__media { min-height: 280px; }
}
@media (max-width: 768px) {
  .sustain-intro__heading { font-size: var(--text-h2); }
  .sustain-mwt { padding-inline: 1rem; }
  .sustain-mwt__content { padding: 2rem 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   30. CORPORATE GIFTING PAGE
   Source: Shopify /pages/corporate-gifting
   Template: main-page section — content_width: 80ch
   custom_css: li { list-style-position: outside; margin-left: 1.5em; padding-left: 0; }
   Mirrors Shopify .page + .page-spacer + .prose rendering exactly.
══════════════════════════════════════════════════════════ */

/* Outer section wrapper — no background, full-width */
.gift-page-section {
  padding-inline: var(--container-gutter);
}

/* Spacing — matches Shopify .page-spacer:
   margin-block-start: var(--spacing-8) = 2rem (base)
   margin-block-end: var(--section-outer-spacing-block) ≈ var(--section-gap) */
.gift-page-spacer {
  margin-top: 2rem;
  margin-bottom: var(--section-gap);
}
@media screen and (min-width: 700px) {
  .gift-page-spacer { margin-top: 3rem; }
}
@media screen and (min-width: 1400px) {
  .gift-page-spacer { margin-top: 4rem; }
}

/* Content container — matches Shopify .page:
   display: grid; max-width: var(--page-max-width, 80ch); gap: var(--spacing-12);
   margin-inline: auto */
.gift-page {
  display: grid;
  max-width: 80ch;
  margin-inline: auto;
  gap: 3rem;
}

/* Page title — matches Shopify <h1 class="h1 text-center"> */
.gift-page__h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color-text);
}

/* Prose content — matches Shopify .prose rendering inside main-page */
/* .prose *+:is(p,ul,ol) → margin-block-start: var(--spacing-3) = 0.75rem */
/* .prose *+:is(h2) → margin-block-start: var(--spacing-4) = 1rem */
.gift-prose {
  line-height: 1.75;
  color: var(--color-text);
}
.gift-prose p + p,
.gift-prose p + h2,
.gift-prose ul + h2,
.gift-prose h2 + p,
.gift-prose h2 + ul {
  margin-top: 0.75rem;
}
.gift-prose p + h2,
.gift-prose ul + h2 {
  margin-top: 1.5rem;
}
.gift-prose h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
/* custom_css from main-page: li { list-style-position: outside; margin-left: 1.5em; padding-left: 0; } */
.gift-prose ul {
  list-style: disc;
  list-style-position: outside;
  margin-left: 1.5em;
  padding-left: 0;
}
.gift-prose li {
  margin-left: 0;
  padding-left: 0;
  line-height: 1.75;
}
.gift-prose li + li {
  margin-top: 0.25rem;
}
.gift-prose a {
  color: var(--color-text);
  text-decoration: underline;
}
.gift-prose a:hover {
  opacity: 0.8;
}

/* Why Choose items — bold ✓ title + teal description, no bullet dots */
.gift-why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.75rem;
}
.gift-why-item__title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.gift-why-item__desc {
  color: var(--color-text);
  line-height: 1.75;
}

/* Let's Make Gifting Easy — closing CTA block */
.gift-cta {
  margin-top: 2rem;
}
.gift-cta h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.gift-cta p {
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.gift-cta hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1.25rem 0;
}
.gift-cta__emoji-line {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .gift-page__h1 { font-size: var(--text-h2); }
}

/* ══════════════════════════════════════════════════════════
   Section 31 — FAQ
   Source: faq_7axAXb (faq.liquid)
   full_width: true, text_position: center
   accordion_background: (empty) → bg-secondary fallback = #fff
   ══════════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-gap) 1.5rem;
}
.faq-section__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-section__intro {
  text-align: center;
}
.faq-section__heading {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-text);
}

/* accordion-box rounded — bg-secondary (#fff) with rounded corners */
.faq-box {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Each accordion item — details element */
.faq-item {
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
}
.faq-item:last-child {
  border-bottom: none;
}

/* Summary toggle — bold title + chevron */
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  user-select: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}
.faq-item__chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
  color: var(--color-text);
}
.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

/* Answer content */
.faq-item__content {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text);
  line-height: 1.75;
}
.faq-item__content a {
  color: var(--color-text);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-section { padding: 3rem 1rem; }
  .faq-item > summary { padding: 1rem 1.25rem; }
  .faq-item__content { padding: 0 1.25rem 1rem; }
}

/* ══════════════════════════════════════════════════════════
   Section 32 — Delivery Times & Costs
   Source: page.json → main-page (content_width: 80ch)
   No dedicated template — uses generic page.json
   custom_css: li { list-style-position: outside; margin-left: 1.5em; padding-left: 0; }
   ══════════════════════════════════════════════════════════ */
.deliv-section {
  padding: 0 1.5rem;
}
.deliv-spacer {
  margin-top: 2rem;
  margin-bottom: var(--section-gap);
}
@media (min-width: 750px)  { .deliv-spacer { margin-top: 3rem; } }
@media (min-width: 1100px) { .deliv-spacer { margin-top: 4rem; } }

.deliv-page {
  display: grid;
  max-width: 80ch;
  gap: 3rem;
  margin-inline: auto;
}
.deliv-page__h1 {
  text-align: center;
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--color-text);
}
.deliv-prose > * + * { margin-top: 1rem; }
.deliv-prose h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1.75rem;
}
.deliv-prose p,
.deliv-prose li {
  color: var(--color-text);
  line-height: 1.75;
}
.deliv-prose ul {
  margin-left: 1.5em;
  padding-left: 0;
  list-style-position: outside;
}
.deliv-prose ul li { margin-bottom: 0.25rem; }
.deliv-prose a {
  color: var(--color-text);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .deliv-page__h1 { font-size: var(--text-h2); }
}

/* ══════════════════════════════════════════════════════════
   Section 33 — Order Confirmation
   ══════════════════════════════════════════════════════════ */
.confirm-section {
  padding: var(--section-gap) 1.5rem;
}
.confirm-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.confirm-icon {
  width: 4rem;
  height: 4rem;
  color: #22c55e;
}
.confirm-icon svg { width: 100%; height: 100%; }
.confirm-heading {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--color-text);
}
.confirm-sub {
  color: var(--color-text);
  line-height: 1.6;
}
.confirm-order-num {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}

/* Order summary card */
.confirm-card {
  width: 100%;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.confirm-card__title {
  font-size: var(--text-h3, 1.125rem);
  font-weight: 700;
  color: var(--color-text);
}

/* Line items */
.confirm-items {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(45,45,45,0.1);
}
.confirm-item:last-child { border-bottom: none; }
.confirm-item__name { flex: 1; }
.confirm-item__price { font-weight: 600; white-space: nowrap; }

/* Totals */
.confirm-totals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(45,45,45,0.12);
  padding-top: 1rem;
}
.confirm-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.confirm-totals__row--total {
  font-weight: 700;
  font-size: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(45,45,45,0.12);
}

/* Shipping address */
.confirm-ship-addr {
  border-top: 1px solid rgba(45,45,45,0.12);
  padding-top: 1rem;
}
.confirm-ship-addr__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.confirm-ship-addr p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}

/* Actions */
.confirm-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.confirm-support {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}
.confirm-support a {
  color: var(--color-text);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .confirm-actions { flex-direction: column; }
  .confirm-actions .btn { width: 100%; text-align: center; }
}
