/* ==========================================================
   All Glammed Up — theme.css
   Author: The Free Website Guys
   ========================================================== */

/* ---- GOOGLE FONTS imported in functions.php via wp_enqueue_style ---- */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand palette (overridden by Customizer inline style) */
  --color-primary:    #e2368c;
  --color-background: #fcf3f5;
  --color-foreground: #39222e;
  --color-gold:       #e6b033;
  --color-nopal:      #c63968;

  /* Derived tokens */
  --color-rosa:         hsl(345 80% 72%);
  --color-marigold:     hsl(30 75% 78%);
  --color-teal:         hsl(330 60% 45%);
  --color-lilac:        hsl(320 55% 80%);
  --color-indigo:       hsl(320 35% 30%);
  --color-butter:       hsl(345 50% 93%);
  --color-blush-deep:   hsl(345 55% 88%);
  --color-secondary:    hsl(345 45% 90%);
  --color-muted:        hsl(340 25% 88%);
  --color-muted-fg:     hsl(330 12% 40%);
  --color-border:       hsl(340 30% 86%);
  --color-card:         hsl(345 50% 94%);
  --color-bling:        hsl(330 80% 70%);
  --color-champagne:    hsl(40 60% 82%);
  --color-gold-light:   hsl(45 95% 80%);
  --color-gold-deep:    hsl(35 70% 42%);
  --color-primary-fg:   hsl(345 60% 98%);
  --color-surface:      hsl(345 50% 94%);

  /* Gradients */
  --gradient-gold:      linear-gradient(100deg, hsl(42 85% 55%) 0%, hsl(45 95% 78%) 35%, hsl(48 100% 90%) 50%, hsl(45 95% 78%) 65%, hsl(42 85% 55%) 100%);
  --gradient-rose-gold: linear-gradient(135deg, hsl(330 75% 65%) 0%, hsl(42 80% 70%) 50%, hsl(45 95% 82%) 100%);
  --gradient-blush-gold:linear-gradient(135deg, hsl(345 70% 90%) 0%, hsl(45 95% 88%) 50%, hsl(330 70% 85%) 100%);
  --gradient-bling:     linear-gradient(120deg, hsl(330 80% 65%) 0%, hsl(42 85% 65%) 50%, hsl(330 80% 65%) 100%);

  /* Shadows */
  --shadow-soft:     0 4px 20px -4px hsl(330 50% 30% / 0.10);
  --shadow-elevated: 0 8px 40px -8px hsl(330 50% 30% / 0.18);
  --shadow-gold:     0 14px 40px -16px hsl(42 80% 50% / 0.55);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  /* Spacing */
  --radius:        0.75rem;
  --logo-height:   60px;

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

  /* Button tokens */
  --btn-height:          3.5rem;
  --btn-padding:         1rem 2.5rem;
  --btn-radius:          9999px;
  --btn-font-size:       0.75rem;
  --btn-font-weight:     600;
  --btn-letter-spacing:  0.22em;
  --btn-text-transform:  uppercase;
  --color-button-text:   var(--color-foreground);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  padding: 0;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.1;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* GLOBAL img rule with cover exclusions (Section 15.1) */
img:not(.hero-section__bg-img):not(.owner-portrait__img):not(.theme-product-card__img):not(.service-tile__img):not(.theme-product-main-img):not(.mobile-band__img):not(.cta-band__img):not(.portfolio-marquee__img):not(.portfolio-lightbox__img):not(.cart-drawer__item-img-link img):not(.theme-product-thumbnail img) {
  max-width: 100%;
  height: auto;
}
.hero-section__bg-img,
.owner-portrait__img,
.theme-product-card__img,
.service-tile__img,
.theme-product-main-img,
.mobile-band__img,
.cta-band__img,
.portfolio-marquee__img,
.portfolio-lightbox__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   FONTS
   ============================================================ */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container-wide {
  width: 100%;
  max-width: 80rem;
  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; }
}

.hidden-mobile { display: none; }
@media (min-width: 1024px) {
  .hidden-mobile { display: flex; }
  .show-mobile   { display: none !important; }
}

.scroll-mt-24 { scroll-margin-top: 6rem; }

