/* ============================================================
   Beauty By Brianna — Theme CSS
   All variables, layout, components, WooCommerce overrides
   ============================================================ */

/* Google Fonts are loaded via wp_enqueue_style */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — defaults (overridden by Customizer via inline style) */
  --color-primary:          #DD3C8C;
  --color-background:       #ffffff;
  --color-foreground:       #2A2428;
  --color-secondary:        #F5EFF3;
  --color-muted:            #EDE7EB;
  --color-muted-foreground: #796C73;
  --color-border:           #E0D5DB;
  --color-card:             #FAF7F9;
  --color-hero-bg:          #2a0a1a;
  --color-gold-light:       #F08DBE;
  --color-gold-dark:        #A82A6A;

  /* Logo */
  --logo-height: 60px;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Button */
  --btn-radius: 9999px;
  --btn-height: 48px;
  --btn-padding: 0.75rem 1.75rem;
  --btn-font-size: 0.8125rem;
  --btn-font-weight: 500;
  --btn-letter-spacing: 0.15em;
  --btn-text-transform: uppercase;
  --color-button-text: #ffffff;

  /* Cards */
  --card-radius: 1rem;

  /* Radius */
  --radius-full: 9999px;
  --radius-2xl: 1rem;
  --radius-xl: 0.75rem;

  /* Shadows */
  --shadow-soft: 0 4px 20px -4px rgba(0,0,0,0.15);
  --shadow-elevated: 0 8px 40px -8px rgba(221,60,140,0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.25, 0.4, 0.25, 1);

  /* Header */
  --header-height: 80px;

  /* Section padding */
  --section-padding: 2rem;
  --checkout-gap: 2rem;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container-wide {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide { padding-left: 2rem; padding-right: 2rem; }
}

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

/* Gold shimmer text — inline-block + padding prevents background-clip clipping */
.text-gold {
  display: inline-block;
  line-height: 1.25;
  padding: 0.05em 0.08em 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(110deg,
    var(--color-gold-dark) 0%,
    var(--color-primary) 25%,
    var(--color-gold-light) 50%,
    var(--color-primary) 75%,
    var(--color-gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShimmer 8s linear infinite;
}
em.text-gold,
.text-gold em {
  font-style: italic;
  font-weight: 400;
}
/* Icon-only .text-gold wrappers (no gradient clip on SVG) */
.promise-section__pillar-icon.text-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--color-primary);
  animation: none;
}
.promise-section__pillar-icon.text-gold svg {
  color: var(--color-primary);
}
.marquee-strip__item.text-gold svg {
  flex-shrink: 0;
  color: rgba(221, 60, 140, 0.6);
  -webkit-text-fill-color: currentColor;
}
.text-primary { color: var(--color-primary) !important; }

/* Animations */
@keyframes goldShimmer { to { background-position: 200% center; } }
@keyframes marqueeAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-bounce { animation: bounceDown 2s ease-in-out infinite; }
.animate-marquee { animation: marqueeAnim 40s linear infinite; }

/* Scroll animation classes */
.anim-fade-up, .anim-slide-left, .anim-slide-right, .anim-scale-in, .anim-fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}
.anim-fade-up { transform: translateY(40px); }
.anim-slide-left { transform: translateX(-60px); }
.anim-slide-right { transform: translateX(60px); }
.anim-scale-in { transform: scale(0.9); }
.anim-fade-in { opacity: 0; }

.anim-fade-up.is-visible,
.anim-slide-left.is-visible,
.anim-slide-right.is-visible,
.anim-scale-in.is-visible,
.anim-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children inside anim-section */
.anim-section .anim-fade-up:nth-child(1) { transition-delay: 0s; }
.anim-section .anim-fade-up:nth-child(2) { transition-delay: 0.1s; }
.anim-section .anim-fade-up:nth-child(3) { transition-delay: 0.2s; }
.anim-section .anim-fade-up:nth-child(4) { transition-delay: 0.3s; }
.anim-section .anim-fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.theme-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  border: none;
  border-radius: var(--btn-radius);
  min-height: var(--btn-height);
  padding: var(--btn-padding);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.theme-btn-primary:hover { opacity: 0.85; }
