/* ==========================================================================
   DAEZ INK — theme.css
   Design tokens converted from HSL to hex via theme_hsl_to_hex() and
   emitted as CSS variables by inc/enqueue.php.
   ========================================================================== */

:root {
  --background: #ffffff;
  --foreground: #1a1a20;
  --primary: #ff4d8d;
  --primary-foreground: #ffffff;
  --secondary: #fdf1cc;
  --muted: #f6f2fa;
  --accent: #7c5cff;
  --border: #e3e2e6;
  --confetti-pink: #ff4d8d;
  --confetti-yellow: #ffb627;
  --confetti-purple: #7c5cff;
  --confetti-teal: #1fb6a8;
  --confetti-cream: #fff9e6;
  --logo-height: 48px;

  --radius: 1rem;
  --font-display: 'Fraunces', 'Outfit', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-soft: 0 6px 20px -6px rgba(255, 77, 141, 0.35);
  --shadow-pop: 0 20px 50px -12px rgba(124, 92, 255, 0.35);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-reveal: cubic-bezier(0.22, 1, 0.36, 1);

  --header-height: 4rem;
  --announcement-height: 0px;

  --btn-radius: 9999px;
  --btn-height: 48px;
  --btn-padding: 0.875rem 1.75rem;
  --btn-font-size: 0.9375rem;
  --btn-font-weight: 600;
  --btn-letter-spacing: normal;
  --btn-text-transform: none;
  --btn-icon-padding: 0.6rem;
  --color-button-text: var(--primary-foreground);
  --card-radius: 1.25rem;
  --section-padding: 2rem;
  --checkout-max-width: 1280px;
  --checkout-gap: 1.5rem;
  --checkout-sidebar-min: 360px;
  --checkout-sidebar-max: 400px;
}
@media (min-width: 768px) {
  :root {
    --header-height: 5rem;
  }
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
html, body { max-width: 100%; }
body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) { body { font-size: 17px; } }

img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.theme-product-main-img):not(.site-logo-img):not(.site-footer-logo-img):not(.theme-cart-drawer-item-img) {
  height: auto;
}
.cover-img, .theme-product-main-img, .theme-product-card-img, .hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; background: none; border: none; }
input, select, textarea { font-family: var(--font-body); }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--foreground);
  margin: 0;
}

a, button { transition: color .25s var(--transition-smooth), background-color .25s var(--transition-smooth), border-color .25s var(--transition-smooth), transform .35s var(--transition-smooth), box-shadow .35s var(--transition-smooth), opacity .25s var(--transition-smooth); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) { .container-wide { padding-inline: 2rem; } }
@media (max-width: 767px) { .container-wide { padding-inline: 1.75rem; } }

[data-price] { font-family: var(--font-body); font-weight: 700; font-variant-numeric: tabular-nums; }
[data-product-name] { font-family: var(--font-display); font-weight: 700; }

.theme-icon { flex-shrink: 0; }
.eyebrow { display: inline-block; font-size: 0.6875rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--confetti-purple); }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.text-gradient {
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary, .btn-hero-primary, .cta-band-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.875rem 1.75rem; font-size: 0.875rem; font-weight: 600;
  color: #fff; text-transform: none;
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple));
  box-shadow: 0 14px 30px -10px rgba(255, 26, 128, 0.5);
  transition: all .3s var(--transition-smooth);
}
.btn-primary:hover, .btn-hero-primary:hover, .cta-band-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(255, 26, 128, 0.6); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-ghost, .btn-hero-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.875rem 1.75rem; font-size: 0.875rem; font-weight: 600;
  border: 2px solid rgba(26, 26, 32, 0.15); color: var(--foreground); background: transparent;
}
.btn-ghost:hover { border-color: var(--confetti-purple); color: var(--confetti-purple); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.875rem 1.75rem; font-size: 0.875rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.25); color: var(--background); background: transparent;
}
.btn-ghost-dark:hover { border-color: var(--confetti-yellow); color: var(--confetti-yellow); }

.btn-hero-primary { background: var(--background); color: var(--foreground); box-shadow: var(--shadow-pop); font-size: 0.875rem; padding: 0.75rem 1.25rem; border-radius: 1rem; }
.btn-hero-primary:hover { box-shadow: 0 18px 30px -10px rgba(0,0,0,0.35); }
.btn-hero-outline {
  background: rgba(255,255,255,0.1); color: var(--background); border: 2px solid rgba(255,255,255,0.4);
  padding: 0.75rem 1.25rem; border-radius: 1rem; font-size: 0.875rem;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.2); border-color: var(--background); }

/* ==========================================================================
   ANIMATION / REVEAL SYSTEM (Section 2.1)
   ========================================================================== */
@keyframes theme-fade-up {
  from { opacity: 0; transform: translateY(32px) scale(0.985); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes theme-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes theme-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes theme-blob { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-30px) scale(1.08); } 66% { transform: translate(-25px,15px) scale(0.94); } }