/* Gold divider */
.gold-divider {
  height: 1px;
  background-image: var(--gradient-gold);
  background-size: 200% 100%;
  animation: goldShimmer 8s linear infinite;
  border: 0;
  display: block;
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes goldShimmer {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50%       { opacity: 0.9;  transform: scale(1.06); }
}
@keyframes sparkleFlare {
  0%, 88%, 100% { filter: brightness(1) saturate(1); }
  92%           { filter: brightness(1.9) saturate(1.3); transform: scale(1.35); }
  96%           { filter: brightness(1.3) saturate(1.1); }
}
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* sparkle animation classes */
.sparkle-twinkle {
  animation: sparkleTwinkle 3s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, opacity, filter;
}
.sparkle-flare {
  animation: sparkleTwinkle 3s ease-in-out infinite, sparkleFlare 7s ease-in-out infinite;
}
.sparkle-float {
  animation: sparkleFloat 5s ease-in-out infinite;
  will-change: transform;
}

/* Sparkle elements */
.sparkle, .geo-sparkle {
  display: inline-block;
  pointer-events: none;
  position: absolute;
}
.geo-sparkle__inner {
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; transform: none; transition: none; }
  .sparkle-twinkle, .sparkle-flare, .sparkle-float, .gold-shimmer {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   BTN-GLAM (glamour shimmer CTA)
   ============================================================ */
.btn-glam {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.btn-glam::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    hsl(45 95% 88% / 0.35) 45%,
    hsl(45 95% 95% / 0.55) 50%,
    hsl(45 95% 88% / 0.35) 55%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0s;
}
.btn-glam:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px -12px hsl(330 75% 50% / 0.5), 0 0 0 1px hsl(42 80% 60% / 0.3);
}
.btn-glam:hover::before {
  transform: translateX(120%);
  transition: transform 0.7s var(--ease-spring);
}
.btn-glam:active { transform: scale(0.98); }

/* Base button styles */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--btn-radius);
  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);
  padding: var(--btn-padding);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.theme-btn--primary {
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  box-shadow: var(--shadow-gold);
}
.theme-btn--outline {
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent);
}
.theme-btn--outline:hover { border-color: var(--color-foreground); }
.theme-btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  min-height: 2.75rem;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  position: relative;
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 30%, transparent);
}
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.625rem 0;
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .announcement-bar__inner { gap: 3rem; }
}
.announcement-bar__item { display: flex; align-items: center; gap: 0.5rem; }
.announcement-bar__icon { flex-shrink: 0; }
.announcement-bar__item--desktop { display: none; }
@media (min-width: 768px) {
  .announcement-bar__item--desktop { display: flex; }
}
.announcement-bar__close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.announcement-bar__close:hover { opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-background);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header__top-line {
  height: 1px;
  background: var(--color-border);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-background) 95%, transparent);
  backdrop-filter: blur(4px);
  border-bottom-color: color-mix(in srgb, var(--color-border) 60%, transparent);
}
.site-header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (min-width: 768px) {
  .site-header__nav { height: 6rem; }
}
.site-header__nav-left {
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.site-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.site-logo-img {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block !important;
  position: static !important;
  object-fit: contain;
  inset: auto;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-foreground);
  line-height: var(--logo-height);
}
.site-header__nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex: 1;
}
.site-header__right-links {
  align-items: center;
  gap: 2rem;
}
.theme-nav-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
  letter-spacing: normal;
  cursor: pointer;
  transition: color 0.2s;
  text-transform: none;
}
.theme-nav-link:hover, .theme-nav-link:focus { color: var(--color-primary); }
.site-header__cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent);
  transition: all 0.2s;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.site-header__cart-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.site-header__cart-icon {
  width: 1rem;
  height: 1rem;
}
.theme-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.125rem;
  height: 1.125rem;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 50%;
  background: var(--color-foreground);
  color: var(--color-background);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(25%, -25%);
  pointer-events: none;
}
.theme-cart-count:empty { display: none; }
.site-header__hamburger {
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
  margin-left: -0.5rem;
  flex-shrink: 0;
}
.site-header__mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  border-top: 1px solid transparent;
}
.site-header__mobile-menu.is-open {
  max-height: 30rem;
  border-top-color: color-mix(in srgb, var(--color-border) 60%, transparent);
}
.site-header__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}
.site-header__mobile-links .theme-nav-link {
  font-size: 0.875rem;
  text-align: left;
  padding: 0.5rem 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--color-blush-deep);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero-section {
    display: block;
    min-height: 80vh;
  }
}
@media (min-width: 1024px) {
  .hero-section { min-height: 88vh; }
}
.hero-section__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .hero-section__media {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
  }
}
.hero-section__overlay-side {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-blush-deep), color-mix(in srgb, var(--color-blush-deep) 55%, transparent), transparent);
}
@media (min-width: 768px) {
  .hero-section__overlay-side { display: block; }
}
.hero-section__overlay-bottom {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(to top, var(--color-blush-deep), transparent);
}
@media (min-width: 768px) {
  .hero-section__overlay-bottom {
    height: 6rem;
    background: linear-gradient(to top, var(--color-background), transparent);
  }
}
.hero-section__content {
  position: relative;
  padding: 2.5rem 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-section__content {
    padding: 7rem 2rem;
    min-height: 80vh;
  }
}
@media (min-width: 1024px) {
  .hero-section__content {
    padding: 8rem 2rem;
    min-height: 88vh;
  }
}
.hero-section__decorative {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-section__blob {
  position: absolute;
  top: 18%;
  right: 4%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: var(--gradient-bling);
  opacity: 0.25;
  filter: blur(3rem);
}
.hero-sparkle { position: absolute; }
.hero-sparkle--1 { top: 10%; right: 8%; }
.hero-sparkle--2 { top: 32%; right: 22%; }
.hero-sparkle--3 { top: 22%; left: 44%; }
.hero-sparkle--4 { bottom: 18%; right: 14%; }
.hero-sparkle--5 { top: 60%; left: 38%; }
.hero-section__copy {
  max-width: 36rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-section__copy { width: 50%; }
}

/* Hero eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow__line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gradient-gold);
}
.hero-eyebrow__text { color: var(--color-primary); }

/* Hero title */
.hero-title {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.02;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-title__gradient {
  font-style: italic;
  background: linear-gradient(135deg, hsl(330 80% 60%) 0%, hsl(335 75% 70%) 50%, hsl(340 70% 78%) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Hero subtitle */
.hero-subtitle {
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 28rem;
}
@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.125rem; }
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-btn--primary {
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  border-radius: var(--btn-radius);
  padding: 1rem 2.5rem;
  box-shadow: var(--shadow-gold);
  border: none;
}
.hero-btn--ghost {
  background: transparent;
  color: var(--color-foreground);
  border: none;
  gap: 0.5rem;
}
.hero-btn--ghost:hover { color: var(--color-primary); }

/* Trust strip */
.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 36rem;
  border-left: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
  gap: 0.5rem;
}
.hero-trust-item svg { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.hero-trust-item span {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  line-height: 1.3;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--color-butter);
  position: relative;
  overflow: hidden;
}
.about-section__inner {
  padding: 5rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .about-section__inner { padding: 7rem 2rem; }
}
.about-section__content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.about-section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-nopal);
  margin-bottom: 1rem;
}
.about-section__title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .about-section__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .about-section__title { font-size: 3.75rem; }
}
.about-section__title-italic {
  font-style: italic;
  background: var(--gradient-rose-gold);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.about-section__divider {
  max-width: 6rem;
  margin: 0 auto 2rem;
}
.about-section__body {
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-section__body--muted {
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  font-size: 1rem;
}
.about-section__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.about-section__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: color 0.2s;
}
.about-section__social-link:hover { color: var(--color-primary); }

/* GeoSparkle positions within about */
.about-geo { position: absolute; }
.about-geo--1 { top: 3rem; left: 6%; }
.about-geo--2 { top: 6rem; right: 8%; }
.about-geo--3 { bottom: 4rem; left: 10%; }
.about-geo--4 { bottom: 6rem; right: 12%; }

/* ============================================================
   OWNER SECTION
   ============================================================ */
.owner-section { background: color-mix(in srgb, var(--color-rosa) 15%, transparent); }
.owner-section__inner {
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 5rem 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .owner-section__inner { padding: 7rem 2rem; }
}
@media (min-width: 1024px) {
  .owner-section__inner {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    padding: 8rem 2rem;
  }
}

/* Portrait */
.owner-portrait {
  position: relative;
  width: 100%;
}
.owner-portrait__frame {
  padding: 3px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-champagne), var(--color-gold));
  box-shadow: 0 30px 80px -30px color-mix(in srgb, var(--color-foreground) 35%, transparent);
}
.owner-portrait__mat {
  padding: 0.75rem;
  background: var(--color-background);
}
@media (min-width: 768px) {
  .owner-portrait__mat { padding: 1rem; }
}
.owner-portrait__hairline {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.owner-portrait__corner {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
}
.owner-portrait__corner--tl { top: -0.75rem; left: -0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); border-left: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); }
.owner-portrait__corner--tr { top: -0.75rem; right: -0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); border-right: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); }
.owner-portrait__corner--bl { bottom: -0.75rem; left: -0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); border-left: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); }
.owner-portrait__corner--br { bottom: -0.75rem; right: -0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); border-right: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent); }
.owner-portrait__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}
.owner-portrait__caption .font-display {
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
}