.theme-btn-primary:disabled,
.theme-btn-primary.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.theme-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-foreground);
  border: 1.5px solid var(--color-border);
  border-radius: var(--btn-radius);
  min-height: var(--btn-height);
  padding: var(--btn-padding);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-btn-outline:hover {
  border-color: var(--color-foreground);
  color: var(--color-foreground);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* WordPress admin bar offset (logged-in preview / editor) */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Top bar */
.site-header__topbar {
  background-color: var(--color-primary);
  color: #ffffff;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
  max-height: 40px;
}
.site-header.is-scrolled .site-header__topbar {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.site-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
}
.site-header__topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header__topbar-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.site-header__topbar-link:hover { opacity: 1; }
.site-header__topbar-email { display: none; }
@media (min-width: 640px) { .site-header__topbar-email { display: inline; } }
.site-header__topbar-center {
  display: none;
  font-size: 0.6875rem;
}
@media (min-width: 768px) { .site-header__topbar-center { display: block; } }

/* Nav wrap */
.site-header__nav-wrap {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(221, 60, 140, 0.1);
  backdrop-filter: blur(4px);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header:not(.is-solid):not(.is-scrolled) .site-header__nav-wrap {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header.is-solid .site-header__nav-wrap,
.site-header.is-scrolled .site-header__nav-wrap,
.site-header.is-menu-open .site-header__nav-wrap {
  background-color: #ffffff;
  border-color: rgba(221, 60, 140, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  transition: height 0.3s ease;
}
@media (min-width: 1024px) { .site-header__nav { height: 5rem; } }
.site-header.is-scrolled .site-header__nav { height: 3.5rem; }
@media (min-width: 1024px) { .site-header.is-scrolled .site-header__nav { height: 4rem; } }

/* Logo */
.site-header__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo-img {
  width: auto;
  height: 3rem;
  display: block;
  object-fit: contain;
  transition: transform 0.5s var(--ease-smooth);
}
@media (min-width: 1024px) {
  .site-header__nav .site-logo-img { height: 4rem; }
}
.site-header.is-scrolled .site-header__nav .site-logo-img {
  height: 2rem;
}
@media (min-width: 1024px) {
  .site-header.is-scrolled .site-header__nav .site-logo-img { height: 2.5rem; }
}
.site-header__logo-link:hover .site-logo-img {
  transform: scale(1.1) rotate(-3deg);
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
  display: block;
}
.site-header:not(.is-solid):not(.is-scrolled) .site-logo-text { color: #ffffff; }

/* Desktop nav links (inside actions, matches Lovable layout) */
.site-header__nav-links { display: none; }
@media (min-width: 768px) {
  .site-header__nav-links {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
  }
}

.theme-nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.theme-nav-link {
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  color: rgba(42,36,40,0.8);
  transition: color 0.3s ease;
  position: relative;
}
.theme-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}
.theme-nav-link:hover { color: var(--color-primary); }
.theme-nav-link:hover::after { transform: scaleX(1); }
.site-header:not(.is-solid):not(.is-scrolled) .theme-nav-link { color: rgba(255,255,255,0.85); }
.site-header:not(.is-solid):not(.is-scrolled) .theme-nav-link:hover { color: #ffffff; }

/* Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* Cart button */
.site-header__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--color-foreground);
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-header__cart-btn:hover { color: var(--color-primary); transform: scale(1.1); }
.site-header:not(.is-solid):not(.is-scrolled) .site-header__cart-btn { color: #ffffff; }

/* Mobile toggle */
.site-header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--color-foreground);
  transition: opacity 0.2s;
}
.site-header__mobile-toggle:hover { opacity: 0.6; }
.site-header:not(.is-solid):not(.is-scrolled) .site-header__mobile-toggle { color: #ffffff; }
@media (min-width: 768px) { .site-header__mobile-toggle { display: none; } }

/* Mobile menu */
.site-header__mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease-spring), opacity 0.3s ease;
  opacity: 0;
  border-top: 1px solid transparent;
}
.site-header__mobile-menu.is-open {
  max-height: 300px;
  opacity: 1;
  border-color: var(--color-border);
}
.theme-mobile-nav-list { list-style: none; padding: 1rem 0; display: flex; flex-direction: column; gap: 0; }
.theme-mobile-nav-list li a,
.theme-mobile-nav-list li button {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
  width: 100%;
}
.theme-mobile-nav-list li a:hover,
.theme-mobile-nav-list li button:hover { color: var(--color-primary); }

/* Cart badge */
.theme-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 500;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  line-height: 1;
}
.theme-cart-count:empty { display: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#shop,
#maker,
#contact {
  scroll-margin-top: 6rem;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--color-hero-bg);
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,16,40,0.8), var(--color-hero-bg), #1a0510);
  z-index: 0;
}
.hero-section__glow {
  position: absolute;
  top: 0;
  left: 10%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(221,60,140,0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-section__corner-accent {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
}

/* Hero image */
.hero-section__image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
}
@media (min-width: 768px) {
  .hero-section__image-wrap {
    width: 42%;
    clip-path: ellipse(100% 100% at 0% 50%);
  }
}
.hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-section__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,10,26,0.6);
}
@media (min-width: 768px) {
  .hero-section__image-overlay { background: transparent; }
}
.hero-section__image-gradient {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, transparent, rgba(42,10,26,0.8));
}
@media (min-width: 768px) {
  .hero-section__image-gradient { display: block; }
}