@keyframes theme-slide-down { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-slide-in-right { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes theme-modal-in { from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes theme-success-pop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes theme-page-enter { from { opacity: 0; transform: translateY(12px); filter: blur(6px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

.reveal-item {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.8s var(--transition-reveal), transform 0.8s var(--transition-reveal), filter 0.8s var(--transition-reveal);
  transition-delay: calc(var(--stagger-i, 0) * 0.08s);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* Customizer preview fallback — reveal items must never stay hidden in the editor */
body.is-customizer .reveal-item,
body.is-customizer .scroll-reveal-section .reveal-item {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.animate-float { animation: theme-float 6s ease-in-out infinite; }
.animate-blob { animation: theme-blob 14s ease-in-out infinite; }

/* Theme atmospheric particles (Section 2.1 — decorative component intensity) */
.theme-atmospheric-particles {
  position: fixed; inset: 0; z-index: -10; overflow: hidden; pointer-events: none;
  opacity: 0.55; /* wrapper carries the global intensity factor */
}
.theme-atmospheric-particles span {
  position: absolute; border-radius: 50%; opacity: 0.55; animation: theme-float 10s ease-in-out infinite;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.theme-announcement-bar {
  position: relative; z-index: 60; color: #fff; text-align: center; font-size: 0.875rem; font-weight: 500;
  background: linear-gradient(90deg, var(--confetti-pink), var(--confetti-purple) 50%, var(--confetti-teal));
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.theme-announcement-bar.is-mounted { opacity: 1; transform: translateY(0); }
.theme-announcement-inner {
  display: flex; align-items: center; justify-content: center; min-height: 2.75rem;
  padding: 0.625rem 2.75rem 0.625rem 1rem;
}
.theme-announcement-text { display: block; font-size: 0.8125rem; line-height: 1.4; }
@media (min-width: 640px) { .theme-announcement-text { font-size: 0.875rem; } }
.theme-announcement-bar + .site-header { margin-top: 0; }
.theme-announcement-close {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; border-radius: 9999px; color: #fff;
}
.theme-announcement-close:hover { background: rgba(255,255,255,0.2); }
.theme-announcement-bar.is-dismissed { display: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), backdrop-filter 0.3s var(--transition-smooth);
}
body.admin-bar {
  --admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    --admin-bar-height: 46px;
  }
}
body.admin-bar .site-header {
  top: var(--admin-bar-height);
}
.site-header.is-solid, .site-header.is-scrolled, .site-header.is-mobile-open {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4rem; }
@media (min-width: 768px) { .site-nav { height: 5rem; } }

.site-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; min-width: 0; }
.site-header .site-logo-img {
  height: 2.5rem; width: auto; max-width: none; display: block; object-fit: contain; flex-shrink: 0;
}
@media (min-width: 768px) {
  .site-header .site-logo-img { height: 3rem; }
}
.site-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.site-brand-name { display: none; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
@media (min-width: 640px) { .site-brand-name { display: inline; } }
@media (min-width: 768px) { .site-brand-name { font-size: 1.5rem; } }
.site-footer-brand-name .text-gradient { display: inline; }

.site-nav-desktop { display: none; }
@media (min-width: 1024px) { .site-nav-desktop { display: flex; align-items: center; gap: 0.25rem; } }
.theme-nav-list { display: flex; align-items: center; gap: 0.25rem; }
.theme-nav-link {
  display: inline-block; padding: 0.5rem 0.875rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  color: rgba(26,26,32,0.75);
}
.theme-nav-link:hover { color: var(--foreground); background: var(--muted); }

.site-nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.site-social-link {
  display: none; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem;
  border-radius: 9999px; color: rgba(26,26,32,0.7);
}
@media (min-width: 640px) { .site-social-link--desktop { display: inline-flex; } }
.site-social-link:hover { background: var(--muted); color: var(--confetti-pink); }

.site-cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: var(--foreground); color: #fff;
}
.site-cart-btn:hover { background: var(--confetti-purple); }
.theme-cart-count {
  position: absolute; top: -0.25rem; right: -0.25rem; min-width: 20px; height: 20px; padding: 0 0.25rem;
  border-radius: 9999px; background: var(--confetti-pink); color: #fff; font-size: 0.6875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 9999px; }
.site-mobile-toggle:hover { background: var(--muted); }
@media (min-width: 1024px) { .site-mobile-toggle { display: none; } }
.theme-icon-close { display: none; }
.site-mobile-toggle.is-open .theme-icon-open { display: none; }
.site-mobile-toggle.is-open .theme-icon-close { display: block; }

.site-nav-mobile { max-height: 0; overflow: hidden; border-top: 0 solid var(--border); transition: max-height 0.3s var(--transition-smooth); }
@media (min-width: 1024px) { .site-nav-mobile { display: none; } }
.site-nav-mobile.is-open { max-height: 480px; border-top-width: 1px; }
.site-nav-mobile-inner { padding: 0.75rem 0; }
.site-nav-mobile .theme-nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.125rem;
}
.site-nav-mobile .theme-nav-link {
  display: block;
  text-align: left;
  padding: 0.75rem 0.75rem;
  border-radius: 0.5rem;
  color: rgba(26,26,32,0.85);
}
.site-nav-mobile .theme-nav-link:hover { color: var(--confetti-pink); background: var(--muted); }
.theme-nav-list--mobile { display: flex; flex-direction: column; }
.theme-nav-list--mobile .theme-nav-link { text-align: left; padding: 0.75rem 0.75rem; border-radius: 0.5rem; color: rgba(26,26,32,0.85); }
.theme-nav-list--mobile .theme-nav-link:hover { color: var(--confetti-pink); background: var(--muted); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
  position: relative;
  margin-top: calc((var(--header-height) + var(--announcement-height)) * -1);
  padding-top: calc(var(--header-height) + var(--announcement-height));
  min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; overflow: hidden;
  background: var(--foreground);
}
body.theme-no-hero .hero-section { display: none; }
body:not(.theme-no-hero) .site-main { padding-top: 0; }
body.theme-no-hero .site-main { padding-top: calc(var(--header-height) + var(--announcement-height)); }

.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-wash {
  position: absolute; inset: 0; mix-blend-mode: multiply;
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--confetti-purple) 80%, transparent), color-mix(in srgb, var(--confetti-pink) 60%, transparent), color-mix(in srgb, var(--confetti-teal) 70%, transparent));
}
.hero-overlay-fade { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--foreground) 80%, transparent), color-mix(in srgb, var(--foreground) 30%, transparent), transparent); }
.hero-overlay-grain { position: absolute; inset: 0; opacity: 0.15; mix-blend-mode: overlay; background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px); background-size: 24px 24px; }

.hero-inner { position: relative; z-index: 10; padding: 2.5rem 0 3.5rem; }
.hero-content { max-width: 48rem; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px); padding: 0.375rem 0.75rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.3);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--confetti-yellow); animation: theme-pulse 2s infinite; }
@keyframes theme-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-badge-text { color: var(--background); font-weight: 700; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; }

.hero-title { font-family: 'Fraunces', serif; font-weight: 500; color: var(--background); line-height: 1.05; letter-spacing: -0.02em; font-size: 2.25rem; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-title-accent-wrap { position: relative; display: inline-block; }
.hero-title-accent { font-style: italic; background: linear-gradient(90deg, var(--confetti-yellow), var(--background), var(--confetti-yellow)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero-title-underline { position: absolute; bottom: -0.5rem; left: 0; width: 100%; }
.hero-title-break { display: none; }
@media (min-width: 640px) { .hero-title-break { display: block; } }

.hero-subtext { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 36rem; }
@media (min-width: 768px) { .hero-subtext { font-size: 1.125rem; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; padding-top: 0.25rem; }
.hero-rating { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; }
.hero-rating-stars { display: flex; align-items: center; gap: 0.125rem; color: var(--confetti-yellow); }
.hero-star { fill: currentColor; }
.hero-rating-text { font-size: 0.75rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-rating-value { color: var(--background); font-weight: 700; }

.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; overflow: hidden;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px); border-top: 1px solid rgba(255,255,255,0.2); padding: 0.75rem 0;
}
.hero-marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: theme-scroll 30s linear infinite; white-space: nowrap; }
.hero-marquee-group { display: flex; gap: 2.5rem; flex-shrink: 0; color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; }
@media (min-width: 768px) { .hero-marquee-group { font-size: 0.875rem; } }
.hero-marquee-group span.is-yellow { color: var(--confetti-yellow); }

/* ==========================================================================
   SECTION HEADING SCALES (per-section — Section 2.2.5)
   ========================================================================== */
.section-heading { font-weight: 700; letter-spacing: -0.02em; }
.services-heading { font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.05; }
@media (min-width: 768px) { .services-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-heading { font-size: 3.75rem; } }
.shop-heading, .custom-order-heading, .gallery-heading, .about-heading, .faq-heading { font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.15; }
@media (min-width: 768px) { .shop-heading, .custom-order-heading, .gallery-heading, .about-heading, .faq-heading { font-size: 3rem; } }
.reviews-heading { font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.15; }
@media (min-width: 768px) { .reviews-heading { font-size: 3rem; } }
.cta-band__title { font-size: 2.25rem; line-height: 1.15; }
@media (min-width: 768px) { .cta-band__title { font-size: 3rem; } }

/* ==========================================================================
   SERVICES / OFFERINGS CAROUSEL
   ========================================================================== */
.services-section { padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-header { display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .services-header { flex-direction: row; align-items: flex-end; margin-bottom: 3.5rem; } }
.services-header-copy { max-width: 36rem; }
.services-subtext { margin-top: 1rem; color: rgba(26,26,32,0.7); font-size: 1rem; }
@media (min-width: 768px) { .services-subtext { font-size: 1.125rem; } }
.services-arrows { display: none; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 768px) { .services-arrows { display: flex; } }
.services-arrow-btn {
  width: 3.5rem; height: 3.5rem; border-radius: 9999px; border: 2px solid var(--foreground);
  display: flex; align-items: center; justify-content: center; color: var(--foreground);
}
.services-arrow-btn:hover { background: var(--foreground); color: var(--background); }

.services-track-wrap { overflow: hidden; }
.services-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1.5rem;
  padding-bottom: 4rem; scrollbar-width: none;
}
.services-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .services-track { padding-bottom: 5rem; } }
.services-card { flex: none; width: 82vw; scroll-snap-align: start; }
@media (min-width: 480px) { .services-card { width: min(340px, 88vw); } }
@media (min-width: 768px) { .services-card { width: calc((100% - 48px) / 2); } }
@media (min-width: 1024px) { .services-card { width: calc((100% - 60px) / 3); } }

.services-card-inner {
  height: 100%; background: var(--background); border: 2px solid var(--foreground);
  border-radius: 2rem; padding: 2rem 2.5rem 2rem 2rem; display: flex; flex-direction: column;
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  box-shadow: 8px 8px 0 0 var(--card-accent, var(--confetti-pink));
}
@media (min-width: 768px) { .services-card-inner { border-radius: 2.5rem; padding: 2.5rem 3rem 2.5rem 2.5rem; } }
.services-card:nth-child(6n+1) .services-card-inner { --card-accent: var(--confetti-pink); }
.services-card:nth-child(6n+2) .services-card-inner { --card-accent: var(--confetti-yellow); }
.services-card:nth-child(6n+3) .services-card-inner { --card-accent: var(--confetti-purple); }
.services-card:nth-child(6n+4) .services-card-inner { --card-accent: var(--confetti-teal); }
.services-card:nth-child(6n+5) .services-card-inner { --card-accent: var(--confetti-pink); }
.services-card:nth-child(6n+6) .services-card-inner { --card-accent: var(--confetti-yellow); }
.services-card-inner:hover { transform: translateY(-4px); box-shadow: 12px 12px 0 0 var(--card-accent, var(--confetti-pink)); }
.services-card-icon {
  width: 4rem; height: 4rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem; color: #fff; flex-shrink: 0;
  transition: transform 0.3s var(--transition-smooth);
}
.services-card-inner:hover .services-card-icon { transform: rotate(var(--icon-rotate, 3deg)) scale(1.05); }
.services-card:nth-child(6n+1) .services-card-icon { --icon-rotate: 3deg; transform: rotate(3deg); background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-yellow)); }
.services-card:nth-child(6n+2) .services-card-icon { --icon-rotate: -3deg; transform: rotate(-3deg); background: linear-gradient(135deg, var(--confetti-yellow), var(--confetti-teal)); }
.services-card:nth-child(6n+3) .services-card-icon { --icon-rotate: 6deg; transform: rotate(6deg); background: linear-gradient(135deg, var(--confetti-purple), var(--confetti-pink)); }
.services-card:nth-child(6n+4) .services-card-icon { --icon-rotate: -6deg; transform: rotate(-6deg); background: linear-gradient(135deg, var(--confetti-teal), var(--confetti-purple)); }
.services-card:nth-child(6n+5) .services-card-icon { --icon-rotate: 3deg; transform: rotate(3deg); background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)); }
.services-card:nth-child(6n+6) .services-card-icon { --icon-rotate: -3deg; transform: rotate(-3deg); background: linear-gradient(135deg, var(--confetti-yellow), var(--confetti-teal)); }
.services-card-title { font-size: 1.5rem; margin-bottom: 0.75rem; line-height: 1.2; }
@media (min-width: 768px) { .services-card-title { font-size: 1.6rem; } }
.services-card-body { color: rgba(26,26,32,0.65); line-height: 1.6; font-size: 0.9375rem; }