/* Owner text */
.owner-section__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 36rem;
}
@media (min-width: 1024px) {
  .owner-section__text { padding-left: 1.5rem; }
}
.owner-section__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.owner-section__eyebrow-line {
  height: 1px;
  width: 2.5rem;
  background: var(--gradient-gold);
  flex-shrink: 0;
}
.owner-section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.owner-section__name {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .owner-section__name { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .owner-section__name { font-size: 4.5rem; }
}
.owner-section__surname {
  font-style: italic;
  background: linear-gradient(135deg, hsl(330 80% 60%) 0%, hsl(335 75% 70%) 50%, hsl(340 70% 78%) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.owner-section__quote {
  font-size: 1.5rem;
  font-style: italic;
  color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
  line-height: 1.4;
  margin: 0 0 2.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid color-mix(in srgb, var(--color-gold) 60%, transparent);
}
@media (min-width: 768px) {
  .owner-section__quote { font-size: 1.75rem; }
}
.owner-section__bio {
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.owner-section__dropcap {
  float: left;
  font-size: 3.75rem;
  line-height: 0.85;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--color-primary);
}
.owner-section__cta-row { margin-top: 2rem; }
.owner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  border-radius: var(--btn-radius);
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  border: none;
}
.owner-section__sig-row {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.owner-section__sig {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
}
.owner-section__role {
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-primary) 80%, transparent);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}
.services-section__inner {
  padding: 5rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .services-section__inner { padding: 7rem 2rem; }
}
.services-section__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .services-section__head { margin-bottom: 4rem; }
}
.services-section__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-nopal);
  margin-bottom: 1rem;
}
.services-section__title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .services-section__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .services-section__title { font-size: 3.75rem; }
}
.services-section__rule {
  display: inline-block;
  width: 5rem;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 9999px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); }
}

.service-tile {
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.service-tile__image-wrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: var(--color-butter);
  transition: transform 0.5s ease;
}
.service-tile:hover .service-tile__image-wrap {
  transform: translateY(-4px);
}
.service-tile__image-wrap--soon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 15%, transparent), color-mix(in srgb, var(--color-lilac) 30%, transparent));
}
.service-tile__img {
  transition: transform 0.7s ease;
}
.service-tile:hover .service-tile__img { transform: scale(1.1); }
.service-tile__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: var(--color-primary-fg);
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  z-index: 2;
}
.service-tile__title {
  font-size: 1.25rem;
  color: var(--color-foreground);
  margin-bottom: 0.375rem;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .service-tile__title { font-size: 1.5rem; }
}
.service-tile:hover .service-tile__title { color: var(--color-primary); }
.service-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* GeoSparkle positions */
.services-geo { position: absolute; }
.services-geo--1 { top: 4rem; right: 5%; }
.services-geo--2 { top: 8rem; left: 7%; }
.services-geo--3 { bottom: 5rem; right: 10%; }

/* ============================================================
   MOBILE GLAM BAND
   ============================================================ */
.mobile-band {
  background: color-mix(in srgb, var(--color-blush-deep) 60%, transparent);
  position: relative;
  overflow: hidden;
}
.mobile-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .mobile-band__inner { padding: 6rem 2rem; }
}
@media (min-width: 1024px) {
  .mobile-band__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 2rem;
  }
}
.mobile-band__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.mobile-band__title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .mobile-band__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .mobile-band__title { font-size: 3.75rem; }
}
.mobile-band__subtitle {
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 28rem;
}
@media (min-width: 768px) {
  .mobile-band__subtitle { font-size: 1.125rem; }
}
.mobile-band__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  border-radius: var(--btn-radius);
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  border: none;
  margin-bottom: 1.25rem;
}
.mobile-band__note {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  letter-spacing: 0.05em;
}
.mobile-band__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mobile-band__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 1rem;
}
.mobile-band__img-wrap--offset { margin-top: 2rem; }
.mobile-geo { position: absolute; }
.mobile-geo--1 { top: 2.5rem; right: 6%; }
.mobile-geo--2 { bottom: 3rem; left: 8%; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  background: color-mix(in srgb, var(--color-rosa) 15%, transparent);
  position: relative;
  overflow: hidden;
}
.pricing-section__inner {
  padding: 5rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .pricing-section__inner { padding: 7rem 2rem; }
}
.pricing-section__head {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}
.pricing-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.pricing-section__title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .pricing-section__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .pricing-section__title { font-size: 3.75rem; }
}
.pricing-section__title-italic {
  font-style: italic;
  background: var(--gradient-rose-gold);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.pricing-section__rule {
  display: block;
  width: 6rem;
  height: 1px;
  background: var(--gradient-gold);
  margin: 1.25rem auto 0;
}
.pricing-section__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
}