/* Sparkles */
.hero-section__sparkle {
  position: absolute;
  z-index: 20;
}
.hero-section__sparkle--large {
  top: 18%;
  right: 8%;
}
@media (min-width: 768px) {
  .hero-section__sparkle--large { top: 16%; right: 12%; }
}
.hero-section__sparkle--small {
  top: 28%;
  right: 4%;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .hero-section__sparkle--small { top: 26%; right: 8%; }
}
.sparkle-icon { color: var(--color-primary); }
.sparkle-icon--dim { opacity: 0.5; }

/* Hero content */
.hero-section__content-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .hero-section__content-wrap { align-items: center; }
}
.hero-section__content {
  width: 100%;
  padding: 1.5rem 1.5rem 6rem;
  max-width: 36rem;
}
@media (min-width: 768px) {
  .hero-section__content {
    margin-left: 42%;
    padding: 0 3rem 0 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-section__content { padding: 0 4rem 0 4rem; }
}

.hero-section__title {
  color: #ffffff;
  font-size: clamp(2.25rem, 8vw, 6rem);
  font-style: normal;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-section__title { font-size: clamp(3rem, 8vw, 4.5rem); } }
@media (min-width: 768px) { .hero-section__title { font-size: clamp(4.5rem, 8vw, 6rem); margin-bottom: 2rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: clamp(5rem, 8vw, 8rem); } }
.hero-section__title em { font-style: italic; }

.hero-section__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  max-width: 20rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero-section__subtitle { font-size: 1.0625rem; max-width: 22rem; margin-bottom: 3rem; }
}

.hero-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .hero-section__cta {
    font-size: 0.75rem;
    padding: 1.25rem 3rem;
  }
}
.hero-section__cta:hover { background-color: rgba(221, 60, 140, 0.9); }

/* Wave divider */
.hero-section__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  pointer-events: none;
}
.hero-section__wave svg {
  width: 100%;
  height: 60px;
}
@media (min-width: 768px) { .hero-section__wave svg { height: 100px; } }

/* Scroll arrow */
.hero-section__scroll-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 20;
  color: rgba(221, 60, 140, 0.5);
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .hero-section__scroll-arrow { bottom: 2rem; right: 2.5rem; }
}
.hero-section__scroll-arrow:hover { color: var(--color-primary); }

/* ============================================================
   PROMISE SECTION
   ============================================================ */
.promise-section {
  position: relative;
  z-index: 10;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}
.promise-section__inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .promise-section__inner { padding-top: 6rem; padding-bottom: 6rem; }
}
.promise-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .promise-section__header { margin-bottom: 5rem; } }
.promise-section__label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.promise-section__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 48rem;
  margin: 0 auto;
}

.promise-section__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3rem;
  position: relative;
}
@media (min-width: 768px) { .promise-section__pillars { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.promise-section__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.promise-section__pillar--bordered {
  border-left: none;
}
@media (min-width: 768px) {
  .promise-section__pillar--bordered { border-left: 1px solid rgba(224,213,219,0.6); }
}
.promise-section__pillar-icon {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-section__pillar-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .promise-section__pillar-text { font-size: 1.125rem; } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  position: relative;
  z-index: 10;
  background: var(--color-background);
}
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-section__inner {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    padding-top: 2.5rem;
    padding-bottom: 8rem;
  }
}

/* Image column */
.about-section__image-col { position: relative; }
.about-section__image-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
  width: 100%;
}
.about-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.8s var(--ease-spring);
}
.about-section__image:hover { transform: scale(1.03); }
.about-section__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-secondary);
}
.about-section__name-card {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
}
@media (min-width: 768px) { .about-section__name-card { display: block; } }
.about-section__name {
  display: block;
  font-size: 1.5rem;
  font-style: italic;
}
.about-section__role {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-top: 0.25rem;
}

