/*
Theme Name: FOVIO Luxury Artisanal Jewelry
Theme URI: https://fovio-jewelry.com
Author: FOVIO Atelier
Author URI: https://fovio-jewelry.com
Description: High-end bespoke WordPress & WooCommerce theme for FOVIO Artisanal Jewelry. Features Amazon-style side loupe zoom, model-hover transitions, 100% GMC compliance, and luxury typography.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: fovio-luxury
*/

/* ==========================================================================
   1. CSS RESET & VARIABLES
   ========================================================================== */
:root {
  --bg-cream: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-stone-subtle: #F4EFE6;
  --bg-dark: #1C1917;
  --text-dark: #1C1917;
  --text-muted: #78716C;
  --text-light: #FAF8F5;
  --gold-accent: #9E8255;
  --gold-light: #C4A470;
  --border-stone: #EAE5DF;
  --border-dark: #332E2A;
  --font-serif: 'Cormorant Garamond', Georgia, Cambria, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: #D5CEC5;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B3A89B;
}

/* ==========================================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================================== */
.font-serif {
  font-family: var(--font-serif);
}
.font-sans {
  font-family: var(--font-sans);
}

.fovio-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .fovio-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.fovio-container-narrow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .fovio-container-narrow {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  width: 100%;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-stone);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #292524;
}

.desktop-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-accent);
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--gold-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-bag-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.cart-bag-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count-badge {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 9999px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  padding: 0.35rem;
  color: var(--text-dark);
}

.mobile-nav-drawer {
  display: none;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-stone);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer a {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-stone);
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-stone);
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 25, 23, 0.3);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-cream), transparent 50%, rgba(250, 248, 245, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.1;
  color: #FAF8F5;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title span {
  font-style: italic;
  color: #F3E5AB;
}

.hero-subtitle {
  color: #F5F5F4;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   5. TRUST PILLARS BAR
   ========================================================================== */
.trust-bar {
  width: 100%;
  background-color: var(--bg-stone-subtle);
  border-top: 1px solid var(--border-stone);
  border-bottom: 1px solid var(--border-stone);
  padding: 2.5rem 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.trust-item {
  border-left: 2px solid rgba(158, 130, 85, 0.4);
  padding-left: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.trust-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.trust-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-accent);
}

.trust-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.trust-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   6. PRODUCT CARD & CATALOG GRID (HOVER RULE)
   ========================================================================== */
.catalog-section {
  padding: 5rem 0;
}

.catalog-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-stone);
  gap: 1rem;
}

@media (min-width: 768px) {
  .catalog-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.catalog-tag {
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.catalog-title {
  font-size: 2rem;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .catalog-title {
    font-size: 3rem;
  }
}

.catalog-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 20rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 3.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fovio-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.card-visual-link {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #FFFFFF;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-stone);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  display: block;
  transition: box-shadow 0.4s ease;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  background-color: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(4px);
  color: var(--gold-accent);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--border-stone);
  border-radius: 1px;
}

/* Primary Image: Pure White (GMC Default) */
.card-img-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  z-index: 5;
}

/* Hover Image: Model Lifestyle (Smooth Reveal) */
.card-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  z-index: 10;
}

/* Floating Quick Pill - Hidden on Touch Devices by Default */
.card-quick-pill {
  display: none;
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 20;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.card-quick-pill span {
  display: block;
  width: 100%;
  background-color: rgba(28, 25, 23, 0.95);
  color: #FAF8F5;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 0.5rem;
  text-align: center;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card-quick-pill span:hover {
  background-color: var(--gold-accent);
}

/* Desktop Only Hover Rules: Prevents Sticky Overlap on Mobile Touch */
@media (hover: hover) and (pointer: fine) {
  .card-quick-pill {
    display: block;
  }

  .fovio-product-card:hover .card-visual-link {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  }

  .fovio-product-card:hover .card-img-primary,
  .card-visual-link:hover .card-img-primary {
    opacity: 0 !important;
  }

  .fovio-product-card:hover .card-img-hover,
  .card-visual-link:hover .card-img-hover {
    opacity: 1 !important;
  }

  .fovio-product-card:hover .card-quick-pill,
  .card-visual-link:hover .card-quick-pill {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .fovio-product-card:hover .card-title {
    color: var(--gold-accent);
  }
}

.card-meta,
.card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0.25rem 0.5rem 1.5rem;
  box-sizing: border-box;
}

.card-meta a,
.card-info a,
.card-title-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.35;
  text-align: center;
  margin: 0 auto 0.4rem;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.7em;
  transition: color 0.2s ease;
}

.card-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 100%;
}