.pricing-card {
  background: var(--color-background);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.5s ease;
}
@media (min-width: 768px) {
  .pricing-card { padding: 2.5rem; }
}
.pricing-card:hover { box-shadow: var(--shadow-elevated); }
.pricing-card__title {
  font-size: 1.875rem;
  color: var(--color-foreground);
  margin-bottom: 1rem;
}
.pricing-card__divider { margin-bottom: 1.5rem; }
.pricing-card__list { display: flex; flex-direction: column; gap: 1rem; }
.pricing-card__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.pricing-card__item-name { color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.pricing-card__item-price {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, var(--color-primary), var(--color-bling), var(--color-primary));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  flex-shrink: 0;
}
.pricing-price-sparkle {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
}

.pricing-geo { position: absolute; }
.pricing-geo--1 { top: 3.5rem; left: 5%; }
.pricing-geo--2 { top: 7rem; right: 7%; }
.pricing-geo--3 { bottom: 5rem; left: 8%; }
.pricing-geo--4 { bottom: 3.5rem; right: 6%; }
.pricing-sparkle { position: absolute; }
.pricing-sparkle--1 { top: -0.5rem; right: 30%; }
.pricing-sparkle--2 { top: 2rem; left: 28%; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section { background: var(--color-background); }
.portfolio-section__inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .portfolio-section__inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.portfolio-section__header {
  padding: 0 0 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .portfolio-section__header { padding-bottom: 3.5rem; }
}
.portfolio-section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-nopal);
  margin-bottom: 0.75rem;
}
.portfolio-section__title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .portfolio-section__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .portfolio-section__title { font-size: 3.75rem; }
}
.portfolio-section__rule {
  display: inline-block;
  width: 5rem;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 9999px;
}

/* Marquee */
.portfolio-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.portfolio-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
@media (min-width: 768px) {
  .portfolio-marquee__track { gap: 1.5rem; }
}
.portfolio-marquee:hover .portfolio-marquee__track {
  animation-play-state: paused;
}

.portfolio-marquee__item {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 50px -25px color-mix(in srgb, var(--color-foreground) 40%, transparent);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: box-shadow 0.5s ease;
}
.portfolio-marquee__item:hover { box-shadow: var(--shadow-soft); }
.portfolio-marquee__item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.portfolio-marquee__img {
  position: static;
  width: 14rem;
  height: 18rem;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
@media (min-width: 768px) {
  .portfolio-marquee__img { width: 16rem; height: 20rem; }
}
.portfolio-marquee__item:hover .portfolio-marquee__img { transform: scale(1.05); }
.portfolio-marquee__overlay {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 80%, transparent), color-mix(in srgb, var(--color-foreground) 30%, transparent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-marquee__item:hover .portfolio-marquee__overlay { opacity: 1; }
.portfolio-marquee__label {
  display: block;
  color: var(--color-background);
  font-size: 1.125rem;
  line-height: 1.3;
}

/* Lightbox */
.portfolio-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.portfolio-lightbox.is-open { display: flex; }
.portfolio-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-foreground) 95%, transparent);
  cursor: pointer;
}
.portfolio-lightbox__panel {
  position: relative;
  max-width: 96vw;
  z-index: 1;
  background: color-mix(in srgb, var(--color-foreground) 95%, transparent);
}
@media (min-width: 768px) {
  .portfolio-lightbox__panel { max-width: 64rem; }
}
.portfolio-lightbox__img {
  position: static;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
}
.portfolio-lightbox__close,
.portfolio-lightbox__arrow {
  position: absolute;
  z-index: 2;
  background: color-mix(in srgb, var(--color-background) 90%, transparent);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.portfolio-lightbox__close:hover,
.portfolio-lightbox__arrow:hover {
  background: var(--color-background);
}
.portfolio-lightbox__close { top: 0.75rem; right: 0.75rem; }
.portfolio-lightbox__arrow--prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.portfolio-lightbox__arrow--next { right: 0.75rem; top: 50%; transform: translateY(-50%); }
.portfolio-lightbox__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 80%, transparent), transparent);
}
.portfolio-lightbox__counter {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-background) 80%, transparent);
  margin-bottom: 0.25rem;
}
.portfolio-lightbox__label {
  display: block;
  color: var(--color-background);
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .portfolio-lightbox__label { font-size: 1.5rem; }
}

/* Portfolio footer */
.portfolio-section__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 0 0;
}
.portfolio-section__tagline {
  font-style: italic;
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
  font-size: 1.125rem;
}
.portfolio-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--btn-radius);
  padding: 0.875rem 2.25rem;
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: color-mix(in srgb, var(--color-rosa) 20%, transparent);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .testimonials-section { padding: 6rem 0; }
}
.testimonials-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .testimonials-section__head { margin-bottom: 3.5rem; }
}
.testimonials-section__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.testimonials-section__title {
  font-size: 2.25rem;
  color: var(--color-foreground);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .testimonials-section__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .testimonials-section__title { font-size: 3.75rem; }
}
.testimonials-section__rule {
  display: inline-block;
  width: 3rem;
  height: 2px;
  background: var(--color-primary);
  border-radius: 9999px;
}

.testimonials-carousel {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.testimonials-carousel__track { position: relative; }
.testimonials-card {
  display: none;
  background: var(--color-background);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  animation: fadeIn 0.5s ease;
}
@media (min-width: 768px) {
  .testimonials-card { padding: 3.5rem; }
}
.testimonials-card.is-active { display: block; }
.testimonials-card__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-bling);
}
.testimonials-card__star {
  width: 1rem;
  height: 1rem;
  filter: drop-shadow(0 0 4px color-mix(in srgb, hsl(36 90% 70%) 70%, transparent));
}
.testimonials-card__quote {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-foreground);
}
@media (min-width: 768px) {
  .testimonials-card__quote { font-size: 1.5rem; }
}
.testimonials-card__byline {
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-nopal);
}
.testimonials-card__sep { opacity: 0.6; }