/* Content column */
.about-section__content-col { }
@media (min-width: 768px) { .about-section__content-col { padding-left: 1.5rem; } }
@media (min-width: 1024px) { .about-section__content-col { padding-left: 2.5rem; } }
.about-section__label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.about-section__title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.about-section__text {
  color: var(--color-muted-foreground);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 36rem;
}
.about-section__text p { line-height: 1.75; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  position: relative;
  z-index: 10;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 1.25rem 0;
}
.marquee-strip__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.marquee-strip__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-strip__item {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 2rem;
}
@media (min-width: 768px) { .marquee-strip__item { font-size: 1.875rem; } }
.marquee-strip__star {
  margin-left: 2rem;
  color: rgba(221,60,140,0.6);
  flex-shrink: 0;
}

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
  position: relative;
  z-index: 10;
  background: var(--color-background);
}
.shop-section__inner {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .shop-section__inner { padding-top: 5rem; padding-bottom: 6rem; }
}
.shop-section__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .shop-section__header {
    grid-template-columns: 8fr 4fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }
}
.shop-section__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.shop-section__description {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .shop-section__description { text-align: right; }
}

/* Controls row */
.shop-section__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Category pills */
.shop-section__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(224,213,219,0.6);
  border-radius: var(--radius-full);
  padding: 0.375rem;
}
.shop-section__cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  transition: background-color 0.3s ease, color 0.3s ease;
  color: var(--color-muted-foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
}
@media (min-width: 768px) { .shop-section__cat-pill { padding: 0.5rem 1.25rem; } }
.shop-section__cat-pill:hover { color: var(--color-foreground); }
.shop-section__cat-pill.is-active {
  background: var(--color-foreground);
  color: var(--color-background);
}
.shop-section__cat-pill.is-active .shop-section__cat-count { color: rgba(255,255,255,0.7); }
.shop-section__cat-count {
  font-size: 0.625rem;
  color: rgba(121,108,115,0.7);
  vertical-align: super;
}

/* Filter controls */
.shop-section__filter-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.shop-section__sort-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted-foreground);
  letter-spacing: 0.05em;
  cursor: default;
}

/* Product grid */
.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
}

/* Product card wrapper */
.theme-product-card-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Product card */
.theme-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.theme-product-card__image-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  margin-bottom: 1rem;
  text-decoration: none;
}
.theme-product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-secondary);
  border-radius: var(--radius-2xl);
}
.theme-product-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.4, 0.25, 1);
}
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.08); }

/* Gold sweep on hover */
.theme-product-card__sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(221,60,140,0.18), transparent);
  transform: translateX(-100%);
  pointer-events: none;
  transition: transform 1s ease;
}
.theme-product-card:hover .theme-product-card__sweep { transform: translateX(100%); }

/* Hover overlay */
.theme-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,36,40,0);
  transition: background-color 0.5s ease;
  pointer-events: none;
}
.theme-product-card:hover .theme-product-card__overlay { background: rgba(42,36,40,0.05); }

/* Badge */
.theme-product-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-foreground);
  color: var(--color-background);
}
@media (min-width: 768px) {
  .theme-product-card__badge { top: 0.75rem; left: 0.75rem; }
}

.theme-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.theme-product-card__name-link { text-decoration: none; }
.theme-product-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  transition: color 0.3s ease, transform 0.3s ease;
  font-family: var(--font-body);
  overflow-wrap: break-word;
  word-break: break-word;
}
.theme-product-card:hover .theme-product-card__name { color: var(--color-primary); }
.theme-product-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted-foreground);
  font-family: var(--font-body);
}

/* Empty state */
.shop-section__empty { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }

/* Show more */
.shop-section__show-more { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   QUOTE / VIDEO SECTION
   ============================================================ */
.quote-section {
  position: relative;
  z-index: 10;
  overflow: hidden;
  min-height: 28rem;
}
.quote-section__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.quote-section__video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #3d1028, #2a0a1a, #1a0510);
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.quote-section__video-fallback.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.quote-section__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.quote-section__video.is-loaded { opacity: 1; }
.quote-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: hsla(330, 10%, 15%, 0.6);
  pointer-events: none;
}
.quote-section__content {
  position: relative;
  z-index: 3;
  padding-top: 8rem;
  padding-bottom: 8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .quote-section__content { padding-top: 10rem; padding-bottom: 10rem; }
}
@media (min-width: 1024px) {
  .quote-section__content { padding-top: 13rem; padding-bottom: 13rem; }
}
.quote-section__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.quote-section__title {
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 64rem;
  margin: 0 auto 2.5rem;
}
.quote-section__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.quote-section__cta:hover {
  background: #ffffff;
  color: var(--color-foreground);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--color-background);
  border-top: 1px solid rgba(224,213,219,0.6);
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .contact-section__inner { padding-top: 8rem; padding-bottom: 8rem; }
}
@media (min-width: 1024px) {
  .contact-section__inner { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

/* Info column */
.contact-section__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-section__label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.contact-section__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.contact-section__desc {
  color: var(--color-muted-foreground);
  line-height: 1.75;
  max-width: 28rem;
  margin-bottom: 3rem;
}
.contact-section__links {
  padding-top: 2rem;
  border-top: 1px solid rgba(224,213,219,0.6);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section__link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-foreground);
  transition: color 0.3s ease;
  text-decoration: none;
}
.contact-section__link:hover { color: var(--color-primary); }
.contact-section__link:hover .contact-section__link-icon,
.contact-section__link:hover .contact-section__arrow-icon { color: var(--color-primary); }
.contact-section__link-inner { display: flex; align-items: flex-start; gap: 1rem; }
.contact-section__link-icon {
  margin-top: 0.25rem;
  color: var(--color-muted-foreground);
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.contact-section__link-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-bottom: 0.25rem;
}
.contact-section__link-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  display: block;
}
.contact-section__arrow-icon {
  margin-top: 0.25rem;
  color: var(--color-muted-foreground);
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.contact-section__divider { height: 1px; background: rgba(224,213,219,0.4); }

/* Form column */
.contact-section__form-col { display: flex; min-height: 0; }
.contact-section__form {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(224, 213, 219, 0.6);
  border-radius: 1rem;
  padding: 2rem;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .contact-section__form { padding: 2.5rem; }
}

/* Floating label fields (matches Lovable ContactSection) */
.contact-section__field {
  position: relative;
}
.contact-section__field--textarea {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.contact-section__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(224, 213, 219, 0.6);
  padding: 1.75rem 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-body);
  color: var(--color-foreground);
  outline: none;
  box-shadow: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-section__input::placeholder {
  color: transparent;
}
.contact-section__input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: none;
}
.contact-section__textarea {
  resize: none;
  flex: 1;
  min-height: 7rem;
}
.contact-section__field-label {
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  font-family: var(--font-body);
  transition: all 0.2s ease;
  pointer-events: none;
}
.contact-section__input:placeholder-shown + .contact-section__field-label {
  top: 1.75rem;
  font-size: 0.875rem;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(121, 108, 115, 0.7);
}
.contact-section__input:focus + .contact-section__field-label,
.contact-section__input:not(:placeholder-shown) + .contact-section__field-label {
  top: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.contact-section__form-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-section__replies {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  font-family: var(--font-body);
}
.contact-section__submit {
  border-radius: var(--radius-full);
  padding: 0.625rem 1.75rem;
  min-height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}
.contact-section__submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success state */
.contact-section__form-success {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(224,213,219,0.6);
  border-radius: var(--card-radius);
  padding: 3rem;
}
.contact-section__success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}
.contact-section__success-title { font-size: 1.875rem; margin-bottom: 0.75rem; }
.contact-section__success-message { color: var(--color-muted-foreground); max-width: 22rem; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-background);
}
.site-footer__inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .site-footer__grid { gap: 3rem; }
}

.site-footer__logo-link { display: inline-flex; align-items: center; }
.site-footer__logo.site-logo-img {
  height: 3rem;
  width: auto;
  max-height: none;
  transition: transform 0.5s var(--ease-smooth);
}
@media (min-width: 1024px) {
  .site-footer__logo.site-logo-img { height: 3.5rem; }
}
.site-footer__logo-link:hover .site-logo-img { transform: scale(1.1); }
.site-footer__brand-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  max-width: 22rem;
  line-height: 1.7;
}
.site-footer__col-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.site-footer__brand { margin-bottom: 0; }
.site-footer__nav-list,
.theme-footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__nav-list li a,
.site-footer__nav-list li button,
.theme-footer-nav-list li a {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  font-family: var(--font-body);
}
.site-footer__nav-list li a:hover,
.site-footer__nav-list li button:hover,
.theme-footer-nav-list li a:hover { color: var(--color-foreground); }
.site-footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}
.site-footer__contact-link:hover { color: var(--color-foreground); }
.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copy { font-size: 0.75rem; color: var(--color-muted-foreground); }
.site-footer__built-by { font-size: 0.75rem; color: var(--color-muted-foreground); transition: color 0.2s; }
.site-footer__built-by:hover { color: var(--color-foreground); }

/* ============================================================
   CART DRAWER
   ============================================================ */
#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,36,40,0.2);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

#theme-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 28rem;
  background: var(--color-background);
  z-index: 200;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-spring);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title { font-size: 1.125rem; font-weight: 700; }
.cart-drawer__close {
  padding: 0.25rem;
  color: var(--color-foreground);
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
}
.cart-drawer__close:hover { opacity: 1; }

/* Empty state */
.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  gap: 0.5rem;
}
.cart-drawer__empty-icon { color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.cart-drawer__empty-text { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

/* Items */
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cart-drawer__item {
  display: flex;
  gap: 1rem;
}
.cart-drawer__item-image {
  width: 5rem;
  height: 6rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-secondary);
  display: block;
}
.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-drawer__item-info { flex: 1; min-width: 0; }
.cart-drawer__item-name {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.125rem;
  transition: opacity 0.2s;
}
.cart-drawer__item-name:hover { opacity: 0.7; }
.cart-drawer__item-price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.cart-drawer__item-variations { font-size: 0.75rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.cart-drawer__item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.cart-drawer__qty-btn {
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.cart-drawer__qty { font-size: 0.875rem; min-width: 1.5rem; text-align: center; }
.cart-drawer__remove {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.cart-drawer__remove:hover { color: var(--color-foreground); }

/* Footer */
.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.cart-drawer__subtotal-label { color: var(--color-muted-foreground); }
.cart-drawer__subtotal-value { font-weight: 500; }
.cart-drawer__shipping { font-size: 0.75rem; color: var(--color-muted-foreground); }
.cart-drawer__checkout-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   WOOCOMMERCE: ADD TO CART BUTTON OVERRIDES
   ============================================================ */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--color-primary) !important;
}

/* Hide "View cart" after AJAX add */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* Button loading state */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* ============================================================
   WOOCOMMERCE: NOTICES
   ============================================================ */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error { display: block !important; }

/* WC notices styling for archive/shop page */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  list-style: none;
}
.woocommerce-notices-wrapper .woocommerce-error {
  background: #FEE2E2;
  border: 1px solid #FECACA;
  border-radius: var(--card-radius);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #991B1B;
  margin-bottom: 1.5rem;
  list-style: none;
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product .theme-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .single-product .theme-product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }

.single-product__back {
  padding: 1.5rem 0;
}
.single-product__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}
.single-product__back-link:hover { color: var(--color-foreground); }

.single-product__main-image {
  aspect-ratio: 3/4;
  background: var(--color-secondary);
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: var(--radius-2xl);
}
.single-product__main-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.single-product__thumb-btn {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  opacity: 0.6;
  transition: border-color 0.2s, opacity 0.2s;
  cursor: pointer;
  padding: 0;
}
.single-product__thumb-btn.is-active {
  border-color: var(--color-primary);
  opacity: 1;
}
.single-product__thumb-btn:hover { opacity: 1; }
.single-product__thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

.single-product__info { }
@media (min-width: 1024px) { .single-product__info { padding-top: 2.5rem; } }