.card-price {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.card-tax-badge {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: normal;
  text-transform: none;
  background: none;
  padding: 0;
  border-radius: 0;
}

/* ==========================================================================
   7. CRAFTSMAN STORY SECTION
   ========================================================================== */
.story-section {
  width: 100%;
  background-color: var(--bg-cream);
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--border-stone);
  border-bottom: 1px solid var(--border-stone);
}

.story-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .story-container {
    flex-direction: row;
  }
}

.story-visual-wrap {
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .story-visual-wrap {
    width: 50%;
  }
}

.story-image-box {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: #EAE5DF;
  overflow: hidden;
  border: 1px solid var(--border-stone);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.story-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-heirloom-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  max-width: 240px;
  border: 1px solid rgba(158, 130, 85, 0.4);
  display: none;
}

@media (min-width: 640px) {
  .story-heirloom-tag {
    display: block;
  }
}

.story-heirloom-tag span {
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.625rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.story-heirloom-tag p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: #D6D3D1;
  line-height: 1.4;
}

.story-editorial {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .story-editorial {
    width: 50%;
    padding-left: 1rem;
    text-align: left;
  }
}

.story-editorial .subheading {
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8125rem;
  font-weight: 700;
  display: block;
}

.story-editorial h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  line-height: 1.15;
}

@media (min-width: 768px) {
  .story-editorial h2 {
    font-size: 3.25rem;
  }
}

.story-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #292524;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .story-quote {
    font-size: 1.45rem;
  }
}

.story-body {
  font-size: 1rem;
  color: #44403C;
  line-height: 1.7;
}

.story-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .story-cta-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .story-cta-row {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   8. PRODUCT DETAIL PAGE (PDP) & AMAZON-STYLE SIDE LOUPE MAGNIFIER
   ========================================================================== */
.pdp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-stone);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}

.pdp-breadcrumbs a {
  color: var(--text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.pdp-breadcrumbs a:hover {
  color: var(--text-dark);
}

.pdp-breadcrumbs .breadcrumb-sep {
  color: #C4BEB5;
  font-weight: 400;
  user-select: none;
}

.pdp-breadcrumbs .current-crumb {
  color: var(--gold-accent);
  font-weight: 700;
  word-break: break-word;
}

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .pdp-layout {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 3.5rem;
    gap: 0;
  }
  .pdp-gallery-col {
    grid-column: span 6;
  }
  .pdp-info-col {
    grid-column: span 6;
  }
}

.pdp-gallery-col {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  position: relative;
  z-index: 40;
}

.pdp-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
  overflow: visible;
  position: relative;
}

@media (min-width: 768px) {
  .pdp-gallery-wrap {
    flex-direction: row;
    align-items: flex-start;
  }
}

.pdp-thumbs-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  padding: 0.25rem 0 0.5rem;
  scrollbar-width: thin;
}

@media (min-width: 768px) {
  .pdp-thumbs-strip {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 480px;
    width: auto;
    padding: 0;
  }
}

.pdp-thumb-btn {
  position: relative;
  width: 52px;
  height: 68px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-stone);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0.25rem;
  opacity: 0.65;
  transition: all 0.2s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .pdp-thumb-btn {
    width: 64px;
    height: 80px;
    padding: 0.35rem;
  }
}

.pdp-thumb-btn:hover,
.pdp-thumb-btn.active {
  opacity: 1;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 1px var(--gold-accent);
}

.pdp-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Main Stage Image Container */
.pdp-main-stage-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.pdp-main-stage {
  position: relative;
  width: 100%;
  height: 330px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-stone);
  border-radius: 2px;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  touch-action: pan-y;
}

@media (min-width: 480px) {
  .pdp-main-stage {
    height: 380px;
  }
}

@media (min-width: 768px) {
  .pdp-main-stage {
    height: 480px;
    padding: 1.5rem;
    cursor: crosshair;
  }
}

.pdp-main-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Amazon-Style Movable Lens */
.zoom-tracking-lens {
  display: none;
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid var(--gold-accent);
  background-color: rgba(158, 130, 85, 0.22);
  pointer-events: none;
  z-index: 30;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7), inset 0 0 16px rgba(158, 130, 85, 0.25);
}

.zoom-tracking-lens::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-accent);
  border-radius: 50%;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .pdp-main-stage:hover .zoom-tracking-lens,
  .pdp-main-stage.is-hovering .zoom-tracking-lens {
    display: block !important;
  }
}

/* Amazon-Style Side Flyout Window */
.zoom-flyout-window {
  display: none;
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  width: 500px;
  height: 480px;
  background-color: #FFFFFF;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(158, 130, 85, 0.4);
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 240%;
}

