/** Shopify CDN: Minification failed

Line 449:0 Unexpected "}"

**/
/* ============================================
   YVON — House of Fine Moissanite
   Shopify Theme Stylesheet
   ============================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

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

:root {
  --yvon-serif: 'Cormorant Garamond', 'Georgia', serif;
  --yvon-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --yvon-crimson: #8B0000;
  --yvon-crimson-light: #a31010;
  --yvon-black: #1a1a1a;
  --yvon-bg: #fafaf8;
  --yvon-bg-alt: #f4f2ee;
  --yvon-bg-warm: #eae7e1;
  --yvon-bg-warm2: #e2dfd8;
  --yvon-cream: #f5e6d3;
  --yvon-text: #1a1a1a;
  --yvon-text-muted: rgba(0,0,0,0.45);
  --yvon-text-faint: rgba(0,0,0,0.25);
  --yvon-text-ghost: rgba(0,0,0,0.08);
  --yvon-border: rgba(0,0,0,0.08);
  --yvon-border-light: rgba(0,0,0,0.06);
  --yvon-border-med: rgba(0,0,0,0.12);
  --yvon-white-muted: rgba(255,255,255,0.5);
  --yvon-white-faint: rgba(255,255,255,0.25);
  --yvon-white-ghost: rgba(255,255,255,0.06);
  --yvon-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--yvon-sans);
  color: var(--yvon-text);
  background: var(--yvon-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: opacity var(--yvon-transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--yvon-sans); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- UTILITIES --- */
.yvon-container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.yvon-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yvon-crimson);
  font-weight: 400;
}
.yvon-heading-lg {
  font-family: var(--yvon-serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
}
.yvon-heading-md {
  font-family: var(--yvon-serif);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.35;
}
.yvon-heading-sm {
  font-family: var(--yvon-serif);
  font-size: 26px;
  font-weight: 300;
}
.yvon-body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--yvon-text-muted);
  font-weight: 300;
}
.yvon-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}
.yvon-subtitle {
  font-size: 12px;
  color: var(--yvon-text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 200;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background: var(--yvon-crimson);
  color: var(--yvon-cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 300;
}

/* --- HEADER / NAV --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--yvon-bg);
  border-bottom: 0.5px solid var(--yvon-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.header-nav a:hover, .header-nav a.active { opacity: 1; }
.header-logo {
  font-family: var(--yvon-serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
  text-align: center;
}
.header-logo a { opacity: 1; }
.header-logo img { height: 28px; width: auto; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-actions a, .header-actions button {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.header-actions a:hover, .header-actions button:hover { opacity: 1; }
.cart-count {
  font-size: 10px;
  opacity: 0.5;
}

/* Mobile menu */
.mobile-menu-toggle { display: none; }

/* --- HERO BANNER --- */
.hero-banner {
  position: relative;
  height: 85vh;
  min-height: 520px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #2a2a2a 100%);
}
.hero-banner--with-image {
  background-size: cover;
  background-position: center;
}
.hero-banner--with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-banner::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139,0,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 24px;
}
.hero-sub {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-title {
  font-family: var(--yvon-serif);
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.7); }
.hero-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px;
  font-weight: 200;
  margin-bottom: 40px;
}
.hero-cta {
  display: inline-block;
  border: 0.5px solid rgba(255,255,255,0.25);
  padding: 16px 52px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  transition: all var(--yvon-transition);
}
.hero-cta:hover {
  background: #fff;
  color: var(--yvon-black);
  border-color: #fff;
}

/* --- BRAND STRIP --- */
.brand-strip {
  display: flex;
  justify-content: center;
  gap: 72px;
  padding: 52px 32px;
  border-bottom: 0.5px solid var(--yvon-border-light);
}
.brand-strip__item { text-align: center; }
.brand-strip__value {
  font-family: var(--yvon-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--yvon-crimson);
}
.brand-strip__label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yvon-text-faint);
  margin-top: 6px;
  font-weight: 300;
}