.single-product__cats {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.single-product__cats a { color: var(--color-muted-foreground); transition: color 0.2s; }
.single-product__cats a:hover { color: var(--color-primary); }

.single-product__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.single-product__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.single-product__stock--out {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-foreground);
  color: var(--color-background);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.single-product__description {
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
  white-space: pre-line;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Quantity + Add to Cart */
.theme-add-to-cart-area {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: center;
}
.theme-quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.theme-qty-minus,
.theme-qty-plus {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  color: var(--color-foreground);
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
  padding: 0.75rem 1rem;
  min-width: 3rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: none;
  outline: none;
  background: transparent;
  color: var(--color-foreground);
  -moz-appearance: textfield;
}
.theme-qty-input::-webkit-inner-spin-button,
.theme-qty-input::-webkit-outer-spin-button { appearance: none; }

.single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

/* Details section */
.single-product__details {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}
.single-product__details-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.single-product__details .woocommerce-product-details__short-description {
  overflow-wrap: break-word;
  word-break: break-word;
}
.single-product__details ul { display: flex; flex-direction: column; gap: 0.5rem; }
.single-product__details li {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.single-product__details li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Variable product form */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td {
  display: block;
  width: 100%;
}
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.single-product .variations select {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: transparent;
  color: var(--color-foreground);
  outline: none;
  cursor: pointer;
}
.single-product .variations select:focus { border-color: var(--color-primary); }

/* Related products */
.single-product__related {
  padding: 5rem 0;
  border-top: 1px solid var(--color-border);
}
.single-product__related-title { font-size: 1.25rem; margin-bottom: 2.5rem; }
.single-product__related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1024px) {
  .single-product__related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Single variation wrap */
.single_variation_wrap .theme-add-to-cart-area { margin-top: 1rem; }

/* ============================================================
   WOOCOMMERCE SHOP / ARCHIVE PAGE
   ============================================================ */
.woocommerce-shop-page { padding-top: var(--header-height); }
.archive-product-header { padding: 3rem 0 2rem; }
.archive-product-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}
.archive-product-grid {
  padding-bottom: 4rem;
}
.archive-no-products { padding: 3rem 0; color: var(--color-muted-foreground); }

/* WC pagination */
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
  font-family: var(--font-body);
}
.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  transition: background-color 0.2s, color 0.2s;
}
.woocommerce-pagination .page-numbers:hover { background: var(--color-secondary); }
.woocommerce-pagination .page-numbers.current {
  background: var(--color-foreground);
  color: var(--color-background);
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
body.woocommerce-checkout .site-main {
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout { display: block; }

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--checkout-gap);
    align-items: start;
  }
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
  width: 100%;
  max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important;
  max-width: none !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 0.5rem !important;
  font-family: var(--font-body) !important;
  color: var(--color-foreground) !important;
  background: var(--color-background) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
  border-color: var(--color-primary) !important;
  outline: none !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--color-card);
  border-radius: var(--card-radius);
  padding: var(--section-padding);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: uppercase !important;
  padding: var(--btn-padding) !important;
  border: none !important;
}
body.woocommerce-checkout .page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  padding: 3rem 0 2rem;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order { font-family: var(--font-body); max-width: 800px; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding-bottom: 1rem;
  color: var(--color-foreground);
}
body.theme-thankyou-page .woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  background: var(--color-secondary);
  padding: 1.5rem;
  border-radius: var(--card-radius);
  margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview li {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
body.theme-thankyou-page .woocommerce-order-overview li strong { color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order-details table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
body.theme-thankyou-page .woocommerce-order-details table tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details table tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}
body.theme-thankyou-page .woocommerce-customer-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  max-width: 360px;
  overflow-wrap: break-word;
}
.thankyou-content { max-width: 800px; margin: 0 auto; padding: 3rem 0; }

/* ============================================================
   INNER PAGES (non-homepage)
   ============================================================ */
.theme-inner-page { padding-top: var(--header-height); }
.entry-content { padding: 3rem 0 4rem; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  padding: 3rem 0 2rem;
  color: var(--color-foreground);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.theme-404-content {
  text-align: center;
  padding: 8rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.theme-404-code {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.3;
  font-weight: 700;
}
.theme-404-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
.theme-404-message { color: var(--color-muted-foreground); max-width: 30rem; }

/* ============================================================
   CUSTOMIZER CONTROLS CSS
   (duplicated in customizer-controls.css for panel use)
   ============================================================ */
.single-product-not-found {
  text-align: center;
  padding: 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .text-gold { animation: none !important; }
  .animate-marquee { animation: none !important; }
  .animate-bounce { animation: none !important; }
  .anim-fade-up, .anim-slide-left, .anim-slide-right,
  .anim-scale-in, .anim-fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .theme-product-card { transition: none; }
  .theme-product-card__sweep { display: none; }
}