@media (min-width: 1024px) {
  .pdp-main-stage:hover ~ .zoom-flyout-window,
  .pdp-main-stage.is-hovering ~ .zoom-flyout-window {
    display: block !important;
  }
}

@media (max-width: 1023px) {
  .zoom-tracking-lens,
  .zoom-flyout-window {
    display: none !important;
  }
}

.zoom-badge-top {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(4px);
  color: var(--gold-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border-stone);
}

.zoom-badge-bottom {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: rgba(28, 25, 23, 0.9);
  color: #FFFFFF;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}

/* Click to Enlarge Badge */
.stage-enlarge-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: rgba(28, 25, 23, 0.9);
  color: #FFFFFF;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.pdp-main-stage:hover .stage-enlarge-badge {
  background-color: var(--gold-accent);
}

/* ==========================================================================
   9. FULLSCREEN HD LIGHTBOX MODAL
   ========================================================================== */
.pdp-lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(28, 25, 23, 0.96);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.pdp-lightbox-modal.active {
  display: flex;
}

.modal-top-bar {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light);
  padding-top: 0.5rem;
}

.modal-title-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.modal-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background-color 0.2s ease;
}

.modal-close-btn:hover {
  background-color: var(--gold-accent);
}

.modal-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.modal-image-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
}

.modal-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-side-zoom {
  display: none;
  width: 500px;
  height: 500px;
  max-height: 68vh;
  background-color: #24201D;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  background-repeat: no-repeat;
  background-size: 240%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .modal-image-box:hover ~ .modal-side-zoom,
  .modal-image-box.is-hovering ~ .modal-side-zoom {
    display: block;
  }
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(28, 25, 23, 0.8);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.modal-nav-btn:hover {
  background-color: var(--gold-accent);
}

.modal-nav-btn.prev {
  left: 1rem;
}

.modal-nav-btn.next {
  right: 1rem;
}

.modal-thumbs-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  max-width: 600px;
  padding-bottom: 0.5rem;
}