.testimonials-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonials-carousel__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-nopal);
  color: var(--color-nopal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.testimonials-carousel__arrow:hover {
  background: var(--color-nopal);
  color: var(--color-background);
}
.testimonials-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonials-carousel__dot {
  height: 0.5rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--color-nopal) 30%, transparent);
  width: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.testimonials-carousel__dot.is-active {
  width: 2rem;
  background: var(--color-nopal);
}

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}
.shop-section__inner {
  padding: 5rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .shop-section__inner { padding: 7rem 2rem; }
}
.shop-section__head { text-align: center; margin-bottom: 3rem; }
.shop-section__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-nopal);
  margin-bottom: 1rem;
}
.shop-section__title {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .shop-section__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .shop-section__title { font-size: 3.75rem; }
}
.shop-section__rule {
  display: inline-block;
  width: 5rem;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.shop-section__subtitle {
  max-width: 36rem;
  margin: 0 auto;
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.shop-section__subtitle p { margin: 0; }
.shop-geo { position: absolute; }
.shop-geo--1 { top: 3.5rem; left: 6%; }
.shop-geo--2 { top: 7rem; right: 7%; }
.shop-geo--3 { bottom: 4rem; right: 12%; }

/* Filters */
.shop-filters {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.shop-search-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
.shop-search-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
  pointer-events: none;
}
.shop-search {
  width: 100%;
  padding: 0.5rem 0 0.5rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  transition: border-color 0.2s;
  outline: none;
}
.shop-search:focus { border-bottom-color: var(--color-primary); }
.shop-search::placeholder { color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-cat-pills {
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.shop-cat-pill {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  color: var(--color-foreground);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.shop-cat-pill.is-active {
  background: var(--color-primary);
  color: var(--color-primary-fg);
  border-color: var(--color-primary);
}
.shop-cat-pill:hover:not(.is-active) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.shop-price-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.shop-price-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}
.shop-price-toggle:hover { color: var(--color-foreground); }
.shop-price-chevron { transition: transform 0.3s; }
.shop-price-toggle[aria-expanded="true"] .shop-price-chevron { transform: rotate(180deg); }
.shop-price-panel {
  width: 100%;
  max-width: 22rem;
  padding: 0.5rem 0;
}
.shop-price-range {
  display: flex;
  position: relative;
  width: 100%;
  gap: 0;
  margin-bottom: 0.75rem;
}
.shop-price-input {
  width: 50%;
  cursor: pointer;
  accent-color: var(--color-primary);
}
.shop-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}

/* Coming soon grid */
.shop-coming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .shop-coming-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}
.shop-coming-card__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-rosa) 40%, transparent), var(--color-butter), color-mix(in srgb, var(--color-lilac) 30%, transparent));
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-coming-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--color-foreground) 85%, transparent);
  color: var(--color-background);
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
}
.shop-coming-card__cart-btn {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary) 40%, transparent);
  color: var(--color-primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  opacity: 0.7;
}
.shop-coming-card__info { text-align: center; }
.shop-coming-card__category {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-nopal);
  margin-bottom: 0.25rem;
}
.shop-coming-card__title {
  font-size: 1.125rem;
  color: var(--color-foreground);
}
.shop-waitlist-cta {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.shop-waitlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  border-radius: var(--btn-radius);
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

/* WC Products grid */
.shop-products-grid,
.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .shop-products-grid,
  .theme-product-grid,
  .related-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
}
@media (min-width: 1024px) {
  .shop-products-grid,
  .theme-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 2.5rem;
  }
}
.woocommerce ul.products.columns-3,
.woocommerce ul.products.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.shop-load-more { text-align: center; margin-top: 3rem; }
.shop-empty-msg {
  text-align: center;
  padding: 5rem 0;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.shop-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.shop-load-more-btn:hover {
  background: var(--color-primary);
  color: var(--color-primary-fg);
}

/* ============================================================
   PRODUCT CARDS (theme-product-card)
   ============================================================ */
.theme-product-card-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.theme-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Overlay link (Pattern A) */
.theme-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
  display: block;
}
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__quick-add,
.theme-product-card .add_to_cart_button.theme-product-card__quick-add {
  pointer-events: auto;
  z-index: 3;
}

.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  background: var(--color-card);
}
.theme-product-card__image-wrapper img.theme-product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.theme-product-card:hover .theme-product-card__img { transform: scale(1.04); }
.theme-product-card__img.is-sold-out { opacity: 0.6; }

.theme-product-card__sold-out {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: var(--color-foreground);
  color: var(--color-background);
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
}

.theme-product-card__image-wrapper > .theme-product-card__quick-add {
  position: absolute !important;
  inset: auto 0.75rem 0.75rem auto !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background-color: color-mix(in srgb, var(--color-primary) 40%, transparent) !important;
  color: var(--color-primary-fg) !important;
  border: none !important;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 0 !important;
  line-height: 0 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.3s ease !important;
  z-index: 3;
  pointer-events: auto;
}
.theme-product-card__image-wrapper > .theme-product-card__quick-add svg {
  width: 1rem;
  height: 1rem;
}
.theme-product-card:hover .theme-product-card__image-wrapper > .theme-product-card__quick-add {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.theme-product-card__image-wrapper > .theme-product-card__quick-add:hover {
  background-color: var(--color-teal) !important;
  color: var(--color-background) !important;
}

.theme-product-card-wrap--coming-soon .theme-product-card__info {
  text-align: center;
}
.theme-product-card-wrap--coming-soon .theme-product-card__category {
  font-size: 0.625rem;
  color: var(--color-nopal);
}

.theme-product-card__info {
  padding: 0 0.25rem;
  flex: 1;
}
.theme-product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
  margin-bottom: 0.375rem;
}
.theme-product-card__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-foreground);
  margin-bottom: 0.375rem;
  transition: color 0.3s;
  font-family: var(--font-display);
}
@media (min-width: 768px) {
  .theme-product-card__title { font-size: 1.125rem; }
}
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price {
  font-size: 1rem;
  color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}

/* Related products */
.related-products-section {
  padding: 3rem 0 5rem;
}
.related-products-section__title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--color-foreground);
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .related-products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: color-mix(in srgb, var(--color-blush-deep) 40%, transparent);
  position: relative;
}
.faq-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 5rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .faq-section__inner { padding: 7rem 2rem; }
}
@media (min-width: 1024px) {
  .faq-section__inner {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }
}
.faq-section__heading {
  position: sticky;
  top: 7rem;
}
.faq-section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.faq-section__title {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .faq-section__title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .faq-section__title { font-size: 2.75rem; }
}
.faq-section__subtitle {
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 28rem;
}
@media (min-width: 768px) {
  .faq-section__subtitle { font-size: 1.125rem; }
}