/* --- BRAND STORY --- */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.brand-story__image {
  position: relative;
  overflow: hidden;
  background: var(--yvon-bg-warm);
}
.brand-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-story__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--yvon-bg);
}
.brand-story__text .yvon-eyebrow { margin-bottom: 24px; }
.brand-story__text .yvon-heading-md { margin-bottom: 20px; }
.brand-story__text .yvon-body { max-width: 400px; }

/* --- COLLECTION GRID (homepage) --- */
.collection-grid { padding: 80px 32px; text-align: center; }
.collection-grid .yvon-eyebrow { margin-bottom: 12px; }
.collection-grid .yvon-heading-md { margin-bottom: 52px; }
.collection-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--yvon-bg-warm);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover img { transform: scale(1.04); }
.collection-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}
.collection-card__name {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
}
.collection-card__count {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  font-weight: 200;
}

/* --- FEATURED COLLECTION / PRODUCT GRID --- */
.featured-collection {
  padding: 80px 48px;
  background: var(--yvon-bg-alt);
}
.featured-collection__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  padding: 0 8px;
}
.featured-collection__link {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.4;
  border-bottom: 0.5px solid rgba(0,0,0,0.15);
  padding-bottom: 3px;
  transition: opacity 0.3s;
}
.featured-collection__link:hover { opacity: 0.8; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 0 8px;
}

/* --- PRODUCT CARD --- */
.product-card {
  position: relative;
  cursor: pointer;
}
.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yvon-crimson);
  font-weight: 400;
  z-index: 2;
}
.product-card__image {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--yvon-bg-warm);
  position: relative;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card__image .product-card__image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-card:hover .product-card__image-hover { opacity: 1; }