.modal-thumb {
  position: relative;
  width: 48px;
  height: 60px;
  background-color: #1C1917;
  border: 1px solid #332E2A;
  padding: 0.25rem;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.modal-thumb:hover, .modal-thumb.active {
  opacity: 1;
  border-color: var(--gold-accent);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   10. PDP BUY BOX & SPECIFICATIONS
   ========================================================================== */
.pdp-tagline {
  color: var(--gold-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pdp-tagline .divider {
  color: #D6D3D1;
}

.pdp-title {
  font-size: 1.65rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .pdp-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .pdp-title {
    font-size: 2.85rem;
    line-height: 1.15;
  }
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.pdp-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .pdp-price {
    font-size: 2.35rem;
  }
}

.pdp-installment {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pdp-description-box {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-stone);
  border-bottom: 1px solid var(--border-stone);
  margin-bottom: 1.5rem;
}

.pdp-description-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: #44403C;
  line-height: 1.6;
}

.pdp-buy-box {
  margin-bottom: 2rem;
}

.pdp-buy-box form.cart {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 0 !important;
}

.pdp-buy-box .quantity {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  pointer-events: none !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pdp-buy-box .stock,
.pdp-buy-box p.stock {
  display: none !important;
}

.pdp-add-to-cart-btn,
.pdp-buy-box .single_add_to_cart_button,
.pdp-buy-box button[type="submit"].single_add_to_cart_button {
  width: 100% !important;
  padding: 1.15rem 1.5rem !important;
  background-color: #9E8255 !important;
  color: #FFFFFF !important;
  font-family: var(--font-sans) !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 2px !important;
  box-shadow: 0 4px 15px rgba(158, 130, 85, 0.3) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  display: block !important;
  text-align: center !important;
  line-height: 1.2 !important;
}

.pdp-add-to-cart-btn:hover,
.pdp-buy-box .single_add_to_cart_button:hover,
.pdp-buy-box button[type="submit"].single_add_to_cart_button:hover {
  background-color: #856D45 !important;
  box-shadow: 0 8px 25px rgba(158, 130, 85, 0.5) !important;
}

.pdp-buy-box .single_add_to_cart_button.is-loading {
  background-color: #7D6743 !important;
  opacity: 0.85 !important;
  cursor: wait !important;
}

.pdp-buy-box .single_add_to_cart_button.is-added {
  background-color: #1F4E3B !important; /* Rich Heirloom Emerald Green */
  color: #FFFFFF !important;
  box-shadow: 0 6px 22px rgba(31, 78, 59, 0.45) !important;
}

.cart-count-badge.badge-bump {
  animation: fovioBadgeBump 0.5s ease-out;
}

@keyframes fovioBadgeBump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); background-color: #9E8255; }
  100% { transform: scale(1); }
}

.accordion-header span {
  pointer-events: none;
}

.pdp-stock-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #78716C;
  margin-top: 1rem;
}

.pdp-stock-guarantee .highlight {
  color: #1C1917;
}

.pdp-stock-guarantee .divider {
  color: #D6D3D1;
}

/* Accordions */
.pdp-accordions {
  border-top: 1px solid var(--border-stone);
}

.accordion-item {
  border-bottom: 1px solid var(--border-stone);
}

.accordion-header {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.2s ease;
}

.accordion-header:hover {
  color: var(--gold-accent);
}

.accordion-icon {
  font-size: 1.25rem;
  font-weight: 400;
}

.accordion-content {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-specs-list p {
  margin-bottom: 0.5rem;
}

.accordion-safety-note {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-stone);
  color: #57534E;
}

/* ==========================================================================
   11. FOOTER (GMC COMPLIANT)
   ========================================================================== */
.site-footer {
  width: 100%;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4.5rem 0 3rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #292524;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: #D6D3D1;
}

.footer-links a:hover {
  color: var(--gold-accent);
}

.company-info-col {
  font-size: 0.75rem;
  color: #A8A29E;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.company-info-col .company-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #F5F5F4;
}

.company-info-col a {
  color: var(--gold-accent);
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  font-size: 0.6875rem;
  color: #78716C;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.payment-pill {
  padding: 0.25rem 0.5rem;
  background-color: #292524;
  border: 1px solid #332E2A;
  font-size: 0.625rem;
  font-weight: 700;
  color: #D6D3D1;
}

.ssl-pill {
  color: #34D399;
}

/* ==========================================================================
   12. LUXURY PAGE TRANSITION SPINNER (PERMANENTLY DISABLED FOR INSTANT BROWSING)
   ========================================================================== */
.fovio-page-loader {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.fovio-page-loader.is-hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.loader-jewel-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.loader-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(158, 130, 85, 0.18);
  border-top-color: var(--gold-accent);
  border-bottom-color: var(--gold-light);
  animation: fovioRotate 1.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.loader-ring-inner {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1.5px dashed rgba(158, 130, 85, 0.45);
  animation: fovioRotateRev 2.2s linear infinite;
}

.loader-gem-orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #F3E5AB, #9E8255 70%, #5E4B2E 100%);
  box-shadow: 0 0 16px rgba(158, 130, 85, 0.65);
  animation: fovioPulse 1.5s ease-in-out infinite;
}

.loader-brand-text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 600;
  opacity: 0.85;
}

@keyframes fovioRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fovioRotateRev {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes fovioPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ==========================================================================
   13. SCROLL REVEAL MICRO-ANIMATIONS (EXACT NEXT.JS PARITY)
   ========================================================================== */
.scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

.scroll-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.delay-0, .delay-1, .delay-2, .delay-3 {
  transition-delay: 0ms !important;
  transition: none !important;
}

/* ==========================================================================
   14. BESPOKE SLIDE-OVER CART DRAWER (YOUR HEIRLOOM BAG - EXACT NEXT.JS PARITY)
   ========================================================================== */
.fovio-cart-drawer-wrap {
  position: fixed;
  inset: 0;
  z-index: 999998;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.fovio-cart-drawer-wrap.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(28, 25, 23, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.fovio-cart-drawer-wrap.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background-color: #FAF8F5;
  border-left: 1px solid var(--border-stone);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999999;
}

.fovio-cart-drawer-wrap.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.drawer-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

.drawer-count {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.drawer-close-btn:hover {
  color: var(--text-dark);
}

.drawer-incentive-banner {
  background-color: #F4EFE6;
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid var(--border-stone);
  text-align: center;
}

.drawer-incentive-banner p {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #44403C;
  margin: 0;
}

.drawer-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-empty-state {
  text-align: center;
  padding: 4rem 1rem;
}

.drawer-empty-state p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.drawer-shop-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: var(--bg-dark);
  color: #FFFFFF !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.drawer-shop-btn:hover {
  background-color: var(--gold-accent);
}

.drawer-item-card {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-stone);
  align-items: flex-start;
}

.drawer-item-img {
  width: 76px;
  height: 90px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-stone);
  border-radius: 2px;
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.drawer-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-item-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.drawer-item-title:hover {
  color: var(--gold-accent);
}

.drawer-item-price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.drawer-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.drawer-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-stone);
  background-color: #FFFFFF;
  border-radius: 2px;
}