.services-swipe-hint { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin-top: -2.5rem; margin-bottom: 0.5rem; user-select: none; }
@media (min-width: 768px) { .services-swipe-hint { display: none; } }
.services-swipe-hint-label { display: flex; align-items: center; gap: 0.375rem; color: rgba(26,26,32,0.6); font-size: 0.875rem; font-weight: 500; }
.services-swipe-hint-label .theme-icon-hand { transform: rotate(-12deg); }
.services-swipe-dots { display: flex; align-items: center; gap: 0.375rem; }
.services-swipe-dot { display: block; height: 0.5rem; width: 0.5rem; border-radius: 9999px; background: rgba(26,26,32,0.3); transition: width 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth); }
.services-swipe-dot.is-active { width: 1.25rem; background: var(--foreground); }

/* ==========================================================================
   SHOP SECTION + PRODUCT CARDS
   ========================================================================== */
.shop-section { padding: 5rem 0; background: var(--foreground); color: var(--background); }
@media (min-width: 768px) { .shop-section { padding: 7rem 0; } }
.shop-section .section-heading, .shop-section h2 { color: var(--background); }
.shop-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-header { margin-bottom: 3.5rem; } }
.shop-header-copy { max-width: 36rem; }
.shop-eyebrow { color: var(--confetti-yellow); }
.shop-heading-accent { color: var(--confetti-pink); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; }
.theme-product-grid--shop { gap: 2rem; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.theme-shop-empty { grid-column: 1 / -1; text-align: center; padding: 2rem; color: rgba(26,26,32,0.6); }

.theme-product-card-wrap { height: 100%; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.theme-product-card-wrap:hover { transform: translateY(-6px); }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .theme-card-add-btn { position: relative; z-index: 3; pointer-events: auto; }

.theme-product-card__image-wrapper {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 1rem; border-radius: 1rem;
  border: 2px solid var(--border); background: var(--muted);
  transition: border-color 0.3s var(--transition-smooth);
}
.shop-section .theme-product-card__image-wrapper { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); }
.theme-product-card__image-wrapper .theme-product-card-img,
.theme-product-card__image-wrapper img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.7s var(--transition-smooth);
}
.theme-product-card:hover .theme-product-card__image-wrapper { border-color: color-mix(in srgb, var(--confetti-pink) 60%, transparent); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.05); }

.theme-card-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem;
  border-radius: 9999px; font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.theme-card-badge--category { top: 0.75rem; left: 0.75rem; background: rgba(255,255,255,0.95); color: var(--foreground); box-shadow: var(--shadow-soft); }