/* FAQ Tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.faq-tab {
  border-radius: 9999px;
  border: 1px solid;
  padding: 0.5rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}
.faq-tab--teal   { border-color: var(--color-teal); color: var(--color-foreground); }
.faq-tab--teal.is-active { background: var(--color-teal); color: var(--color-background); }
.faq-tab--teal:not(.is-active):hover { background: color-mix(in srgb, var(--color-teal) 10%, transparent); }
.faq-tab--rosa   { border-color: var(--color-rosa); color: var(--color-foreground); }
.faq-tab--rosa.is-active { background: var(--color-rosa); }
.faq-tab--rosa:not(.is-active):hover { background: color-mix(in srgb, var(--color-rosa) 20%, transparent); }
.faq-tab--lilac  { border-color: var(--color-lilac); color: var(--color-foreground); }
.faq-tab--lilac.is-active { background: var(--color-lilac); }
.faq-tab--lilac:not(.is-active):hover { background: color-mix(in srgb, var(--color-lilac) 25%, transparent); }
.faq-tab--nopal  { border-color: var(--color-nopal); color: var(--color-nopal); }
.faq-tab--nopal.is-active { background: var(--color-nopal); color: var(--color-background); }
.faq-tab--nopal:not(.is-active):hover { background: color-mix(in srgb, var(--color-nopal) 10%, transparent); }
.faq-tab--marigold { border-color: var(--color-marigold); color: var(--color-foreground); }
.faq-tab--marigold.is-active { background: var(--color-marigold); }
.faq-tab--marigold:not(.is-active):hover { background: color-mix(in srgb, var(--color-marigold) 25%, transparent); }

/* FAQ Accordion */
.faq-group--hidden { display: none; }
.faq-group__border-top { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
@media (min-width: 768px) {
  .faq-item__trigger { padding: 1.75rem 0; }
}
.faq-item__q-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon--teal   { color: var(--color-teal); }
.faq-icon--rosa   { color: var(--color-foreground); }
.faq-icon--lilac  { color: var(--color-foreground); }
.faq-icon--nopal  { color: var(--color-nopal); }
.faq-icon--marigold { color: var(--color-foreground); }
.faq-item__question {
  font-size: 1.125rem;
  color: var(--color-foreground);
  line-height: 1.3;
  font-family: var(--font-display);
}
@media (min-width: 768px) {
  .faq-item__question { font-size: 1.5rem; }
}
.faq-item__chevron {
  flex-shrink: 0;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__panel {
  overflow: hidden;
  animation: slideUp 0.28s ease;
}
.faq-item__answer {
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 1rem 1.5rem 3.75rem;
  max-width: 40rem;
}
@media (min-width: 768px) {
  .faq-item__answer { font-size: 1.0625rem; }
}

/* ============================================================
   FINAL CTA / CONTACT BAND
   ============================================================ */
.cta-band { overflow: hidden; }
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 26rem;
}
@media (min-width: 1024px) {
  .cta-band__inner { grid-template-columns: 1fr 1fr; min-height: 30rem; }
}
.cta-band__image-side {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
}
@media (min-width: 1024px) {
  .cta-band__image-side { min-height: 30rem; }
}
.cta-band__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 20%, transparent), transparent, transparent);
}
.cta-band__text-side {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-band__text-side { padding: 6rem 4rem; }
}
.cta-band__text-bg-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  opacity: 0.3;
  filter: blur(3rem);
  pointer-events: none;
}
.cta-band__text-bg-2 {
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: var(--gradient-bling);
  opacity: 0.25;
  filter: blur(3rem);
  pointer-events: none;
}
.cta-sparkle { position: absolute; }
.cta-sparkle--1 { top: 2rem; left: 2rem; }
.cta-sparkle--2 { top: 33%; right: 2.5rem; }
.cta-sparkle--3 { bottom: 2.5rem; right: 3rem; }
.cta-band__content {
  position: relative;
  max-width: 28rem;
  text-align: center;
}
.cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-primary-fg) 85%, transparent);
  margin-bottom: 1.25rem;
}
.cta-band__eyebrow-line {
  height: 1px;
  width: 2rem;
  background: var(--gradient-gold);
  flex-shrink: 0;
}
.cta-band__title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-primary-fg);
}
@media (min-width: 768px) {
  .cta-band__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .cta-band__title { font-size: 3.75rem; }
}
.cta-band__title-shimmer {
  font-style: italic;
  background-image: var(--gradient-gold);
  background-size: 200% 100%;
  animation: goldShimmer 6s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.cta-band__subtitle {
  color: color-mix(in srgb, var(--color-primary-fg) 90%, transparent);
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
}
.cta-band__subtitle p {
  margin: 0;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) {
  .cta-band__actions { flex-direction: row; justify-content: center; }
}
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cta-band__btn--primary {
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  box-shadow: var(--shadow-gold);
}
.cta-band__btn--outline {
  background: transparent;
  color: var(--color-primary-fg);
  border: 1px solid color-mix(in srgb, var(--color-primary-fg) 40%, transparent);
}
.cta-band__btn--outline:hover {
  border-color: var(--color-primary-fg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-butter);
}
.site-footer__main { padding: 4rem 1.5rem; }
@media (min-width: 1024px) {
  .site-footer__main { padding: 5rem 2rem; }
}
.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 640px) {
  .site-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.site-footer__logo-wrap { flex-shrink: 0; }
.site-footer__logo-wrap .site-logo-img {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block !important;
  position: static !important;
}
.site-footer__top-text { max-width: 36rem; }
@media (min-width: 640px) {
  .site-footer__top-text { text-align: right; }
}
.site-footer__tagline {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
  line-height: 1.6;
}
.site-footer__link {
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
  transition: color 0.2s;
}
.site-footer__link:hover { color: var(--color-primary); }
.site-footer__sep { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}
.site-footer__col-title {
  font-size: 1.5rem;
  color: var(--color-foreground);
  margin-bottom: 1.25rem;
}
.site-footer__col--span2 { grid-column: span 2; }
@media (min-width: 768px) {
  .site-footer__col--span2 { grid-column: auto; }
}
.site-footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list-link {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
  transition: color 0.2s;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
}
.site-footer__list-link:hover { color: var(--color-primary); }
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.site-footer__social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground);
  transition: all 0.2s;
  text-decoration: none;
}
.site-footer__social-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.site-footer__newsletter-desc {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.site-footer__newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__newsletter-input {
  border-radius: var(--btn-radius);
  background: var(--color-background);
  border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  height: 2.75rem;
  flex: 1;
  color: var(--color-foreground);
  outline: none;
}
.site-footer__newsletter-input:focus {
  border-color: var(--color-primary);
}
.site-footer__newsletter-feedback {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.site-footer__newsletter-feedback.is-success {
  color: var(--color-nopal);
}
.site-footer__newsletter-feedback.is-error {
  color: #c0392b;
}
.site-footer__newsletter-embed {
  width: 100%;
}
.site-footer__newsletter-embed iframe {
  width: 100%;
  min-height: 120px;
  border: 0;
}
.site-footer__newsletter-embed form,
.site-footer__newsletter-embed input[type="email"] {
  width: 100%;
}
.site-footer__copyright-bar {
  background: linear-gradient(to right, var(--color-primary), var(--color-gold), var(--color-primary));
}
.site-footer__copyright-inner {
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .site-footer__copyright-inner { flex-direction: row; text-align: left; }
}
.site-footer__quote {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--color-primary-fg) 90%, transparent);
  font-style: italic;
  letter-spacing: 0.05em;
}
.site-footer__copy {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--color-primary-fg) 85%, transparent);
  letter-spacing: 0.05em;
}
.site-footer__copy-link {
  color: color-mix(in srgb, var(--color-primary-fg) 85%, transparent);
  text-decoration: underline;
  transition: color 0.2s;
}
.site-footer__copy-link:hover { color: var(--color-primary-fg); }