.drawer-stepper button {
  background: none;
  border: none;
  padding: 0.25rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #57534E;
  cursor: pointer;
  transition: background 0.15s ease;
}

.drawer-stepper button:hover {
  background-color: #F5F5F4;
}

.drawer-stepper span {
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.drawer-item-remove {
  background: none;
  border: none;
  font-size: 0.6875rem;
  color: #A8A29E;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}

.drawer-item-remove:hover {
  color: #B91C1C;
}

.drawer-footer {
  padding: 1.5rem;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-stone);
}

.drawer-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.subtotal-label {
  font-size: 0.875rem;
  color: #57534E;
}

.subtotal-val {
  font-size: 1.125rem;
  color: var(--text-dark);
}

.subtotal-taxes-note {
  font-size: 0.6875rem;
  color: #78716C;
  margin-bottom: 1rem;
}

.drawer-checkout-btn {
  width: 100%;
  padding: 1.15rem;
  background-color: var(--bg-dark);
  color: #FFFFFF !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  display: block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 0.85rem;
  text-decoration: none;
}

.drawer-checkout-btn:hover {
  background-color: var(--gold-accent);
  box-shadow: 0 8px 25px rgba(158, 130, 85, 0.4);
}

.drawer-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.625rem;
  color: #A8A29E;
}

.drawer-trust-badges .divider {
  color: #E7E5E4;
}

/* ==========================================================================
   15. FOVIO LUXURY EMPTY CART REFINEMENT (REMOVE SAD EMOJI & NEW IN STORE)
   ========================================================================== */

/* 1. Eliminate sad emoji and default illustrations completely */
.wp-block-woocommerce-empty-cart-block img,
.wc-block-cart__empty-cart-image,
.wc-block-cart__empty-cart-illustration,
.wp-block-woocommerce-empty-cart-block .components-placeholder__illustration {
  display: none !important;
}

/* 2. Eliminate "New in store" headings and unprompted product grid from empty cart */
.wp-block-woocommerce-empty-cart-block h2,
.wp-block-woocommerce-empty-cart-block .wp-block-heading,
.wp-block-woocommerce-empty-cart-block .wc-block-grid,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
.wc-block-cart__empty-cart-products,
.wc-block-cart-empty-cart-products-block,
.wp-block-woocommerce-empty-cart-block [data-block-name="woocommerce/product-new"],
.wp-block-woocommerce-empty-cart-block [data-block-name="core/heading"],
.wp-block-woocommerce-empty-cart-block .wc-block-product-template,
.wp-block-woocommerce-empty-cart-block ul.products,
.woocommerce-cart .cart-empty + h2,
.woocommerce-cart .cart-empty + .products,
.woocommerce-cart .cross-sells {
  display: none !important;
}

/* 3. Luxury Styling for Empty Cart Container */
.wp-block-woocommerce-empty-cart-block,
.woocommerce-cart .cart-empty {
  text-align: center !important;
  padding: 4.5rem 1.5rem 3rem !important;
  max-width: 650px !important;
  margin: 0 auto !important;
  font-family: var(--font-serif) !important;
}

.wp-block-woocommerce-empty-cart-block p,
.woocommerce-cart .cart-empty {
  font-size: 1.5rem !important;
  color: var(--text-dark) !important;
  margin-bottom: 2rem !important;
  line-height: 1.5 !important;
}

/* Luxury Call to Action Button to return to products */
.wp-block-woocommerce-empty-cart-block a.wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .wc-block-cart__submit-button,
.wp-block-woocommerce-empty-cart-block a,
.woocommerce-cart .return-to-shop a.button {
  background-color: var(--bg-dark) !important;
  color: #FAF8F5 !important;
  padding: 1.1rem 2.75rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-block !important;
  border: none !important;
  border-radius: 2px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.25s ease !important;
  margin-top: 1rem !important;
}

.wp-block-woocommerce-empty-cart-block a.wp-block-button__link:hover,
.wp-block-woocommerce-empty-cart-block a:hover,
.woocommerce-cart .return-to-shop a.button:hover {
  background-color: var(--gold-accent) !important;
  box-shadow: 0 6px 20px rgba(158, 130, 85, 0.35) !important;
}

/* ==========================================================================
   NEW LUXURY SECTIONS (SPOTLIGHT, MATERIALS, LOOKBOOK, REVIEWS, DISPATCH)
   ========================================================================== */