.shop-section .theme-card-badge--category { background: rgba(255,255,255,0.95); }
.theme-card-badge--featured { top: 0.75rem; right: 0.75rem; color: #fff; background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)); }
.theme-card-badge--soldout { top: 0.75rem; right: 0.75rem; background: var(--foreground); color: #fff; }

.theme-product-card__info { flex: 1; padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.theme-product-card__title { font-size: 1.125rem; line-height: 1.35; font-weight: 700; min-width: 0; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.shop-section .theme-product-card__title { color: var(--background); }
.theme-product-card:hover .theme-product-card__title { color: var(--confetti-pink); }
.theme-product-card__price { font-size: 1rem; }
.shop-section .theme-product-card__price { color: rgba(255,255,255,0.8); }
.theme-product-card__price del { opacity: 0.6; margin-right: 0.35rem; }
.theme-product-card__soldout-text { color: rgba(26,26,32,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

.theme-card-add-btn {
  margin-top: 1rem; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple));
  box-shadow: 0 14px 30px -10px rgba(255,26,128,0.5);
}
.theme-card-add-btn:hover { transform: translateY(-2px); }
.theme-card-add-btn--link { background: transparent; color: var(--foreground); border: 2px solid var(--border); box-shadow: none; }
.shop-section .theme-card-add-btn--link { color: var(--background); border-color: rgba(255,255,255,0.3); }

/* ==========================================================================
   CUSTOM ORDER SECTION
   ========================================================================== */
.custom-order-section { position: relative; padding: 5rem 0; overflow: hidden; }
@media (min-width: 768px) { .custom-order-section { padding: 7rem 0; } }
.custom-order-bg { z-index: 0; }
.custom-order-overlay-white { position: absolute; inset: 0; background: rgba(255,255,255,0.85); z-index: 0; }
.custom-order-overlay-wash { position: absolute; inset: 0; background: linear-gradient(to bottom right, color-mix(in srgb, var(--confetti-pink) 10%, transparent), color-mix(in srgb, var(--confetti-purple) 10%, transparent), color-mix(in srgb, var(--confetti-teal) 10%, transparent)); z-index: 0; }
.custom-order-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .custom-order-inner { grid-template-columns: 5fr 7fr; gap: 4rem; } }

.custom-order-info-card { height: 100%; border-radius: 1.5rem; border: 2px solid var(--border); background: #fff; padding: 1.5rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .custom-order-info-card { padding: 2.5rem; } }
.custom-order-body { margin-top: 1rem; color: rgba(26,26,32,0.8); font-size: 1.125rem; line-height: 1.6; }
.custom-order-quote { display: block; margin-top: 0.75rem; padding: 0.75rem 1rem; border-radius: 0.75rem; background: color-mix(in srgb, var(--muted) 80%, transparent); font-family: var(--font-display); font-style: italic; font-size: 1rem; color: rgba(26,26,32,0.85); }
.custom-order-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; color: rgba(26,26,32,0.8); }
.custom-order-step { display: flex; gap: 0.75rem; }
.custom-order-step-num { margin-top: 0.125rem; width: 1.25rem; height: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.6875rem; font-weight: 700; flex-shrink: 0; }
.custom-order-step-num.is-pink { background: var(--confetti-pink); }
.custom-order-step-num.is-purple { background: var(--confetti-purple); }
.custom-order-step-num.is-teal { background: var(--confetti-teal); }
.custom-order-step-num.is-yellow { background: var(--confetti-yellow); color: var(--foreground); }

.custom-order-form-wrap { height: 100%; }
.custom-order-form {
  height: 100%; display: flex; flex-direction: column; gap: 1.25rem; border-radius: 1.5rem; border: 2px solid var(--border);
  background: #fff; padding: 1.5rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .custom-order-form { padding: 2.5rem; } }
.theme-form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .theme-form-row-2 { grid-template-columns: 1fr 1fr; } }
.theme-form-label { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; color: rgba(26,26,32,0.75); margin-bottom: 0.5rem; }
.theme-form-input {
  width: 100%; padding: 0.75rem 1rem; background: var(--background); border: 2px solid var(--border);
  border-radius: 0.75rem; font-size: 1rem; color: var(--foreground); transition: border-color 0.2s var(--transition-smooth);
}
.theme-form-input:focus, .theme-form-input:focus-visible { outline: none; border-color: var(--confetti-purple); }
.theme-form-input::placeholder { color: rgba(26,26,32,0.4); }
.theme-form-textarea { resize: none; }
.custom-order-form-desc-wrap { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.custom-order-form-desc-wrap textarea { flex: 1; min-height: 100px; }
.custom-order-form-hint { display: flex; gap: 0.5rem; margin-top: 0.5rem; font-size: 0.75rem; color: rgba(26,26,32,0.55); align-items: flex-start; }
.custom-order-form-submit, .theme-form-submit { width: 100%; font-size: 1rem; padding: 1rem; }
.custom-order-form-footnote, .theme-form-error { text-align: center; font-size: 0.75rem; color: rgba(26,26,32,0.55); }
.theme-form-error { color: #d92d20; }
.custom-order-form-success { height: 100%; border-radius: 1.5rem; border: 2px solid color-mix(in srgb, var(--confetti-purple) 40%, transparent); background: #fff; padding: 2rem; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.custom-order-success-icon, .theme-modal-success-icon { width: 4rem; height: 4rem; border-radius: 50%; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)); }
.custom-order-success-email { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: var(--confetti-pink); font-weight: 600; }
.custom-order-success-email:hover { text-decoration: underline; }

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section { padding: 5rem 0; background: color-mix(in srgb, var(--muted) 40%, transparent); }
@media (min-width: 768px) { .gallery-section { padding: 7rem 0; } }
.gallery-header { max-width: 42rem; margin-bottom: 3rem; }
.gallery-subtext { margin-top: 1rem; font-size: 1.125rem; color: rgba(26,26,32,0.7); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; grid-auto-flow: dense;
  grid-auto-rows: 180px;
}
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; grid-auto-rows: 220px; } }
.gallery-tile { position: relative; border-radius: 1.5rem; overflow: hidden; border: 2px solid var(--border); background: #fff; }
.gallery-tile--anchor { grid-column: span 2; grid-row: span 2; }
.gallery-tile--medium { grid-row: span 2; }
.gallery-tile img { transition: transform 0.5s var(--transition-smooth); }
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 70%); }
.gallery-tile-label { position: absolute; bottom: 1rem; left: 1rem; color: #fff; font-family: var(--font-display); font-size: 1.125rem; text-shadow: 0 2px 8px rgba(0,0,0,0.4); z-index: 1; }
.gallery-tile-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
.gallery-tile-title { color: #fff; font-family: var(--font-display); font-size: 1.25rem; }
.gallery-tile-sub { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.gallery-social-links { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section { padding: 5rem 0; background: color-mix(in srgb, var(--muted) 40%, transparent); }
@media (min-width: 768px) { .about-section { padding: 7rem 0; } }
.about-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .about-inner { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-image-wrap { position: relative; min-height: 320px; }
.about-blob { position: absolute; border-radius: 50%; filter: blur(24px); }
.about-blob--yellow { top: -1.5rem; left: -1.5rem; width: 8rem; height: 8rem; background: color-mix(in srgb, var(--confetti-yellow) 60%, transparent); }
.about-blob--purple { bottom: -1.5rem; right: -1.5rem; width: 10rem; height: 10rem; background: color-mix(in srgb, var(--confetti-purple) 40%, transparent); }
.about-image-frame { position: relative; height: 100%; min-height: 320px; border-radius: 1.5rem; overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-pop); background: var(--confetti-cream); }
.about-paragraphs { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; color: rgba(26,26,32,0.75); font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .about-paragraphs { font-size: 1.125rem; } }
.about-ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section { padding: 5rem 0; background: var(--confetti-cream); position: relative; overflow: hidden; }
@media (min-width: 768px) { .reviews-section { padding: 7rem 0; } }
.reviews-blob { position: absolute; border-radius: 50%; filter: blur(20px); }
.reviews-blob--yellow { top: -2.5rem; left: -2.5rem; width: 5rem; height: 5rem; background: color-mix(in srgb, var(--confetti-yellow) 20%, transparent); }
.reviews-blob--purple { bottom: -2.5rem; right: -2.5rem; width: 8rem; height: 8rem; background: color-mix(in srgb, var(--confetti-purple) 10%, transparent); }
.reviews-inner { position: relative; }
.reviews-header { max-width: 42rem; margin: 0 auto 3.5rem; text-align: center; }
.reviews-heading-accent { color: var(--confetti-pink); }
.reviews-header-dashes { margin-top: 1rem; display: flex; justify-content: center; gap: 0.5rem; }
.reviews-header-dashes span { height: 0.5rem; border-radius: 9999px; }
.reviews-header-dashes .is-teal { width: 3rem; background: var(--confetti-teal); }
.reviews-header-dashes .is-yellow { width: 1rem; background: var(--confetti-yellow); }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
.review-card { position: relative; transition: transform 0.3s var(--transition-smooth); }
@media (min-width: 768px) { .review-card--offset { transform: translateY(2rem); } }
.review-card:hover { transform: translateY(0); }
.review-card-shadow { position: absolute; inset: 0; transform: translate(6px, 6px); border-radius: 1.5rem; }
.review-card-shadow.is-pink { background: var(--confetti-pink); }
.review-card-shadow.is-purple { background: var(--confetti-purple); }
.review-card-shadow.is-teal { background: var(--confetti-teal); }
.review-card-shadow.is-yellow { background: var(--confetti-yellow); }
.review-card-body {
  position: relative; height: 100%; border-radius: 1.5rem; border: 2px solid var(--foreground); background: #fff;
  padding: 1.5rem; display: flex; flex-direction: column; transition: transform 0.3s var(--transition-smooth);
}
@media (min-width: 768px) { .review-card-body { padding: 2rem; } }
.review-card:hover .review-card-body { transform: translate(-4px, -8px); }
.review-card-badge { position: absolute; padding: 0.375rem 0.75rem; border-radius: 0.5rem; color: #fff; font-weight: 700; font-size: 0.6875rem; border: 2px solid var(--foreground); }
.review-card-badge--top-left { top: -1rem; left: -1rem; transform: rotate(-12deg); }
.review-card-badge--bottom-right { bottom: -1rem; right: 1rem; transform: rotate(6deg); border-radius: 9999px; }
.review-card-badge.is-pink { background: var(--confetti-pink); }
.review-card-badge.is-purple { background: var(--confetti-purple); }
.review-card-dot-badge { position: absolute; top: -0.75rem; right: -0.75rem; width: 2rem; height: 2rem; border-radius: 50%; border: 2px solid var(--foreground); display: flex; align-items: center; justify-content: center; }
.review-card-dot-badge.is-teal { background: var(--confetti-teal); }
.review-card-dot-badge span { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #fff; }
.review-card-stars { display: flex; align-items: center; gap: 0.125rem; margin-bottom: 1rem; color: var(--confetti-yellow); }
.review-star { fill: currentColor; }
.review-card-text { flex: 1; color: rgba(26,26,32,0.8); line-height: 1.6; font-size: 1rem; }
.review-card-figcaption { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.review-card-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 0.875rem; border: 2px solid var(--foreground); flex-shrink: 0; }
.review-card-avatar.is-pink { background: var(--confetti-pink); }
.review-card-avatar.is-teal { background: var(--confetti-teal); }
.review-card-avatar.is-yellow { background: var(--confetti-yellow); color: var(--foreground); }
.review-card-avatar.is-purple { background: var(--confetti-purple); }
.review-card-meta { display: flex; flex-direction: column; min-width: 0; }
.review-card-name { font-weight: 700; font-size: 0.875rem; }
.review-card-role { font-size: 0.75rem; color: rgba(26,26,32,0.55); }
.reviews-note { margin-top: 2.5rem; text-align: center; font-size: 0.75rem; color: rgba(26,26,32,0.55); }
.reviews-confetti { display: none; position: absolute; }
@media (min-width: 1024px) { .reviews-confetti { display: block; } }
.reviews-confetti--square { right: -2rem; top: 50%; width: 1.5rem; height: 1.5rem; background: var(--confetti-pink); transform: rotate(45deg); border: 2px solid var(--foreground); }
.reviews-confetti--ring { left: -3rem; bottom: 25%; width: 2rem; height: 2rem; border-radius: 50%; border: 4px solid var(--confetti-teal); }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section { padding: 5rem 0; background: color-mix(in srgb, var(--muted) 40%, transparent); }
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }
.faq-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-inner { grid-template-columns: 4fr 8fr; gap: 4rem; } }
.faq-intro { position: sticky; top: 7rem; align-self: start; }
.faq-subtext { margin-top: 1rem; font-size: 1.125rem; color: rgba(26,26,32,0.7); line-height: 1.6; }
.faq-intro .btn-ghost { margin-top: 2rem; }
.faq-accordion { display: flex; flex-direction: column; gap: 1.25rem; }
.faq-item { position: relative; }
.faq-item-shadow { position: absolute; inset: 0; transform: translate(6px, 6px); border-radius: 1rem; }
.faq-item-shadow.is-pink { background: var(--confetti-pink); }
.faq-item-shadow.is-purple { background: var(--confetti-purple); }
.faq-item-shadow.is-teal { background: var(--confetti-teal); }
.faq-item-shadow.is-yellow { background: var(--confetti-yellow); }
.faq-item-body { position: relative; border-radius: 1rem; border: 2px solid var(--foreground); background: #fff; overflow: hidden; }
.faq-item-trigger { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; }
.faq-item-trigger:hover { background: color-mix(in srgb, var(--muted) 30%, transparent); }
.faq-item-icon { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.faq-item-icon.is-pink { background: var(--confetti-pink); }
.faq-item-icon.is-purple { background: var(--confetti-purple); }
.faq-item-icon.is-teal { background: var(--confetti-teal); }
.faq-item-icon.is-yellow { background: var(--confetti-yellow); }
.faq-icon-minus { display: none; }
.faq-item-trigger[aria-expanded="true"] .faq-icon-plus { display: none; }
.faq-item-trigger[aria-expanded="true"] .faq-icon-minus { display: block; }
.faq-item-question { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.3; flex: 1; min-width: 0; padding-right: 0.5rem; }
@media (min-width: 768px) { .faq-item-question { font-size: 1.25rem; } }
.faq-item-panel { overflow: hidden; transition: max-height 0.35s var(--transition-smooth); }
.faq-item-panel[hidden] { display: none; }
.faq-item-panel > div, .faq-item-panel > p { padding-left: 1.5rem; padding-right: 1.5rem; }
.faq-item-divider { height: 1px; background: var(--border); margin-bottom: 1rem; }
.faq-item-answer { padding-bottom: 1.5rem; color: rgba(26,26,32,0.7); line-height: 1.65; font-size: 0.9375rem; }
@media (min-width: 768px) { .faq-item-answer { font-size: 1rem; } }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band-section { background: color-mix(in srgb, var(--muted) 40%, transparent); padding: 3.5rem 0 0; }
@media (min-width: 768px) { .cta-band-section { padding: 5rem 0 0; } }
.cta-band { position: relative; border-radius: 1.5rem; overflow: hidden; padding: 2rem; text-align: center; color: #fff; background-size: cover; background-position: center; }
@media (min-width: 768px) { .cta-band { padding: 3rem; } }
.cta-band-overlay-wash { position: absolute; inset: 0; background: linear-gradient(to bottom right, color-mix(in srgb, var(--confetti-pink) 80%, transparent), color-mix(in srgb, var(--confetti-purple) 80%, transparent), color-mix(in srgb, var(--confetti-teal) 80%, transparent)); }
.cta-band-overlay-dots { position: absolute; inset: 0; opacity: 0.15; background-image: radial-gradient(circle at 20% 30%, #fff 2px, transparent 2px), radial-gradient(circle at 70% 80%, #fff 2px, transparent 2px), radial-gradient(circle at 90% 20%, #fff 1px, transparent 1px); background-size: 60px 60px, 90px 90px, 45px 45px; }
.cta-band-inner { position: relative; max-width: 42rem; margin: 0 auto; }
.cta-band-icon { margin: 0 auto 1.25rem; opacity: 0.9; }
.cta-band-subtext { margin-top: 1rem; font-size: 1.125rem; color: rgba(255,255,255,0.9); }
.cta-band-ctas { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .cta-band-ctas { flex-direction: row; } }
.cta-band-btn-primary { background: #fff; color: var(--foreground); padding: 1rem 2rem; }
.cta-band-btn-primary:hover { background: var(--confetti-yellow); }
.cta-band-btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 9999px; padding: 1rem 2rem; border: 2px solid rgba(255,255,255,0.7); color: #fff; font-weight: 600; }
.cta-band-btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; background: var(--foreground); color: var(--background); margin-top: 5rem; }
.site-footer-inner { padding-top: 4rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .site-footer-inner { padding-bottom: 4rem; } }
.site-footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .site-footer-top { grid-template-columns: 5fr 7fr; } }
.site-footer-logo { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.site-footer .site-footer-logo-img {
  position: static;
  width: auto;
  max-width: none;
  height: 3.5rem;
  max-height: 3.5rem;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 1rem;
  padding: 0.375rem;
}
.site-footer-brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.site-footer-blurb { color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 26rem; margin-bottom: 1.5rem; }
.site-footer-socials { display: flex; align-items: center; gap: 0.5rem; }
.site-footer-socials .site-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.1); color: #fff;
}
.site-footer-socials .site-social-link:hover { background: var(--confetti-purple); color: #fff; }
.site-footer-socials .site-social-link--instagram:hover { background: var(--confetti-pink); }
.site-footer-socials .site-social-link--tiktok:hover { background: var(--confetti-teal); }
.site-footer-socials .site-social-link--etsy:hover,
.site-footer-socials .site-social-link--email:hover { background: var(--confetti-yellow); color: var(--foreground); }

.site-footer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 480px) { .site-footer-columns { grid-template-columns: repeat(3, 1fr); } }
.site-footer-col--contact { grid-column: span 2; }
@media (min-width: 480px) { .site-footer-col--contact { grid-column: span 1; } }
.site-footer-heading { font-family: var(--font-display); font-size: 1.125rem; color: var(--confetti-yellow); margin-bottom: 1rem; }
.site-footer-list { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; }
.site-footer-list a, .site-footer-list button { color: rgba(255,255,255,0.7); }
.site-footer-list a:hover, .site-footer-list button:hover { color: #fff; }
.site-footer-contact-link { display: inline-flex; align-items: flex-start; gap: 0.5rem; color: rgba(255,255,255,0.7); word-break: break-word; }
.site-footer-contact-link:hover { color: #fff; }

.site-footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; padding-top: 2rem; }
@media (min-width: 640px) { .site-footer-bottom { flex-direction: row; justify-content: space-between; align-items: baseline; text-align: left; gap: 2.5rem; } }
.site-footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--confetti-yellow); font-size: 0.875rem; }
.site-footer-legal { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; }
@media (min-width: 640px) { .site-footer-legal { align-items: flex-end; } }
.site-footer-legal p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.site-footer-credit-link { color: var(--confetti-yellow); text-decoration: underline; text-underline-offset: 2px; }
.site-footer-credit-link:hover { color: #fff; }

/* ==========================================================================
   CONTACT MODAL (matches Lovable / shadcn Dialog)
   ========================================================================== */
.theme-modal { position: fixed; inset: 0; z-index: 60; display: none; }
.theme-modal.is-open { display: block; }
.theme-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  animation: theme-fade-in-quick 0.2s ease;
}
@keyframes theme-fade-in-quick { from { opacity: 0; } to { opacity: 1; } }
.theme-modal-content {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 61;
  display: grid; gap: 1rem; width: calc(100% - 2rem); max-width: 32rem; max-height: 90vh; overflow-y: auto;
  background: var(--background); border: 1px solid var(--border); border-radius: 0.5rem;
  padding: 1rem 1.5rem 1.25rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  opacity: 0;
}
@media (min-width: 640px) {
  .theme-modal-content { padding: 1.25rem 1.5rem; width: 100%; }
}
.theme-modal.is-open .theme-modal-content { animation: theme-modal-in 0.2s var(--transition-reveal) forwards; }
.theme-modal-close {
  position: absolute; right: 1rem; top: 1rem; opacity: 0.7; border-radius: 0.125rem;
  padding: 0.25rem; line-height: 0; color: var(--foreground);
}
.theme-modal-close:hover { opacity: 1; background: var(--muted); }
.theme-modal-header { display: flex; flex-direction: column; gap: 0.375rem; padding-right: 2rem; }
.theme-modal-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.2; margin: 0;
}
.theme-modal-description { color: rgba(26,26,32,0.55); font-size: 0.875rem; line-height: 1.5; margin: 0; }
.theme-modal-contacts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; font-size: 0.875rem;
}
.theme-modal-contacts a {
  display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(26,26,32,0.8);
}
.theme-modal-contacts a:hover { color: var(--confetti-pink); }
.theme-modal-contacts a.theme-modal-contact--facebook:hover { color: var(--confetti-purple); }
#theme-contact-form { display: grid; gap: 0.75rem; }
.theme-modal-success { text-align: center; padding: 2rem 0; }
.theme-modal-success.is-visible { animation: theme-success-pop 0.35s var(--transition-reveal); }
.theme-modal-success-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple));
}
.theme-modal-success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal-success p { color: rgba(26,26,32,0.55); font-size: 0.875rem; line-height: 1.5; }
#theme-contact-form.is-hidden { display: none; }
#theme-contact-form .theme-form-submit { width: 100%; font-size: 0.875rem; padding: 0.875rem 1.75rem; }

/* ==========================================================================
   SIDE CART DRAWER
   ========================================================================== */
#theme-cart-overlay {
  position: fixed; inset: 0; background: rgba(26,26,32,0.4); backdrop-filter: blur(4px); z-index: 55;
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
#theme-cart-drawer {
  position: fixed; right: -100%; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--background);
  border-left: 1px solid var(--border); z-index: 56; display: flex; flex-direction: column; box-shadow: var(--shadow-pop);
  transition: right 0.35s cubic-bezier(0.25, 0.4, 0.25, 1);
}
body.cart-open #theme-cart-drawer { right: 0; }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: linear-gradient(135deg, color-mix(in srgb, var(--confetti-pink) 10%, transparent), color-mix(in srgb, var(--confetti-purple) 10%, transparent)); }
.theme-cart-drawer-title { font-size: 1.5rem; margin-top: 0.25rem; }
.theme-cart-drawer-close { padding: 0.5rem; border-radius: 9999px; }
.theme-cart-drawer-close:hover { background: var(--muted); }
.theme-cart-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer-empty-icon { width: 4rem; height: 4rem; border-radius: 50%; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)); }
.theme-cart-drawer-empty-title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-cart-drawer-empty-text { color: rgba(26,26,32,0.6); margin-bottom: 2rem; max-width: 18rem; }
.theme-cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer-item { display: flex; gap: 1rem; padding: 0.75rem; border-radius: 0.75rem; border: 2px solid var(--border); }
.theme-cart-drawer-item.is-entering { animation: theme-slide-in-right 0.25s var(--transition-reveal) forwards; }
.theme-cart-drawer-item-image { position: relative; width: 5rem; height: 6rem; border-radius: 0.5rem; background: var(--muted); overflow: hidden; flex-shrink: 0; display: block; line-height: 0; }
#theme-cart-drawer .theme-cart-drawer-item-image img,
#theme-cart-drawer img.theme-cart-drawer-item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.theme-cart-drawer-item-info { flex: 1; min-width: 0; }
.theme-cart-drawer-item-name { font-family: var(--font-display); font-size: 1rem; display: block; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.theme-cart-drawer-item-name:hover { color: var(--confetti-pink); }
.theme-cart-drawer-item-variation { font-size: 0.75rem; color: rgba(26,26,32,0.55); margin-top: 0.125rem; }
.theme-cart-drawer-item-price { font-size: 0.875rem; font-weight: 600; color: var(--confetti-pink); margin-top: 0.25rem; }
.theme-cart-drawer-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.625rem; }
.theme-cart-drawer-qty { display: inline-flex; align-items: center; border: 2px solid var(--border); border-radius: 9999px; }
.theme-cart-drawer-qty button { padding: 0.375rem 0.625rem; }
.theme-cart-drawer-qty button:hover { color: var(--confetti-pink); }
.theme-cart-drawer-qty span { font-size: 0.75rem; width: 1.75rem; text-align: center; font-weight: 600; }
.theme-cart-drawer-remove { margin-left: auto; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: rgba(26,26,32,0.55); }
.theme-cart-drawer-remove:hover { color: #d92d20; }
.theme-cart-drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer-subtotal { display: flex; justify-content: space-between; align-items: baseline; }
.theme-cart-drawer-subtotal span:first-child { text-transform: uppercase; font-size: 0.6875rem; letter-spacing: 0.18em; font-weight: 600; color: rgba(26,26,32,0.7); }
.theme-cart-drawer-subtotal-value { font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer-shipping-note { font-size: 0.75rem; color: rgba(26,26,32,0.55); }
.theme-cart-drawer-checkout-btn { width: 100%; }
.theme-cart-drawer-empty-btn { width: 100%; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,32,0.55); padding: 0.25rem 0; }
.theme-cart-drawer-empty-btn:hover { color: #d92d20; }

/* ==========================================================================
   SINGLE PRODUCT PAGE (Lovable ProductDetail parity)
   ========================================================================== */
body.single-product-page.theme-no-hero .site-main.single-product-main { padding-top: 3rem; }
.single-product-main { min-height: 100vh; }
/* Product detail content must be visible immediately (not gated by scroll-reveal). */
.single-product-main .theme-product-gallery.reveal-item,
.single-product-main .theme-product-info.reveal-item,
.single-product-main .single-product-breadcrumb { opacity: 1; transform: none; filter: none; }
.single-product-breadcrumb { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 0; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(26,26,32,0.55); flex-wrap: wrap; }
.single-product-breadcrumb a:hover { color: var(--confetti-pink); }
.single-product-breadcrumb .is-current { color: var(--foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 1rem 0 5rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) {
  .theme-product-layout { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3.5rem; }
  .theme-product-gallery { grid-column: span 7; }
  .theme-product-info { grid-column: span 5; }
}
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { position: sticky; top: 7rem; align-self: start; } }
body.admin-bar .theme-product-info { top: calc(7rem + var(--admin-bar-height, 0px)); }
.theme-product-main-image { position: relative; aspect-ratio: 1 / 1; border-radius: 1rem; background: var(--muted); overflow: hidden; border: 2px solid var(--border); }
.theme-product-main-image .theme-card-badge--detail,
.theme-product-main-image .chip.theme-card-badge--detail {
  position: absolute; top: 1rem; left: 1rem; right: auto;
  text-transform: none; letter-spacing: normal; font-size: 0.75rem; padding: 0.375rem 0.875rem;
  color: #fff; background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple));
}
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 1rem; max-width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; border-radius: 0.5rem; overflow: hidden; border: 2px solid var(--border); background: none; cursor: pointer; }
.theme-product-thumb.is-active { border-color: var(--confetti-pink); }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--confetti-purple) 50%, transparent); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.single-product .product-title { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; margin: 0.5rem 0 1rem; line-height: 1.15; }
@media (min-width: 768px) { .single-product .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .single-product .product-title { font-size: 3rem; } }
.single-product-price { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; }
.single-product-price.text-gradient .woocommerce-Price-amount,
.single-product-price.text-gradient .woocommerce-Price-currencySymbol { background: inherit; -webkit-background-clip: inherit; background-clip: inherit; -webkit-text-fill-color: inherit; color: inherit; }
.single-product-price.text-gradient .single-product-price-muted { background: none; -webkit-text-fill-color: currentColor; color: rgba(26,26,32,0.55); }
.single-product-price .woocommerce-Price-amount { background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.single-product-price-muted { font-size: 1.125rem; font-weight: 500; color: rgba(26,26,32,0.55); background: none; -webkit-text-fill-color: currentColor; }
.single-product-lead { color: rgba(26,26,32,0.8); line-height: 1.625; margin-bottom: 1.5rem; font-size: 1rem; }

.single-product-field { margin-bottom: 1.25rem; }
.single-product-field-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin: 0 0 0.75rem; }
.single-product-variations { margin-bottom: 0.25rem; order: 1; }
.single-product .variations_form { display: flex; flex-direction: column; }
.single-product .single_variation_wrap { order: 2; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 2px solid var(--border); border-radius: 9999px; }
.theme-qty-minus, .theme-qty-plus { padding: 0.75rem 1rem; display: inline-flex; align-items: center; justify-content: center; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--confetti-pink); }
.theme-qty-input { width: 2.75rem; min-width: 2.75rem; border: none; background: transparent; text-align: center; font-weight: 600; -moz-appearance: textfield; padding: 0.75rem 0; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-single-add-btn,
.single-product .single_add_to_cart_button.theme-single-add-btn {
  width: 100%; display: inline-flex !important; align-items: center; justify-content: center; gap: 0.5rem;
  border: none !important; border-radius: 9999px !important; padding: 0.875rem 1.75rem !important; min-height: unset !important;
  font-size: 0.875rem !important; font-weight: 600 !important; letter-spacing: normal !important; text-transform: none !important;
  color: #fff !important; cursor: pointer;
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)) !important;
  box-shadow: 0 14px 30px -10px rgba(255, 26, 128, 0.5);
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), opacity 0.2s ease;
}
.single-product .theme-single-add-btn:hover:not(:disabled):not(.disabled),
.single-product .single_add_to_cart_button.theme-single-add-btn:hover:not(:disabled):not(.disabled) {
  transform: translateY(-2px); opacity: 1 !important;
  box-shadow: 0 18px 38px -10px rgba(255, 26, 128, 0.6);
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)) !important;
  color: #fff !important;
}
.single-product .theme-single-add-btn:disabled,
.single-product .theme-single-add-btn.disabled,
.single-product .single_add_to_cart_button.theme-single-add-btn:disabled,
.single-product .single_add_to_cart_button.theme-single-add-btn.disabled {
  opacity: 0.6 !important; cursor: not-allowed !important; transform: none !important; pointer-events: none !important;
}