/* ============================================================
   MODALS
   ============================================================ */
.theme-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
}
.theme-modal.is-open {
  display: flex;
}
.theme-modal__overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
  cursor: pointer;
}
.theme-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--color-background);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  animation: slideUp 0.3s ease;
}
.theme-modal__panel--wide { max-width: 48rem; }
.theme-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.theme-modal__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.theme-modal__desc {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  line-height: 1.5;
}
.theme-modal__close {
  flex-shrink: 0;
  padding: 0.25rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  margin-top: 0.25rem;
}
.theme-modal__close:hover { opacity: 1; }
.theme-modal__contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.theme-modal__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.theme-modal__meta-link {
  transition: color 0.2s;
}
.theme-modal__meta-link:hover { color: var(--color-primary); }

/* Contact form */
.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .theme-contact-form__row { grid-template-columns: repeat(2, 1fr); }
}
.theme-contact-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.theme-contact-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.theme-contact-form__input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.theme-contact-form__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-ring, var(--color-primary)) 25%, transparent);
}
.theme-contact-form__input::placeholder {
  color: color-mix(in srgb, var(--color-foreground) 45%, transparent);
}
.theme-contact-form__textarea { resize: none; }
.theme-contact-form__footer { display: flex; justify-content: flex-end; }
.theme-contact-form__footer .theme-btn {
  background: var(--color-primary);
  color: var(--color-primary-fg);
  border: none;
  padding: 0.625rem 1.5rem;
}
.theme-contact-success {
  text-align: center;
  padding: 2rem 0;
}
.theme-contact-success__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
  color: var(--color-primary-fg);
}

/* Calendly modal */
.theme-modal__calendly-body { padding: 0 0 1rem; }
.theme-modal__calendly-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent);
  background: var(--color-background);
}
.theme-modal__calendly-iframe {
  width: 100%;
  min-height: 38rem;
  border: none;
}
.theme-modal__calendly-note {
  text-align: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  margin-top: 1rem;
}

/* Prevent body scroll when modal open */
body.modal-open { overflow: hidden; }

/* ============================================================
   CART DRAWER
   ============================================================ */
#theme-cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 28rem;
  background: var(--color-background);
  z-index: 100;
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-smooth);
  will-change: transform;
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
body.cart-open { overflow: hidden; }
#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.cart-open #theme-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}
.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;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.cart-drawer__close:hover { opacity: 1; }

/* Empty */
.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.cart-drawer__empty-icon { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.cart-drawer__empty-msg { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 0.5rem; }
.cart-drawer__empty-sub { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.5rem; }
.cart-drawer__close-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-drawer__close-btn:hover { border-color: var(--color-foreground); }

/* 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-img-link {
  width: 5rem;
  height: 6rem;
  background: var(--color-secondary);
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0.375rem;
  display: flex;
  align-items: stretch;
  pointer-events: auto;
}
.cart-drawer__item-img-link img {
  flex: 1;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  max-width: 100%;
}
.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;
  transition: opacity 0.2s;
  text-decoration: none;
  pointer-events: auto;
}
.cart-drawer__item-name:hover { opacity: 0.7; }
.cart-drawer__item-variation {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.cart-drawer__item-price {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  margin-top: 0.25rem;
}
.cart-drawer__item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.cart-drawer__qty-btn {
  padding: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.cart-drawer__qty {
  font-size: 0.875rem;
  width: 1.5rem;
  text-align: center;
}
.cart-drawer__remove-btn {
  margin-left: auto;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  pointer-events: auto;
}
.cart-drawer__remove-btn:hover { color: var(--color-foreground); }

/* Footer */
.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.cart-drawer__subtotal-label { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.cart-drawer__subtotal-value { font-weight: 500; }
.cart-drawer__shipping-note {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-primary-fg);
  border-radius: var(--btn-radius);
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  text-align: center;
  pointer-events: auto;
}
.cart-drawer__checkout:hover { opacity: 0.9; }
.cart-drawer__empty-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  width: 100%;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  pointer-events: auto;
}
.cart-drawer__empty-cart:hover { color: var(--color-foreground); }

/* Loading state */
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

/* ============================================================
   WOOCOMMERCE SINGLE PRODUCT PAGE
   ============================================================ */
.single-product-main { padding-top: 2rem; }
.single-product-breadcrumb { margin-bottom: 2rem; }
.single-product-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
  transition: color 0.2s;
  text-decoration: none;
}
.single-product-breadcrumb__link:hover { color: var(--color-primary); }