/* 1. Curated Piece Spotlight */
.spotlight-section {
  background-color: #F5F2EB;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-stone);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.spotlight-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.spotlight-card {
  position: relative;
  aspect-ratio: 4/5;
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
  overflow: hidden;
}
.spotlight-card.offset {
  margin-top: 2rem;
}
.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.spotlight-card:hover img {
  transform: scale(1.04);
}
.spotlight-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(28, 25, 23, 0.9);
  color: #FAF8F5;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.6rem;
}
.spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.spotlight-pretitle {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
}
.spotlight-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}
.spotlight-desc {
  font-style: italic;
  font-size: 1rem;
  color: #57534E;
  line-height: 1.7;
  margin: 0;
}
.spotlight-specs {
  border-top: 1px solid var(--border-stone);
  border-bottom: 1px solid var(--border-stone);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
}
.spec-row span {
  color: #78716C;
}
.spec-row strong {
  color: var(--text-dark);
}
.spotlight-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
}
.spotlight-price {
  font-size: 1.625rem;
  color: var(--text-dark);
}
.spotlight-price small {
  font-size: 0.75rem;
  color: #78716C;
}

/* 2. Artisanal Materials Benchmark */
.materials-section {
  background-color: var(--bg-cream);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-stone);
}
.materials-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}
.materials-header .subheading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
  display: block;
  margin-bottom: 0.5rem;
}
.materials-header h2 {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.materials-header p {
  font-style: italic;
  color: #57534E;
  font-size: 1rem;
  line-height: 1.7;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.material-card {
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}
.material-card:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.material-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #F5F5F4;
  padding-bottom: 0.75rem;
}
.material-num {
  font-style: italic;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold-accent);
}
.material-tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #A8A29E;
}
.material-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 0;
}
.material-card p {
  font-size: 0.8125rem;
  color: #57534E;
  line-height: 1.7;
  margin: 0;
}

/* 3. The Art of Layering (Lookbook) */
.lookbook-section {
  background-color: #F4EFE6;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-stone);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.lookbook-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.lookbook-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lookbook-visual-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #FAF8F5;
  z-index: 10;
}
.lookbook-visual-overlay span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #F3E5AB;
}
.lookbook-visual-overlay h3 {
  font-size: 1.5rem;
  color: #FAF8F5;
  margin: 0.25rem 0 0;
}
.lookbook-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lookbook-content .subheading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
}
.lookbook-content h2 {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin: 0;
}
.lookbook-content p {
  font-style: italic;
  font-size: 1rem;
  color: #57534E;
  line-height: 1.7;
  margin: 0;
}
.lookbook-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.lookbook-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
  text-decoration: none;
  transition: all 0.25s ease;
}
.lookbook-item-row:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.lookbook-item-row .item-thumb {
  width: 54px;
  height: 54px;
  background: #FAF8F5;
  border: 1px solid #EAE5DF;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}
.lookbook-item-row .item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lookbook-item-row .item-info {
  flex: 1;
}
.lookbook-item-row .item-type {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-accent);
  display: block;
}
.lookbook-item-row h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0.2rem 0 0;
}
.lookbook-item-row .item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-left: 1rem;
}

/* 4. Verified US Collector Notes */
.reviews-section {
  background-color: var(--bg-cream);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-stone);
}
.reviews-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}
.reviews-header .subheading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
  display: block;
  margin-bottom: 0.5rem;
}
.reviews-header h2 {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.reviews-header p {
  font-style: italic;
  color: #57534E;
  font-size: 1rem;
  line-height: 1.7;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.review-stars {
  color: var(--gold-accent);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
}
.review-quote {
  font-style: italic;
  font-size: 0.9375rem;
  color: #44403C;
  line-height: 1.75;
  margin: 0;
}
.review-footer {
  border-top: 1px solid #F5F5F4;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.review-footer strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}
.review-footer small {
  display: block;
  font-size: 0.6875rem;
  color: #78716C;
}
.review-badge {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gold-accent);
  background: #F4EFE6;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

/* 5. Private Atelier Dispatch (Newsletter) */
.newsletter-section {
  background-color: #F4EFE6;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-stone);
}
.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-box .subheading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
}
.newsletter-box h2 {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin: 0;
}
.newsletter-box p {
  font-style: italic;
  color: #57534E;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.newsletter-input {
  flex: 1;
  max-width: 320px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-stone);
  font-size: 0.8125rem;
  background: #FFFFFF;
  color: var(--text-dark);
  outline: none;
}
.newsletter-input:focus {
  border-color: var(--gold-accent);
}
.newsletter-note {
  font-size: 0.6875rem;
  color: #78716C;
  margin: 0;
}
.newsletter-success {
  color: var(--gold-accent);
  font-size: 0.95rem;
  padding: 1rem;
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .spotlight-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }
  .materials-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-input {
    max-width: 100%;
    width: 100%;
  }
}