.product-card:hover .product-card__image img:first-child { opacity: 0; }
.product-card__name {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}
.product-card__material {
  font-size: 10px;
  color: var(--yvon-text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 200;
  margin-bottom: 8px;
}
.product-card__price {
  font-family: var(--yvon-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
}

}
.product-card__price .compare-price {
  font-family: var(--yvon-sans);
  font-size: 12px;
  color: var(--yvon-text-faint);
  text-decoration: line-through;
  font-weight: 300;
  margin-left: 8px;
}

/* --- EDITORIAL BAND --- */
.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.editorial-band__left {
  background: var(--yvon-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}
.editorial-band__quote {
  font-family: var(--yvon-serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.editorial-band__attr {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}
.editorial-band__right {
  background: var(--yvon-crimson);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px;
  text-align: center;
}
.editorial-band__right .yvon-eyebrow {
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.editorial-band__right .yvon-heading-sm {
  color: var(--yvon-cream);
  margin-bottom: 28px;
}
.editorial-band__cta {
  display: inline-block;
  border: 0.5px solid rgba(255,255,255,0.3);
  padding: 14px 44px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yvon-cream);
  font-weight: 300;
  transition: all var(--yvon-transition);
}
.editorial-band__cta:hover { background: rgba(255,255,255,0.1); }

/* --- PROMISE BAR --- */
.promise-bar {
  background: var(--yvon-black);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.promise-bar__label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  margin-bottom: 10px;
}
.promise-bar__value {
  font-family: var(--yvon-serif);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

/* --- FOOTER --- */
.site-footer {
  background: #0d0d0d;
  padding: 64px 48px 32px;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {
  font-family: var(--yvon-serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 200;
  line-height: 1.8;
  color: rgba(255,255,255,0.2);
  max-width: 300px;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  font-size: 12px;
  font-weight: 200;
  color: rgba(255,255,255,0.35);
  margin-bottom: 11px;
  transition: color 0.3s;
}
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 200;
  color: rgba(255,255,255,0.12);
  letter-spacing: 1px;
}
.footer-payments { display: flex; gap: 12px; align-items: center; }
.footer-payments svg { width: 32px; height: 20px; opacity: 0.2; }

/* ============================================
   PRODUCT PAGE
   ============================================ */
.breadcrumb {
  padding: 18px 48px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--yvon-text-faint);
  font-weight: 300;
}
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--yvon-text-muted); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.4; }
.breadcrumb .current { color: var(--yvon-text-muted); }

.product-page {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  min-height: 600px;
}

/* Gallery */
.product-gallery { padding: 0 0 48px 48px; }
.product-gallery__main {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--yvon-bg-warm);
  cursor: zoom-in;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-gallery__main:hover img { transform: scale(1.06); }
.product-gallery__badge {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yvon-crimson);
  font-weight: 400;
  z-index: 2;
}
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.product-gallery__thumb {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--yvon-bg-warm2);
  border: 1.5px solid transparent;
  transition: border-color 0.3s;
}
.product-gallery__thumb.active { border-color: var(--yvon-black); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info {
  padding: 44px 48px 48px 60px;
  display: flex;
  flex-direction: column;
}
.product-info .yvon-eyebrow { margin-bottom: 16px; }
.product-info__title {
  font-family: var(--yvon-serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 8px;
}
.product-info__price {
  font-family: var(--yvon-sans);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.product-info__price .compare-price {
  text-decoration: line-through;
  color: var(--yvon-text-faint);
  font-size: 18px;
  font-weight: 300;
  margin-left: 8px;
}

.product-info__tax {
  font-size: 10px;
  color: var(--yvon-text-faint);
  font-weight: 200;
  margin-bottom: 32px;
}
.product-info__divider {
  height: 0.5px;
  background: var(--yvon-border-light);
  margin-bottom: 28px;
}

/* Variant picker */
.variant-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yvon-text-muted);
  font-weight: 400;
  margin-bottom: 12px;
}
.variant-options {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.variant-btn {
  min-width: 52px;
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--yvon-border-med);
  background: transparent;
  font-family: var(--yvon-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  color: var(--yvon-text);
}
.variant-btn:hover { border-color: rgba(0,0,0,0.4); }
.variant-btn.active {
  background: var(--yvon-black);
  color: #fff;
  border-color: var(--yvon-black);
}
.variant-btn.soldout {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Color swatches */
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
}
.color-swatch.active { border-color: var(--yvon-black); }
.color-swatch::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
}
.color-swatch--silver::after { background: #c0c0c0; }
.color-swatch--gold::after { background: #d4a853; }
.color-swatch--rosegold::after { background: #b76e79; }

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  border: 0.5px solid var(--yvon-border-med);
  width: fit-content;
  margin-bottom: 24px;
}
.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 200;
  color: var(--yvon-text-muted);
  transition: color 0.3s;
}
.quantity-btn:hover { color: var(--yvon-text); }
.quantity-input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 0.5px solid var(--yvon-border-med);
  border-right: 0.5px solid var(--yvon-border-med);
  font-family: var(--yvon-sans);
  font-size: 13px;
  font-weight: 300;
  background: transparent;
  color: var(--yvon-text);
  -moz-appearance: textfield;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* CTA buttons */
.btn-add-to-cart {
  width: 100%;
  padding: 18px;
  background: var(--yvon-black);
  color: #fff;
  font-family: var(--yvon-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
  transition: background var(--yvon-transition);
  margin-bottom: 12px;
}
.btn-add-to-cart:hover { background: #333; }
.btn-add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.btn-wishlist {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 0.5px solid var(--yvon-border-med);
  font-family: var(--yvon-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  transition: border-color 0.3s;
  margin-bottom: 36px;
  color: var(--yvon-text);
}
.btn-wishlist:hover { border-color: rgba(0,0,0,0.4); }

/* Trust perks */
.trust-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.trust-perk {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-perk__icon {
  width: 32px;
  height: 32px;
  border: 0.5px solid var(--yvon-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-perk__dot {
  width: 8px;
  height: 8px;
  background: var(--yvon-crimson);
  opacity: 0.35;
  border-radius: 50%;
}
.trust-perk__text {
  font-size: 11px;
  font-weight: 300;
  color: var(--yvon-text-muted);
  line-height: 1.5;
}
.trust-perk__text strong {
  font-weight: 400;
  color: rgba(0,0,0,0.7);
}

/* Accordion */
.product-accordion { border-top: 0.5px solid var(--yvon-border-light); }
.accordion-item { border-bottom: 0.5px solid var(--yvon-border-light); }
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: var(--yvon-text);
}
.accordion-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--yvon-text-muted);
}
.accordion-toggle {
  font-size: 18px;
  color: var(--yvon-text-faint);
  font-weight: 200;
  transition: transform 0.3s;
}
.accordion-item.open .accordion-toggle { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
  padding-bottom: 18px;
}
.accordion-body__inner {
  font-size: 12px;
  font-weight: 300;
  color: var(--yvon-text-muted);
  line-height: 1.9;
}

/* Specs band */
.specs-band {
  background: var(--yvon-bg-alt);
  padding: 64px 48px;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.specs-grid__value {
  font-family: var(--yvon-serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 6px;
}
.specs-grid__label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yvon-text-faint);
  font-weight: 300;
}

/* Related products */
.related-products {
  padding: 80px 48px;
  text-align: center;
}
.related-products .yvon-heading-sm { margin-bottom: 52px; }
.related-products .product-grid {
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-hero {
  text-align: center;
  padding: 72px 48px 56px;
  background: var(--yvon-bg);
}
.collection-hero .yvon-eyebrow { margin-bottom: 16px; }
.collection-hero__title {
  font-family: var(--yvon-serif);
  font-size: 44px;
  font-weight: 300;
  margin-bottom: 16px;
}
.collection-hero__desc {
  font-size: 13px;
  color: var(--yvon-text-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}
.collection-hero__count {
  font-size: 10px;
  color: var(--yvon-text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 200;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  border-top: 0.5px solid var(--yvon-border-light);
  border-bottom: 0.5px solid var(--yvon-border-light);
}
.collection-toolbar__filters {
  display: flex;
  gap: 24px;
}
.collection-toolbar__filter {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--yvon-text-muted);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
}
.collection-toolbar__filter:hover { color: var(--yvon-text); }
.collection-toolbar__sort {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--yvon-text-muted);
  border: none;
  background: none;
  font-family: var(--yvon-sans);
  cursor: pointer;
}
.collection-toolbar__sort select {
  border: none;
  background: transparent;
  font-family: var(--yvon-sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--yvon-text-muted);
  cursor: pointer;
}

.collection-products {
  padding: 48px;
}
.collection-products .product-grid {
  padding: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { padding: 0 24px; }
  .product-info { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .yvon-container { padding: 0 24px; }
  .header-inner { padding: 16px 24px; }
  .header-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .mobile-menu-toggle span {
    height: 1px;
    background: var(--yvon-text);
    display: block;
    width: 100%;
    transition: all 0.3s;
  }
  .header-logo { font-size: 22px; letter-spacing: 8px; }

  .hero-banner { height: 70vh; min-height: 440px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 9px; letter-spacing: 4px; }

  .brand-strip { flex-wrap: wrap; gap: 32px; padding: 36px 24px; }
  .brand-story { grid-template-columns: 1fr; }
  .brand-story__text { padding: 48px 24px; }
  .brand-story__image { min-height: 280px; }

  .collection-grid__items { grid-template-columns: 1fr 1fr; }
  .collection-card { aspect-ratio: 3/5; }

  .featured-collection { padding: 56px 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0; }

  .editorial-band { grid-template-columns: 1fr; }
  .editorial-band__left, .editorial-band__right { padding: 48px 24px; }

  .promise-bar { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }

  .site-footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .breadcrumb { padding: 14px 24px; }
  .product-gallery { padding: 0 24px; }
  .product-info { padding: 32px 24px; }
  .product-info__title { font-size: 28px; }

  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 0; }
  .specs-band { padding: 48px 24px; }

  .related-products { padding: 56px 24px; }
  .related-products .product-grid { grid-template-columns: repeat(2, 1fr); }

  .collection-hero { padding: 48px 24px 36px; }
  .collection-hero__title { font-size: 32px; }
  .collection-toolbar { padding: 12px 24px; }
  .collection-products { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-cta { padding: 14px 36px; font-size: 9px; }
  .brand-strip { gap: 20px; }
  .brand-strip__value { font-size: 22px; }
  .collection-grid__items { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .variant-options { gap: 6px; }
  .variant-btn { min-width: 44px; height: 40px; font-size: 11px; }
}


.product-card__image--portrait {
  aspect-ratio: 4/5;
}

/* --- PRODUCT CARD VIDEO HOVER --- */
.product-card__video-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.product-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card:hover .product-card__video-hover { opacity: 1; }
.product-card:hover .product-card__image img:first-child { opacity: 0; }

/* --- GRA BADGE --- */
.product-card__gra-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.75);
  color: rgba(255,255,255,0.85);
  padding: 4px 8px;
  font-weight: 400;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* --- CARD META (size hint, delivery) --- */
.product-card__size-hint {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yvon-text-faint);
  font-weight: 300;
  margin-bottom: 4px;
}
.product-card__delivery {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yvon-crimson);
  opacity: 0.6;
  font-weight: 300;
  margin-bottom: 6px;
}

/* --- STICKY ADD TO CART (mobile) --- */
.sticky-atc {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--yvon-bg);
  border-top: 0.5px solid var(--yvon-border);
  padding: 14px 20px;
  z-index: 500;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  align-items: center;
  gap: 12px;
}
.sticky-atc.visible { display: flex; }
.sticky-atc__info { flex: 1; min-width: 0; }
.sticky-atc__name {
  font-size: 12px;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-atc__price {
  font-family: var(--yvon-serif);
  font-size: 16px;
  font-weight: 400;
}
.sticky-atc__btn {
  background: var(--yvon-black);
  color: #fff;
  font-family: var(--yvon-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 14px 24px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.sticky-atc__btn:hover { background: #333; }
.sticky-atc__btn:disabled { background: #ccc; cursor: not-allowed; }
@media (min-width: 769px) { .sticky-atc { display: none !important; } }

/* --- PRODUCT GALLERY ZOOM --- */
.product-gallery__main {
  cursor: zoom-in;
  overflow: hidden;
}
.product-gallery__main.zoomed {
  cursor: zoom-out;
}
.product-gallery__main img {
  transition: transform 0.5s ease;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
}
.product-gallery__main.zoomed img {
  transform: scale(1.85);
}

/* --- PRODUCT PAGE DELIVERY ESTIMATE --- */
.product-delivery-estimate {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--yvon-bg-alt);
  border-left: 2px solid var(--yvon-crimson);
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
}
.product-delivery-estimate__icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* --- GRA BADGE (product page) --- */
.product-gra-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid var(--yvon-border-med);
  padding: 8px 14px;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--yvon-text-muted);
  margin-bottom: 20px;
}
.product-gra-badge__dot {
  width: 6px; height: 6px;
  background: var(--yvon-crimson);
  border-radius: 50%;
  flex-shrink: 0;
}


/* --- BRAND STORY CREDENTIALS --- */
.brand-story__credentials {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 0.5px solid var(--yvon-border-light);
}
.brand-story__credential {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.brand-story__credential-value {
  font-family: var(--yvon-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--yvon-crimson);
}
.brand-story__credential-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yvon-text-faint);
  font-weight: 300;
  line-height: 1.5;
  max-width: 100px;
}
@media (max-width: 768px) {
  .brand-story__credentials {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