.theme-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .theme-product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Gallery */
.theme-product-gallery { min-width: 0; }
.theme-product-main-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--color-card);
  margin-bottom: 1rem;
}
.theme-product-main-img-wrap .theme-product-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-product-thumbnails {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.theme-product-thumbnail {
  width: 5rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  background: var(--color-card);
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}
.theme-product-thumbnail.is-active { border-color: var(--color-primary); }
.theme-product-thumbnail img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

/* Product info */
.theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-categories {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
  margin-bottom: 0.5rem;
}
.theme-product-categories a {
  color: inherit;
  text-decoration: none;
}
.theme-product-categories a:hover { color: var(--color-primary); }
.product-title {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .product-title { font-size: 2.25rem; }
}
.theme-product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 1rem;
}
.theme-product-sold-out {
  display: inline-block;
  background: var(--color-muted);
  border-radius: 9999px;
  padding: 0.25rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.woocommerce-product-details__description {
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.woocommerce-product-details__description p + p,
.woocommerce-product-details__short-description p + p {
  margin-top: 1rem;
}
.woocommerce-product-details__description ul,
.woocommerce-product-details__description ol,
.woocommerce-product-details__short-description ul,
.woocommerce-product-details__short-description ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.woocommerce-product-details__description li,
.woocommerce-product-details__short-description li {
  margin-bottom: 0.5rem;
}
.woocommerce-product-details__description ul,
.woocommerce-product-details__short-description ul {
  list-style: disc;
}
.woocommerce-product-details__description ol,
.woocommerce-product-details__short-description ol {
  list-style: decimal;
}

/* Quantity + Button row */
.theme-add-to-cart-area {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.single-product .single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 10rem;
}

.theme-quantity-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  overflow: hidden;
}
.theme-qty-btn {
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--color-foreground);
}
.theme-qty-btn:hover { background: var(--color-muted); }
.theme-qty-input {
  width: 3.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-foreground);
  outline: none;
  -moz-appearance: textfield;
}
.theme-qty-input::-webkit-inner-spin-button,
.theme-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Details section */
.theme-product-details { margin-top: 1.5rem; }
.theme-product-details__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.woocommerce-product-details__short-description {
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Variable product variations */
.variations.shop_attributes tbody,
.variations.shop_attributes tbody tr,
.variations.shop_attributes tbody td {
  display: block;
  width: 100%;
}
.variations.shop_attributes tbody td.label { padding-bottom: 0.25rem; }
.variations.shop_attributes tbody td.value { padding-top: 0; }
.variations.shop_attributes { margin-bottom: 1.5rem; width: 100%; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.theme-attr-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.theme-attr-btn.is-active, .theme-attr-btn:hover {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}
.wc-variation-is-unavailable { display: none; }
.single_variation_wrap { margin-top: 1rem; }

/* ============================================================
   WOOCOMMERCE BUTTON OVERRIDES (Section 11.4.1)
   Scoped to single product — product cards use .theme-product-card__quick-add
   ============================================================ */
.single-product .single_add_to_cart_button.button,
.single-product form.cart .add_to_cart_button.button,
.single-product .theme-add-to-cart-area .add_to_cart_button,
.single-product a.single_add_to_cart_button,
.single-product form.cart 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: none !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  text-decoration: none !important;
}
.single-product .single_add_to_cart_button.button:hover,
.single-product form.cart .add_to_cart_button.button:hover,
.single-product .theme-add-to-cart-area .add_to_cart_button:hover {
  opacity: 0.85 !important;
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
}
.single-product .single_add_to_cart_button.button:disabled,
.single-product .single_add_to_cart_button.button.disabled,
.single-product form.cart .add_to_cart_button.button:disabled,
.single-product form.cart .add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single-product .single_add_to_cart_button.button:disabled:hover,
.single-product .single_add_to_cart_button.button.disabled:hover,
.single-product form.cart .add_to_cart_button.button:disabled:hover,
.single-product form.cart .add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--color-primary) !important;
}

/* Hide "View cart" after AJAX add (Section 11.4.2) */
.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; }

/* WC Notices (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error { display: block !important; }

/* ============================================================
   BUTTON LOCK DURING AJAX (Section 31.8)
   ============================================================ */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-page-main {
  min-height: 60vh;
}
body.theme-no-hero .inner-page-main {
  padding-top: 2rem;
}
.inner-page-container { padding: 2rem 1.5rem 4rem; }
@media (min-width: 768px) {
  .inner-page-container { padding: 3rem 2rem 6rem; }
}
.page-title {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--color-foreground);
}
@media (min-width: 768px) {
  .page-title { font-size: 3rem; }
}
.entry-content {
  font-family: var(--font-body);
  line-height: 1.7;
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}

/* 404 */
.not-found-page { text-align: center; padding: 6rem 1.5rem; }
.not-found-code {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--color-primary) 30%, transparent);
  line-height: 1;
  margin-bottom: 1rem;
}
.not-found-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.not-found-subtitle {
  color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.not-found-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-rose-gold);
  color: var(--color-foreground);
  border-radius: var(--btn-radius);
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}

/* WooCommerce page headings */
.woocommerce-page-main .page-title { font-family: var(--font-display); }

/* ============================================================
   CHECKOUT (Section 13)
   ============================================================ */
body.woocommerce-checkout .site-main {
  padding-top: 2rem;
  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.is-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    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-checkout__sidebar {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important;
  max-width: none !important;
  font-family: var(--font-body) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 0.375rem !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-components-checkout-place-order-button {
  background: var(--color-primary) !important;
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
}

/* ============================================================
   THANK YOU PAGE (Section 22.8)
   ============================================================ */
body.theme-thankyou-page .woocommerce-order { font-family: var(--font-body); }
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: 0 0 1rem;
}
body.theme-thankyou-page .woocommerce-order-details table {
  width: 100%;
  table-layout: fixed;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

/* ============================================================
   MEDIA: prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .portfolio-marquee__track { animation: none; }
  .cta-band__title-shimmer { animation: none; }
  .gold-divider { animation: none; }
  .btn-glam:hover { transform: none; }
  .btn-glam::before { transition: none; }
  .hero-section__media img,
  .service-tile__img,
  .theme-product-card__img { transition: none; }
}