/* ==========================================================================
   21. STUDIO PACKAGING & UNBOXING EXPERIENCE
   ========================================================================== */
.unboxing-section {
  background-color: var(--bg-cream);
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-stone);
}

.unboxing-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem auto;
}

.unboxing-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark);
  margin: 0.75rem 0 1rem 0;
  line-height: 1.2;
}

.unboxing-quote {
  color: #44403C;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}

.unboxing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.unboxing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.unboxing-card:hover {
  border-color: rgba(158, 130, 85, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.unboxing-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-stone);
}

.unboxing-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.unboxing-card:hover .unboxing-card-img-wrap img {
  transform: scale(1.05);
}

.unboxing-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(28, 25, 23, 0.85);
  color: #FAF8F5;
  padding: 0.25rem 0.6rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.unboxing-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.unboxing-pillar-num {
  font-size: 0.75rem;
  color: var(--gold-accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: block;
}

.unboxing-card-content h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.unboxing-card:hover .unboxing-card-content h3 {
  color: var(--gold-accent);
}

.unboxing-card-content p {
  font-size: 0.75rem;
  color: #57534E;
  line-height: 1.6;
  margin: 0;
}

.unboxing-assurance-banner {
  background: var(--bg-stone-subtle);
  border: 1px solid var(--border-stone);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.assurance-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.assurance-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid rgba(158, 130, 85, 0.4);
  flex-shrink: 0;
}

.assurance-text h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.assurance-text p {
  font-size: 0.75rem;
  color: #57534E;
  margin: 0;
}

.assurance-right {
  text-align: right;
  flex-shrink: 0;
}

.assurance-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #78716C;
  display: block;
}

.assurance-email {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.assurance-email:hover {
  color: var(--gold-accent);
}

@media (max-width: 1024px) {
  .unboxing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .unboxing-grid {
    grid-template-columns: 1fr;
  }
  .unboxing-assurance-banner {
    flex-direction: column;
    text-align: center;
  }
  .assurance-left {
    flex-direction: column;
    text-align: center;
  }
  .assurance-right {
    text-align: center;
  }
}


/* ==========================================================================
   FOVIO EXACT LOCALHOST SYNCHRONIZATION OVERRIDES & COMPLETION
   ========================================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    background-color: #1C1917;
    color: #FAF8F5 !important;
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #9E8255;
    color: #FAF8F5 !important;
    border-color: #9E8255;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    background-color: rgba(250, 248, 245, 0.9);
    color: #1C1917 !important;
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
}
.btn-secondary:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #1C1917 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav-link {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #292524;
    text-decoration: none;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--accent-gold, #9E8255);
}

.bag-label {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1C1917;
}
@media (max-width: 639px) {
    .bag-label {
        display: none;
    }
}

/* SPOTLIGHT SECTION */
.spotlight-section {
    width: 100%;
    background-color: #FAF8F5;
    padding: 5rem 1.5rem;
    border-bottom: 1px solid var(--border-stone, #EAE5DF);
}
@media (min-width: 1024px) {
    .spotlight-section {
        padding: 7rem 1.5rem;
    }
}
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .spotlight-grid {
        grid-template-columns: 7fr 5fr;
        gap: 4rem;
    }
}
.spotlight-visuals {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 1.25rem;
    align-items: flex-end;
}
.spotlight-card.main-portrait {
    position: relative;
    aspect-ratio: 3 / 4;
    background-color: #F5F2EB;
    border: 1px solid var(--border-stone, #EAE5DF);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.spotlight-card.main-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight-card.main-portrait:hover img {
    transform: scale(1.03);
}
.spotlight-card.macro-companion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.spotlight-card.macro-companion img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background-color: #F5F2EB;
    border: 1px solid var(--border-stone, #EAE5DF);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight-card.macro-companion:hover img {
    transform: scale(1.03);
}
.macro-caption {
    font-size: 0.75rem;
    color: #78716C;
    line-height: 1.5;
    padding-left: 0.25rem;
    margin: 0;
}
.spotlight-pretitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-gold, #9E8255);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.spotlight-title {
    font-size: 2.25rem;
    color: #1C1917;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
    .spotlight-title {
        font-size: 2.5rem;
    }
}
.spotlight-desc {
    font-size: 1.05rem;
    color: #57534E;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.spotlight-specs {
    border-top: 1px solid var(--border-stone, #EAE5DF);
    padding-top: 0.5rem;
    margin-bottom: 2rem;
}
.spotlight-specs .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(234, 229, 223, 0.6);
    font-size: 0.8125rem;
}
.spotlight-specs .spec-row span {
    color: #78716C;
}
.spotlight-specs .spec-row strong {
    color: #1C1917;
    font-weight: 600;
}
.spotlight-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
}
.spotlight-price {
    font-size: 1.875rem;
    color: #1C1917;
    font-weight: 500;
}
.spotlight-price small {
    font-size: 0.75rem;
    color: #78716C;
    letter-spacing: 0.1em;
    margin-left: 0.35rem;
}

/* MATERIALS SECTION */
.material-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-stone, #EAE5DF);
    padding-bottom: 0.75rem;
}