.single-product-soldout-box { margin-top: 1rem; padding: 1.25rem; border-radius: 0.75rem; border: 2px solid var(--border); background: var(--muted); text-align: center; }
.single-product-soldout-title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.single-product-soldout-text { font-size: 0.875rem; color: rgba(26,26,32,0.7); margin-bottom: 1rem; }

.single-product-accordions { margin-top: 2rem; border-top: 1px solid var(--border); }
.single-product-accordion--shipping { border-top: 1px solid var(--border); }
.single-product-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.single-product-accordion-trigger span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.accordion-chevron { transition: transform 0.2s var(--transition-smooth); }
.single-product-accordion-trigger[aria-expanded="true"] .accordion-chevron { transform: rotate(180deg); }
.single-product-accordion-panel { padding-bottom: 1.5rem; color: rgba(26,26,32,0.75); font-size: 0.875rem; line-height: 1.625; }
.single-product-accordion-panel[hidden] { display: none; }
.single-product-accordion-panel p + p { margin-top: 0.5rem; }
.single-product-accordion-link { color: var(--confetti-pink); }
.single-product-accordion-link:hover { text-decoration: underline; }
.single-product-description-text { margin-bottom: 1rem; }
.single-product-description-text--preline { white-space: pre-line; }
.single-product-description-text p:last-child { margin-bottom: 0; }
.single-product-details-list ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.single-product-details-list li { display: flex; align-items: flex-start; font-size: 0.875rem; color: rgba(26,26,32,0.75); }
.single-product-details-list li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--confetti-pink); margin-top: 0.5rem; margin-right: 0.75rem; }
.single-product .woocommerce-variation-description,
.single-product .woocommerce-variation-price,
.single-product .woocommerce-variation-availability,
.single-product .woocommerce-variation p[role="alert"] { display: none; }