/* LOOKBOOK SECTION */
.lookbook-section {
    width: 100%;
    background-color: #F4EFE6;
    padding: 5rem 1.5rem;
    border-bottom: 1px solid var(--border-stone, #EAE5DF);
}
.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}
.lookbook-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    background-color: #FFFFFF;
    border: 1px solid var(--border-stone, #EAE5DF);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.lookbook-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lookbook-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: #FFFFFF;
}
.lookbook-visual-overlay span {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #F3E5AB;
    display: block;
    margin-bottom: 0.25rem;
}
.lookbook-visual-overlay h3 {
    font-size: 1.65rem;
    color: #FFFFFF;
    margin: 0;
}
.lookbook-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.lookbook-desc {
    font-size: 1.05rem;
    color: #57534E;
    line-height: 1.7;
    margin: 0;
}
.lookbook-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.lookbook-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background-color: #FFFFFF;
    border: 1px solid var(--border-stone, #EAE5DF);
    text-decoration: none;
    transition: all 0.25s ease;
}
.lookbook-item-card:hover {
    border-color: var(--accent-gold, #9E8255);
    box-shadow: 0 2px 10px rgba(158, 130, 85, 0.15);
}
.lookbook-item-card .item-thumb {
    width: 4rem;
    height: 4rem;
    background-color: #FAF8F5;
    border: 1px solid #EAE5DF;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 1rem;
}
.lookbook-item-card .item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lookbook-item-card .item-info {
    flex-grow: 1;
}
.lookbook-item-card .item-type {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-gold, #9E8255);
    display: block;
}
.lookbook-item-card h4 {
    font-size: 1.05rem;
    color: #1C1917;
    margin: 0.2rem 0 0;
    transition: color 0.2s ease;
}
.lookbook-item-card:hover h4 {
    color: var(--accent-gold, #9E8255);
}
.lookbook-item-card .item-price-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.lookbook-item-card .item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1C1917;
}
.lookbook-item-card .item-arrow {
    color: #A8A29E;
    transition: transform 0.2s ease, color 0.2s ease;
}
.lookbook-item-card:hover .item-arrow {
    color: var(--accent-gold, #9E8255);
    transform: translateX(3px);
}

/* STORY SECTION */
.story-section {
    width: 100%;
    background-color: #FAF8F5;
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--border-stone, #EAE5DF);
}
.story-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .story-container {
        flex-direction: row;
    }
}
.story-visual-wrap {
    width: 100%;
    position: relative;
}
@media (min-width: 1024px) {
    .story-visual-wrap {
        width: 50%;
    }
}
.story-image-box {
    position: relative;
    aspect-ratio: 4 / 5;
    background-color: #EAE5DF;
    border: 1px solid var(--border-stone, #EAE5DF);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.story-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-tag-box {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: #1C1917;
    color: #FAF8F5;
    padding: 1.5rem;
    max-width: 15rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(158, 130, 85, 0.4);
    display: none;
}
@media (min-width: 640px) {
    .story-tag-box {
        display: block;
    }
}
.story-tag-box span {
    color: var(--accent-gold, #9E8255);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.625rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}
.story-tag-box p {
    font-size: 0.875rem;
    color: #D6D3D1;
    line-height: 1.5;
    margin: 0;
}
.story-editorial {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .story-editorial {
        width: 50%;
        padding-left: 1.5rem;
    }
}
.story-quote {
    font-size: 1.35rem;
    color: #1C1917;
    line-height: 1.6;
    margin: 0;
}
@media (min-width: 768px) {
    .story-quote {
        font-size: 1.5rem;
    }
}
.story-body {
    font-size: 1rem;
    color: #57534E;
    line-height: 1.7;
    margin: 0;
}
.story-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
}


/* General Utilities */
.italic { font-style: italic !important; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important; }
.scroll-smooth { scroll-behavior: smooth; }
.site-main { width: 100%; min-height: 100vh; background-color: var(--bg-cream, #FAF8F5); }
.brand-col { display: flex; flex-direction: column; gap: 1rem; }
.hamburger-icon { width: 1.5rem; height: 1.5rem; }