/* Variation attribute pills */
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill { padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; border: 2px solid var(--border); border-radius: 9999px; background: transparent; cursor: pointer; }
.theme-attr-pill:hover { border-color: var(--confetti-purple); }
.theme-attr-pill.is-selected { background: var(--foreground); color: #fff; border-color: var(--foreground); }
.reset_variations { display: none; }

/* Color attribute pills (Lovable ProductDetail) */
.theme-color-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-color-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 0.875rem; border: 2px solid var(--border); border-radius: 9999px; background: transparent; cursor: pointer; }
.theme-color-pill:hover { border-color: var(--confetti-purple); }
.theme-color-pill.is-selected { border-color: var(--foreground); background: var(--muted); }
.theme-color-swatch { width: 0.75rem; height: 0.75rem; border-radius: 50%; border: 1px solid var(--border); flex-shrink: 0; }

/* Add-to-cart button icon swap */
.theme-single-add-btn-icons { display: inline-flex; align-items: center; justify-content: center; }
.theme-single-add-btn-icon--check { display: none; }
.theme-single-add-btn.is-added .theme-single-add-btn-icon--bag { display: none; }
.theme-single-add-btn.is-added .theme-single-add-btn-icon--check { display: inline-flex; }

/* Related products (Section 31.13 — same card wrapper as shop/archive) */
.related-products-section { border-top: 1px solid var(--border); padding: 4rem 0; opacity: 1; transform: none; filter: none; }
.related-products-section .reveal-item { opacity: 1; transform: none; filter: none; }
.related-products-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.related-products-heading { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.15; }
@media (min-width: 768px) { .related-products-heading { font-size: 2.25rem; } }
.related-products-browse-link { font-size: 0.875rem; font-weight: 600; color: var(--confetti-pink); }
.related-products-browse-link:hover { text-decoration: underline; }
.theme-product-grid--related { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-product-grid--related { grid-template-columns: repeat(4, 1fr); } }

/* Reinforce single-product CTA over generic WooCommerce button rules */
.single-product .theme-single-add-btn,
.single-product .single_add_to_cart_button.theme-single-add-btn {
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)) !important;
  color: #fff !important;
  width: 100% !important;
}

/* ==========================================================================
   WOOCOMMERCE ADD-TO-CART BUTTON OVERRIDES (Section 11.4.1)
   ========================================================================== */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
  background-color: var(--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;
  gap: 0.5rem !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  background-color: var(--primary) !important;
  color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--primary) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-card-add-btn {
  min-height: unset !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 9999px !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Hide WooCommerce's injected "View cart" link (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; }

/* WooCommerce notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-radius: 0.75rem; border: 2px solid var(--border); padding: 1rem 1.25rem 1rem 3rem; font-size: 0.9375rem;
  background: var(--muted); color: var(--foreground); list-style: none; margin: 0 0 1.5rem;
}
.woocommerce-error { border-color: #d92d20; background: #fdf1f0; }

/* ==========================================================================
   ARCHIVE / SHOP PAGE
   ========================================================================== */
.woocommerce-archive-main { padding: 3rem 0 5rem; }
.woocommerce-archive-header { margin-bottom: 2.5rem; }
.theme-product-grid--archive { margin-top: 1rem; }

/* ==========================================================================
   CHECKOUT BLOCK (Section 13) — native WooCommerce Checkout Block styling
   ========================================================================== */
body.woocommerce-checkout .site-main { padding-top: calc(var(--header-height) + var(--announcement-height)); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title { margin-bottom: 2rem; font-size: 2rem; }

/* Parents must not compress the checkout block below its target width */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .site-main .entry-content,
body.woocommerce-checkout .site-main article {
  max-width: none;
  width: 100%;
}

/* Checkout block wrapper — centered, capped at --checkout-max-width */
body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout,
body.woocommerce-checkout .entry-content .wc-block-checkout,
.entry-content > .wp-block-woocommerce-checkout,
.entry-content > .wc-block-checkout,
.entry-content .wc-block-checkout.alignwide {
  width: 100%;
  max-width: var(--checkout-max-width);
  margin-inline: auto;
  box-sizing: border-box;
}

/* Notices sit above the layout, aligned with checkout content */
body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-checkout .wc-block-components-notices {
  width: 100%;
  max-width: var(--checkout-max-width);
  margin-inline: auto;
  box-sizing: border-box;
}

/* Two-column grid lives on the sidebar-layout container (not the outer wrapper) */
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout {
  display: flex;
  flex-direction: column;
  gap: var(--checkout-gap);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
  body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
  .entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(var(--checkout-sidebar-min), var(--checkout-sidebar-max));
    gap: var(--checkout-gap);
    align-items: start;
  }
}

/* First child: notices span full grid width */
body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notice-banner,
.entry-content .wc-block-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
.entry-content .wc-block-checkout .wc-block-components-sidebar-layout > .wc-block-components-notice-banner {
  grid-column: 1 / -1;
  order: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__main,
.entry-content .wc-block-checkout .wc-block-checkout__main {
  grid-column: 1;
  order: 2;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout .wc-block-checkout__sidebar {
  grid-column: 1;
  order: 3;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-checkout__sidebar,
  .entry-content .wc-block-checkout .wc-block-checkout__sidebar {
    grid-column: 2;
    min-width: var(--checkout-sidebar-min);
  }
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block {
  width: 100%;
  box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: color-mix(in srgb, var(--muted) 40%, transparent);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-checkout__sidebar { padding: 2rem; position: sticky; top: 7rem; }
}
body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-cart__totals-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
  width: 100% !important;
  max-width: none !important;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  background-color: var(--background);
  color: var(--foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus-visible,
body.woocommerce-checkout .wc-block-components-select select:focus {
  outline: none; border-color: var(--confetti-purple);
}
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }
body.woocommerce-checkout ::placeholder { color: rgba(26,26,32,0.4); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple)) !important;
  border: none !important; border-radius: 9999px !important; color: #fff !important;
  font-weight: 600 !important; text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner {
  border-radius: 0.75rem; font-family: var(--font-body);
}

/* Cart / My Account width parity (Section 13.7) */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + var(--announcement-height)); padding-bottom: 4rem; }
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { margin-bottom: 2rem; }

body.page-enter .site-main { animation: theme-page-enter 0.45s cubic-bezier(0.25, 0.4, 0.25, 1) forwards; }

/* ==========================================================================
   THANK YOU PAGE (Section 22.8)
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: calc(var(--header-height) + var(--announcement-height)); }
.theme-thankyou-hero { max-width: 42rem; margin: 0 auto 3rem; padding: 4rem 0 2rem; text-align: center; }
.theme-thankyou-icon {
  width: 5rem; height: 5rem; border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--confetti-pink), var(--confetti-purple));
}
.theme-thankyou-title { font-size: 2.25rem; margin: 0.75rem 0 1.25rem; line-height: 1.1; }
@media (min-width: 768px) { .theme-thankyou-title { font-size: 3rem; } }
.theme-thankyou-text { font-size: 1.125rem; color: rgba(26,26,32,0.75); line-height: 1.6; margin-bottom: 2.5rem; }
.theme-thankyou-hero .btn-primary { margin-top: 0.5rem; }
body.theme-thankyou-page .woocommerce-thankyou-order-received,
body.theme-thankyou-page .woocommerce-notice--success { display: none; }
body.theme-thankyou-page .wc-block-order-confirmation-status {
  text-align: center; max-width: 42rem; margin: 0 auto 2rem;
}
body.theme-thankyou-page .wc-block-order-confirmation-status svg { display: none; }
body.theme-thankyou-page .wc-block-order-confirmation-status__heading {
  font-family: var(--font-display); font-size: 2.25rem;
}
@media (min-width: 768px) {
  body.theme-thankyou-page .wc-block-order-confirmation-status__heading { font-size: 3rem; }
}
body.theme-thankyou-page .woocommerce-order { max-width: 48rem; margin: 0 auto; }
body.theme-thankyou-page h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem; font-family: var(--font-display); font-size: 1.75rem; }
body.theme-thankyou-page .woocommerce-order-overview {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 1.5rem; margin: 0 0 2rem;
  border-radius: var(--card-radius); background: color-mix(in srgb, var(--muted) 50%, transparent);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; font-family: var(--font-display); font-size: 1.125rem; margin-top: 0.25rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--border); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
  display: flex; flex-direction: column; gap: 1.5rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
  max-width: 480px; overflow-wrap: break-word; border: 2px solid var(--border); border-radius: var(--card-radius);
  padding: 1.25rem; font-style: normal; line-height: 1.6;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.theme-404-main { min-height: 60vh; display: flex; align-items: center; }
.theme-404-inner { text-align: center; padding: 4rem 0; max-width: 36rem; margin: 0 auto; }
.theme-404-eyebrow { margin-bottom: 1rem; }
.theme-404-heading { font-size: 2.25rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .theme-404-heading { font-size: 3rem; } }
.theme-404-text { font-size: 1.125rem; color: rgba(26,26,32,0.6); margin-bottom: 2rem; line-height: 1.6; }
.theme-404-link.btn-primary { text-decoration: none; }

/* Generic page loop (index.php fallback) */
.theme-generic-loop { padding: 3rem 0; }
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }
