/*
Theme Name: Spaws by Vani
Theme URI: https://spaws.pet
Author: Spaws by Vani
Author URI: https://spaws.pet
Description: Luxury pet products & professional pet spa WordPress theme. Compatible with Elementor page builder and WooCommerce. Pixel-perfect, SEO-optimised, lightweight.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spaws-by-vani
Tags: e-commerce, pet, spa, woocommerce, elementor-ready, custom-logo, custom-menu, translation-ready

Spaws by Vani WordPress Theme, Copyright 2024 Spaws by Vani
Built with love for Nepal's pets.
*/

/* ============================================
   SPAWS BY VANI — Main CSS Design System
   Brand: Luxury Pet Products & Spa, Nepal
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --teal:        #2BB5A6;
  --teal-dark:   #1E9E90;
  --teal-light:  #A8DED9;
  --teal-pale:   #E8F7F5;
  --forest:      #1A2E2C;
  --forest-mid:  #2D4A47;
  --cream:       #F5F4EF;
  --cream-warm:  #EDE9E0;
  --ink:         #1A1A1A;
  --ink-mid:     #444;
  --ink-soft:    #777;
  --white:       #FDFCF9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(26,46,44,0.08);
  --shadow-lg: 0 12px 48px rgba(26,46,44,0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-xl { font-size: clamp(3.5rem, 6vw, 7rem); font-weight: 300; line-height: 1.0; }
.display-lg { font-size: clamp(2.5rem, 4vw, 5rem); font-weight: 400; }
.display-md { font-size: clamp(2rem, 3vw, 3.5rem); }
.display-sm { font-size: clamp(1.5rem, 2.5vw, 2.5rem); }

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ---- Layout ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(253,252,249,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26,46,44,0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo img { height: auto; width: auto; }

.nav-logo-spa,
.nav-logo-products {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.nav-dogs {
  height: 50px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.nav-dogs:hover { opacity: 1; }

/* Tighten gap on smaller screens so logos still fit */
@media (max-width: 1100px) {
  .nav-logo-spa,
  .nav-logo-products { height: 36px; }
  .nav-dogs          { height: 42px; }
  .nav-logo          { gap: 4px; }
}

@media (max-width: 768px) {
  .nav-logo-spa,
  .nav-logo-products { height: 30px; }
  .nav-dogs          { height: 36px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid) !important;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--teal) !important; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal) !important; }

/* ── Shop Category Submenu (desktop dropdown) ───────────────────────────── */
.nav-links li.has-submenu {
  position: relative;
}

.nav-links li.has-submenu > .nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(26,46,44,0.14);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  z-index: 9999;
}

/* Show on hover (desktop) or when .open class is toggled (mobile) */
.nav-links li.has-submenu:hover > .nav-submenu,
.nav-links li.has-submenu.open > .nav-submenu {
  display: block;
}

.nav-submenu li {
  list-style: none;
}

.nav-submenu li a {
  display: block;
  padding: 9px 20px;
  color: var(--ink) !important;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-submenu li a::after { display: none !important; }

.nav-submenu li a:hover {
  background: var(--teal-pale);
  color: var(--teal-dark) !important;
}

.nav-submenu li:first-child a {
  border-bottom: 1px solid var(--cream-warm);
  font-weight: 500;
  margin-bottom: 4px;
  padding-bottom: 12px;
}

/* Toggle arrow button — hidden on desktop, visible on mobile */
.nav-submenu-toggle {
  display: none;
}

/* ── Mobile nav links list ──────────────────────────────────────────────── */
.mobile-nav-overlay .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-overlay .mobile-nav-links li { list-style: none; }

/* Mobile has-submenu: accordion style */
.mobile-nav-overlay li.has-submenu > .nav-submenu {
  display: none;
  list-style: none;
  padding: 12px 0 4px;
  margin: 0;
}

.mobile-nav-overlay li.has-submenu.open > .nav-submenu {
  display: block;
}

.mobile-nav-overlay .nav-submenu li a {
  display: block;
  padding: 8px 0;
  font-size: 0.85rem;
  color: inherit !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  opacity: 0.8;
}

.mobile-nav-overlay .nav-submenu li a:hover { opacity: 1; }

.mobile-nav-overlay .nav-submenu li:first-child a {
  border-bottom: none;
  font-weight: 600;
  opacity: 1;
  margin-bottom: 0;
  padding-bottom: 8px;
}

/* Toggle arrow — visible only in mobile overlay */
.mobile-nav-overlay .nav-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: inherit;
  font-size: 0.7rem;
  cursor: pointer;
  padding: 0 4px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.mobile-nav-overlay li.has-submenu.open .nav-submenu-toggle {
  transform: rotate(180deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px) !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary { background: var(--teal); color: var(--white); border: 2px solid var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,181,166,0.3); }

.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-dark { background: var(--forest); color: var(--white); border: 2px solid var(--forest); }
.btn-dark:hover { background: var(--forest-mid); border-color: var(--forest-mid); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }

.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }

/* ---- Product Cards ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: block;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.product-card-body { padding: 20px 22px 24px; }
.product-card-body .overline { margin-bottom: 4px; }

.product-card-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 6px; color: var(--ink); }

.product-card-desc {
  font-size: 0.825rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer { display: flex; align-items: center; justify-content: space-between; }

.product-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--teal); }

.product-card-cta {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  font-size: 1.1rem;
}
.product-card:hover .product-card-cta { background: var(--teal); color: var(--white); }

/* ---- Tags ---- */
.tag { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; }
.tag-teal { background: var(--teal-pale); color: var(--teal-dark); }
.tag-dark { background: var(--forest); color: var(--white); }
.tag-cream { background: var(--cream-warm); color: var(--ink-mid); }

/* ---- Section Headers ---- */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }
.section-title-block .overline { margin-bottom: 10px; }

/* ---- Dividers ---- */
.divider-teal { width: 48px; height: 3px; background: var(--teal); border-radius: 2px; margin: 16px 0; }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Footer ---- */
.footer { background: var(--forest); color: rgba(255,255,255,0.8); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-logo { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-dogs { height: 60px; width: auto; opacity: 0.4; margin: 16px 0; filter: brightness(0) invert(1); }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--teal-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.footer-social a:hover { border-color: var(--teal); color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-bottom-text { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ---- Scroll Reveal Animations ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible,
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(43,181,166,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ---- Cart Icon ---- */
.nav-cart-icon { display: flex; align-items: center; gap: 4px; margin-left: 16px; position: relative; color: var(--ink); text-decoration: none; }
.nav-cart-icon:hover { color: var(--teal); }
.nav-cart-bag { font-size: 1.25rem; }
.nav-cart-count { position: absolute; top: -6px; right: -8px; background: var(--teal); color: white; font-size: 0.6rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }
.nav-cart-count[data-count="0"] { display: none; }

/* ---- Mobile Hamburger ---- */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }

/* ---- Mobile Nav Overlay ---- */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(253,252,249,0.98);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a { font-size: 1.5rem; font-family: var(--font-display); color: var(--ink); transition: color var(--transition); }
.mobile-nav-overlay a:hover { color: var(--teal); }
.mobile-nav-overlay .nav-cta { margin-top: 12px; }
.mobile-nav-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; color: var(--ink-mid); cursor: pointer; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .container-narrow { padding: 0 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cart-icon { margin-left: 8px; }
  .nav-cart-bag { font-size: 1.7rem; }
  .nav-cart-count { min-width: 20px; height: 20px; font-size: 0.7rem; top: -8px; right: -10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   HOMEPAGE SECTIONS
   ============================================= */

/* ---- Hero Panoramic ---- */
.hero { height: 500vh; position: relative; }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #F5F0E8; }
.hero-panorama-wrap { position: absolute; inset: 0; overflow: hidden; display: flex; align-items: center; }
.hero-panorama { position: relative; flex-shrink: 0; width: 100%; height: auto; transform-origin: left center; will-change: transform; }
.hero-pano-inner { position: relative; display: block; transform-origin: left center; will-change: transform; }
.pano-base { width: 100%; height: auto; max-width: none; display: block; user-select: none; pointer-events: none; }
.pano-variant { position: absolute; top: 0; left: 0; width: 100%; height: auto; max-width: none; display: block; user-select: none; pointer-events: none; }
.hero-color-layer { position: absolute; top: 0; left: 0; height: 100%; pointer-events: none; z-index: 3; transform-origin: left center; will-change: transform; }
.color-blob { position: absolute; border-radius: 50%; opacity: 0; transition: opacity 1.2s ease; pointer-events: none; }
.color-blob.lit { opacity: 1; }
.blob-dogs { width: 340px; height: 260px; background: radial-gradient(ellipse at center, rgba(220,155,50,0.28) 0%, rgba(220,155,50,0.12) 45%, transparent 72%); top: 50%; transform: translate(-50%,-50%); filter: blur(18px); }
.blob-bag { width: 280px; height: 360px; background: radial-gradient(ellipse at center, rgba(40,100,230,0.28) 0%, rgba(40,100,230,0.10) 50%, transparent 75%); top: 50%; transform: translate(-50%,-52%); filter: blur(16px); }
.blob-spa { width: 380px; height: 280px; background: radial-gradient(ellipse at center, rgba(43,181,166,0.30) 0%, rgba(43,181,166,0.10) 50%, transparent 75%); top: 50%; transform: translate(-50%,-50%); filter: blur(22px); }

@keyframes petBreathe { 0%,100% { transform: none; } 25% { transform: translate(0.7px,-0.5px) scale(1.003); } 50% { transform: translate(-0.4px,0.4px) scale(1.005); } 75% { transform: translate(0.3px,-0.3px) scale(1.002); } }
.hero-pano-inner.scene-alive { animation: petBreathe 5s ease-in-out infinite; }

.hero-hotspot { position: absolute; background: white; color: var(--ink); font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; padding: 7px 14px 7px 10px; border-radius: 50px; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); opacity: 0; transform: translateY(8px) scale(0.9); transition: opacity 0.4s ease, transform 0.4s ease; cursor: pointer; white-space: nowrap; }
.hero-hotspot.visible { opacity: 1; transform: translateY(0) scale(1); }
.hero-hotspot .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.hero-hotspot .arrow { color: var(--teal); margin-left: 2px; }
.hero-hotspot-5 { background: var(--teal); color: white; }
.hero-hotspot-5 .dot { background: white; }
.hero-hotspot-5 .arrow { color: white; }

.hero-scroll-cue { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 1; transition: opacity 0.4s ease; z-index: 10; }
.hero-scroll-cue.hidden { opacity: 0; }
.hero-scroll-cue-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mid); }
.hero-scroll-cue-line { width: 1px; height: 40px; background: var(--teal); animation: scrollLine 1.6s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.hero-caption { position: absolute; bottom: 80px; right: 40px; text-align: right; opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; z-index: 10; pointer-events: none; }
.hero-caption.visible { opacity: 1; transform: translateY(0); }
.hero-caption-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.hero-caption-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; font-style: italic; color: var(--ink); }

.hero-progress { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px; z-index: 10; }
.hero-progress-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(26,46,44,0.2); transition: background 0.3s ease, transform 0.3s ease; }
.hero-progress-dot.active { background: var(--teal); transform: scale(1.4); }

/* ---- Brand Story ---- */
.brand-story { background: var(--white); padding: 120px 0; }
.brand-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.brand-story-img-wrap { position: relative; }
.brand-story-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/5; }
.brand-story-dogs { position: absolute; bottom: -24px; right: -24px; width: 160px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1)); }
.brand-story-title { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,4rem); font-weight: 400; line-height: 1.1; margin-bottom: 24px; }
.brand-story-title em { font-style: italic; color: var(--teal); }
.brand-story-text { font-size: 1.05rem; line-height: 1.8; color: var(--ink-mid); margin-bottom: 20px; }
.brand-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--cream-warm); }
.brand-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.brand-stat-label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- Featured Products ---- */
.featured-products { background: var(--cream); padding: 100px 0; }

/* ---- Category Banner ---- */
.category-banner { background: var(--forest); padding: 80px 0; overflow: hidden; position: relative; }
.category-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(43,181,166,0.06); }
.category-banner-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.category-tile { position: relative; aspect-ratio: 4/5; overflow: hidden; cursor: pointer; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.7); }
.category-tile:hover img { transform: scale(1.06); filter: brightness(0.8); }
.category-tile-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; background: linear-gradient(to top, rgba(26,46,44,0.85) 0%, transparent 60%); }
.category-tile-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 6px; }
.category-tile-name { font-family: var(--font-display); font-size: 1.8rem; color: white; font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
.category-tile-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: white; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; width: fit-content; transition: color 0.3s, border-color 0.3s; }
.category-tile:hover .category-tile-link { color: var(--teal-light); border-color: var(--teal-light); }

/* ---- Spa Teaser ---- */
.spa-teaser { padding: 100px 0; background: var(--white); }
.spa-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.spa-teaser-title { font-family: var(--font-display); font-size: clamp(2.2rem,3.5vw,3.8rem); line-height: 1.1; margin-bottom: 24px; }
.spa-teaser-title em { font-style: italic; color: var(--teal); }
.spa-services-list { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.spa-service-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; border-radius: var(--radius-lg); background: var(--cream); transition: background var(--transition); }
.spa-service-item:hover { background: var(--teal-pale); }
.spa-service-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.spa-service-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 2px; }
.spa-service-desc { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.5; }
.spa-teaser-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spa-teaser-img-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); }
.spa-teaser-img-grid img:first-child { grid-row: span 2; aspect-ratio: 1/2; }

/* ---- Testimonials ---- */
.testimonials { background: var(--cream); padding: 100px 0; }
/* Elementor inner sections wrap columns in .elementor-container — target that instead */
.testimonials-grid > .elementor-container { gap: 24px; }
.testimonials-grid .elementor-column { flex: 1 1 0% !important; max-width: none !important; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; }
.testimonial-stars { color: var(--teal); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; font-style: italic; line-height: 1.7; color: var(--ink); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--teal); font-weight: 600; }
.testimonial-name { font-weight: 600; font-size: 0.875rem; }
.testimonial-location { font-size: 0.78rem; color: var(--ink-soft); }

/* ---- Instagram Strip ---- */
.insta-strip { background: var(--forest); padding: 60px 0; text-align: center; }
.insta-strip .overline { color: var(--teal-light); margin-bottom: 8px; }
.insta-strip h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,3rem); color: white; font-weight: 300; margin-bottom: 8px; }
.insta-strip h2 strong { font-weight: 600; color: var(--teal-light); }
.insta-strip p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 32px; }
.insta-handle { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,181,166,0.15); border: 1px solid rgba(43,181,166,0.3); color: var(--teal-light); padding: 10px 24px; border-radius: 50px; font-size: 0.875rem; font-weight: 500; transition: all var(--transition); }
.insta-handle:hover { background: var(--teal); border-color: var(--teal); color: white; }

/* ---- Spaws Hero ---- */
.spa-hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; padding-top: var(--nav-h); }
.spa-hero-content { background: var(--forest); display: flex; flex-direction: column; justify-content: center; padding: 80px 60px 80px 80px; position: relative; z-index: 1; }
.spa-hero-content::after { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(43,181,166,0.06); pointer-events: none; }
.spa-hero-content .overline { color: var(--teal-light); margin-bottom: 16px; }
.spa-hero-title { font-family: var(--font-display); font-size: clamp(3rem,5vw,5.5rem); color: white; font-weight: 300; line-height: 1.05; margin-bottom: 24px; }
.spa-hero-title em { font-style: italic; color: var(--teal-light); }
.spa-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 400px; margin-bottom: 40px; }
.spa-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.spa-hero-img { position: relative; overflow: hidden; }
.spa-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.spa-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,46,44,0.3) 0%, transparent 60%); }
.spa-hero-badge { position: absolute; bottom: 40px; left: 40px; background: rgba(26,46,44,0.85); backdrop-filter: blur(10px); border: 1px solid rgba(43,181,166,0.2); color: white; padding: 16px 24px; border-radius: var(--radius-lg); }
.spa-hero-badge .overline { color: var(--teal-light); margin-bottom: 4px; }
.spa-hero-badge-text { font-family: var(--font-display); font-size: 1.2rem; color: white; }

/* ---- Service Cards ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card { background: var(--cream); border-radius: var(--radius-lg); padding: 36px 32px; position: relative; overflow: hidden; transition: all var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--teal-pale); }
.service-card-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.service-card-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 10px; }
.service-card-desc { font-size: 0.875rem; line-height: 1.7; color: var(--ink-mid); margin-bottom: 20px; }
.service-card-includes { list-style: none; margin-bottom: 24px; }
.service-card-includes li { font-size: 0.82rem; color: var(--ink-mid); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.service-card-includes li::before { content: '✓'; color: var(--teal); font-weight: 600; flex-shrink: 0; }
.service-card-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--teal); }
.service-card-price-note { font-size: 0.75rem; color: var(--ink-soft); margin-top: 2px; }

/* Featured service card */
.service-card-featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 2fr; gap: 0; background: var(--forest); padding: 0; overflow: hidden; }
.service-card-featured:hover { background: var(--forest); }
.service-featured-img { overflow: hidden; }
.service-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card-featured:hover .service-featured-img img { transform: scale(1.04); }
.service-featured-content { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; }
.service-featured-content .service-card-icon { margin-bottom: 12px; }
.service-featured-content .service-card-name { color: white; font-size: 2rem; }
.service-featured-content .service-card-desc { color: rgba(255,255,255,0.6); }
.service-featured-content .service-card-includes li { color: rgba(255,255,255,0.65); }
.service-featured-content .service-card-includes li::before { color: var(--teal-light); }
.service-featured-content .service-card-price { color: var(--teal-light); font-size: 1.5rem; }
.service-featured-content .service-card-price-note { color: rgba(255,255,255,0.35); }

/* ---- Process Steps ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 56px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5%); right: calc(12.5%); height: 1px; background: var(--teal-light); }
.process-step { text-align: center; position: relative; }
.process-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--teal-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--teal); margin: 0 auto 20px; position: relative; z-index: 1; transition: all var(--transition); }
.process-step:hover .process-step-num { background: var(--teal); border-color: var(--teal); color: white; }
.process-step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; }
.process-step-text { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.6; }

/* ---- Why Section ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-feature-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 4px; }
.why-feature-text { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }
.why-img-stack { position: relative; }
.why-img-main { width: 85%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.why-img-accent { position: absolute; bottom: -24px; right: 0; width: 50%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 1/1; object-fit: cover; border: 4px solid var(--white); }

/* ---- Booking Form ---- */
.booking-section { background: var(--forest); padding: 100px 0; position: relative; overflow: hidden; }
.booking-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: rgba(43,181,166,0.05); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.booking-info .overline { color: var(--teal-light); margin-bottom: 12px; }
.booking-info h2 { font-family: var(--font-display); font-size: clamp(2.2rem,3.5vw,3.8rem); color: white; font-weight: 400; line-height: 1.1; margin-bottom: 24px; }
.booking-info h2 em { font-style: italic; color: var(--teal-light); }
.booking-info p { color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 32px; }
.booking-contact-list { display: flex; flex-direction: column; gap: 16px; }
.booking-contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.booking-contact-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(43,181,166,0.12); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* Form */
.booking-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 40px; }
.booking-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: white; font-weight: 400; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); color: white; font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color var(--transition); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: rgba(255,255,255,0.08); }
.form-select option { background: var(--forest); color: white; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; background: var(--teal); color: white; border: none; border-radius: 50px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; cursor: pointer; transition: all var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,181,166,0.35); }
.form-note { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 16px; }

/* ---- Pricing Cards ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: all var(--transition); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured { background: var(--teal); color: white; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.55); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-card.featured .pricing-feature::before { color: white; }
.pricing-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--forest); color: white; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; white-space: nowrap; }
.pricing-tier { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.pricing-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 4px; }
.pricing-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: white; }
.pricing-note { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--cream-warm); }
.pricing-card.featured .pricing-note { border-bottom-color: rgba(255,255,255,0.2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { font-size: 0.85rem; color: var(--ink-mid); display: flex; align-items: center; gap: 8px; }
.pricing-feature::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-cta { display: block; text-align: center; padding: 12px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: all var(--transition); border: 2px solid var(--teal); color: var(--teal); }
.pricing-cta:hover { background: var(--teal); color: white; }
.pricing-card.featured .pricing-cta { border-color: white; color: white; }
.pricing-card.featured .pricing-cta:hover { background: rgba(255,255,255,0.15); }

/* ---- Values Section ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-tile { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 40px 36px; transition: background var(--transition); }
.value-tile:hover { background: rgba(255,255,255,0.06); }
.value-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: rgba(43,181,166,0.2); line-height: 1; margin-bottom: 16px; }
.value-title { font-family: var(--font-display); font-size: 1.5rem; color: white; font-weight: 400; margin-bottom: 12px; }
.value-text { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ---- Contact Page ---- */
.contact-channel { display: flex; align-items: flex-start; gap: 20px; background: var(--white); border-radius: var(--radius-lg); padding: 24px; transition: all var(--transition); text-decoration: none; color: inherit; }
.contact-channel:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.channel-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.channel-icon.teal { background: var(--teal-pale); }
.channel-icon.green { background: #e7f9ee; }
.channel-icon.blue { background: #e8f0fe; }
.channel-icon.pink { background: #fce8f3; }
.channel-icon.dark { background: var(--forest); }
.channel-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.channel-value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.channel-note { font-size: 0.8rem; color: var(--ink-soft); }
.hours-card { background: var(--forest); border-radius: var(--radius-lg); padding: 28px; margin-top: 4px; }
.hours-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: white; font-weight: 400; margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.55); }
.hours-time { color: rgba(255,255,255,0.85); font-weight: 500; }
.hours-time.closed { color: rgba(255,255,255,0.3); }
.map-card { background: var(--teal-pale); border-radius: var(--radius-lg); padding: 32px; margin-top: 4px; text-align: center; }
.map-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: 6px; }
.map-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }

/* ---- FAQ ---- */
.faq-item { padding: 28px 32px; background: var(--cream); border-radius: var(--radius-lg); transition: background var(--transition); }
.faq-item:hover { background: var(--teal-pale); }
.faq-q { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 12px; color: var(--ink); }
.faq-a { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.75; }

/* ---- Shop Filter Bar ---- */
.shop-filters { background: var(--white); border-bottom: 1px solid var(--cream-warm); position: sticky; top: var(--nav-h); z-index: 50; }
.shop-filters-inner { display: flex; align-items: center; gap: 8px; padding: 16px 40px; overflow-x: auto; scrollbar-width: none; }
.shop-filters-inner::-webkit-scrollbar { display: none; }
.filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 50px; border: 1.5px solid var(--cream-warm); background: transparent; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--ink-mid); cursor: pointer; white-space: nowrap; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }
.filter-count { background: rgba(0,0,0,0.08); color: inherit; font-size: 0.7rem; padding: 1px 6px; border-radius: 50px; }
.filter-btn.active .filter-count { background: rgba(255,255,255,0.2); }
.shop-results-bar { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 32px; gap: 16px; }
.shop-results-count { font-size: 0.875rem; color: var(--ink-soft); }
.shop-results-count strong { color: var(--ink); }
.sort-select { border: 1.5px solid var(--cream-warm); background: var(--white); padding: 6px 12px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.82rem; color: var(--ink); cursor: pointer; outline: none; transition: border-color var(--transition); }
.sort-select:focus { border-color: var(--teal); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; min-height: 400px; }

/* ---- Promo Card ---- */
.promo-card { background: var(--forest); border-radius: var(--radius-lg); padding: 40px 32px; display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; }
.promo-card h3 { font-family: var(--font-display); font-size: 1.8rem; color: white; font-weight: 400; line-height: 1.2; margin: 12px 0 24px; }
.promo-card h3 em { font-style: italic; color: var(--teal-light); }
.spa-cta-banner { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); border-radius: var(--radius-lg); padding: 48px 40px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; margin: 48px 0; }
.spa-cta-banner h3 { font-family: var(--font-display); font-size: 2rem; color: white; font-weight: 400; margin: 8px 0; }
.spa-cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ---- Product Detail ---- */
.product-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.product-main-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); background: var(--cream); cursor: zoom-in; transition: transform 0.3s ease; }
.product-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.product-gallery-thumbs::-webkit-scrollbar { height: 3px; }
.product-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 2px; }
.thumb { width: 80px; height: 80px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.thumb.active { border-color: var(--teal); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-name { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem); font-weight: 400; line-height: 1.1; margin-bottom: 8px; }
.product-info-price { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--teal); margin-bottom: 24px; }
.product-info-desc { font-size: 1rem; line-height: 1.8; color: var(--ink-mid); margin-bottom: 32px; }
.selector-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 10px; }
.colors-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.color-chip { padding: 7px 16px; border-radius: 50px; border: 1.5px solid var(--cream-warm); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all var(--transition); background: var(--white); }
.color-chip:hover, .color-chip.active { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
.sizes-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.size-chip { width: 52px; height: 52px; border-radius: 10px; border: 1.5px solid var(--cream-warm); font-size: 0.82rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); background: var(--white); }
.size-chip.wide { width: auto; padding: 0 16px; }
.size-chip:hover, .size-chip.active { border-color: var(--teal); background: var(--teal); color: white; }
.size-chart-toggle { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--teal); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; background: none; border: none; font-family: var(--font-body); margin-bottom: 32px; }
.size-chart-table { display: none; margin-bottom: 32px; background: var(--cream); border-radius: var(--radius-lg); padding: 20px; }
.size-chart-table.visible { display: block; }
.size-chart-table table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.size-chart-table th { text-align: left; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); padding: 6px 10px; border-bottom: 1px solid var(--cream-warm); }
.size-chart-table td { padding: 8px 10px; border-bottom: 1px solid var(--cream-warm); color: var(--ink-mid); }
.trust-badges { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--cream-warm); border-bottom: 1px solid var(--cream-warm); margin-bottom: 28px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--ink-mid); }
.trust-badge-icon { font-size: 1.1rem; flex-shrink: 0; }
.accordion { border-top: 1px solid var(--cream-warm); }
.accordion-item { border-bottom: 1px solid var(--cream-warm); }
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--ink); cursor: pointer; background: none; border: none; text-align: left; }
.accordion-chevron { font-size: 0.8rem; color: var(--ink-soft); transition: transform var(--transition); flex-shrink: 0; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 0 20px; font-size: 0.875rem; line-height: 1.75; color: var(--ink-mid); }
.accordion-item.open .accordion-body { display: block; }
.related { padding: 80px 0; border-top: 1px solid var(--cream-warm); }
.related h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Hide WooCommerce's duplicate "Related products" heading — we output our own h2 above */
section.related.products > h2 { display: none; }
/* Strip extra spacing/border WooCommerce section inherits from .related */
section.related.products { border-top: none; padding-top: 0; }
/* WooCommerce related products UL → match our product-card grid */
.related.products ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.wa-order { position: fixed; bottom: 32px; left: 32px; z-index: 50; display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 12px 20px; border-radius: 50px; font-size: 0.875rem; font-weight: 600; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: all var(--transition); cursor: pointer; }
.wa-order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

/* ---- WooCommerce Overrides ---- */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.woocommerce ul.products li.product { background: none; padding: 0; margin: 0; text-align: left; }
.woocommerce ul.products li.product a { display: block; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.woocommerce ul.products li.product a:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail { aspect-ratio: 1/1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); font-size: 1.3rem; padding: 20px 22px 6px; }
.woocommerce ul.products li.product .price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--teal); padding: 0 22px 24px; }
.woocommerce ul.products li.product .button { display: none; }

/* ---- About Page ---- */
.about-hero { padding: calc(var(--nav-h) + 80px) 0 100px; background: var(--cream); overflow: hidden; position: relative; }
.about-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-hero-title { font-family: var(--font-display); font-size: clamp(3rem,5vw,6rem); font-weight: 300; line-height: 1.0; margin-bottom: 28px; }
.about-hero-title em { font-style: italic; color: var(--teal); font-weight: 400; }
.about-hero-intro { font-size: 1.15rem; line-height: 1.85; color: var(--ink-mid); margin-bottom: 32px; }
.about-hero-main-img { width: 90%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); margin-left: auto; }
.about-hero-logo-float { position: absolute; top: -24px; left: 0; background: var(--white); border-radius: var(--radius-lg); padding: 16px 20px; box-shadow: var(--shadow); }
.tribute-section { background: var(--white); padding: 100px 0; }
.tribute-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.tribute-title { font-family: var(--font-display); font-size: clamp(2.2rem,3.5vw,4rem); font-weight: 400; line-height: 1.1; margin-bottom: 24px; }
.tribute-title em { font-style: italic; color: var(--teal); }
.tribute-text { font-size: 1.05rem; line-height: 1.85; color: var(--ink-mid); margin-bottom: 20px; }
.tribute-img-wrap { display: flex; justify-content: center; align-items: center; background: var(--cream); border-radius: var(--radius-lg); padding: 40px; aspect-ratio: 1/1; }
.tribute-img-wrap img { max-width: 80%; max-height: 80%; object-fit: contain; filter: drop-shadow(0 8px 30px rgba(26,46,44,0.15)); mix-blend-mode: multiply; }
.values-section { background: var(--forest); padding: 100px 0; position: relative; overflow: hidden; }
.values-section::before { content: ''; position: absolute; top: -150px; left: -150px; width: 500px; height: 500px; border-radius: 50%; background: rgba(43,181,166,0.05); }
.values-section .overline { color: var(--teal-light); margin-bottom: 16px; }
.values-section h2 { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,4rem); color: white; font-weight: 300; margin-bottom: 60px; }
.values-section h2 em { font-style: italic; color: var(--teal-light); }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 60px; margin-top: 40px; flex-wrap: wrap; }
.logo-item img { height: 64px; width: auto; filter: grayscale(20%); opacity: 0.85; transition: all var(--transition); }
.logo-item:hover img { filter: none; opacity: 1; }
.logo-item .logo-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; text-align: center; }
.founder-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.founder-quote-badge { position: absolute; bottom: -20px; right: -20px; background: var(--teal); color: white; padding: 20px 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow); max-width: 200px; }
.founder-quote-mark { font-family: var(--font-display); font-size: 2rem; line-height: 1; opacity: 0.6; margin-bottom: 6px; }
.founder-quote-text { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; line-height: 1.5; }
.founder-name { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,4rem); font-weight: 400; line-height: 1.1; margin-bottom: 8px; }
.founder-title { font-size: 0.85rem; color: var(--teal); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.founder-bio { font-size: 1rem; line-height: 1.85; color: var(--ink-mid); margin-bottom: 16px; }
.nepal-section { background: var(--teal); padding: 80px 0; text-align: center; }
.nepal-section .overline { color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.nepal-section h2 { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,4rem); color: white; font-weight: 300; margin-bottom: 16px; }
.nepal-section h2 em { font-style: italic; font-weight: 400; }
.nepal-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.impact-grid { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; margin-top: 40px; }
.impact-item { text-align: center; color: white; }
.impact-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; color: white; line-height: 1; margin-bottom: 6px; }
.impact-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ---- Checkout ---- */
.checkout-steps { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.checkout-step { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.checkout-step-num { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--cream-warm); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.checkout-step.done .checkout-step-num { background: var(--teal); border-color: var(--teal); color: white; }
.checkout-step.active { color: var(--ink); }
.checkout-step.active .checkout-step-num { border-color: var(--teal); color: var(--teal); }
.checkout-step-divider { width: 40px; height: 1px; background: var(--cream-warm); margin: 0 8px; }
.checkout-form-section { background: var(--white); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 20px; box-shadow: 0 2px 12px rgba(26,46,44,0.05); }
.checkout-section-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--cream-warm); display: flex; align-items: center; gap: 10px; }
.checkout-section-icon { font-size: 1.1rem; }
.payment_methods { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.payment_method { border: 1.5px solid var(--cream-warm); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition); }
.payment_method.selected { border-color: var(--teal); }
.payment_method_label { display: flex; align-items: center; gap: 14px; padding: 16px 20px; cursor: pointer; background: var(--white); }
.payment_method input[type="radio"] { width: 18px; height: 18px; accent-color: var(--teal); flex-shrink: 0; }
.payment-method-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); flex: 1; }
.payment-method-logos { display: flex; gap: 6px; align-items: center; }
.payment-logo { height: 22px; padding: 3px 6px; border-radius: 4px; background: var(--cream); font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; color: var(--ink-mid); }
.payment_method_description { padding: 0 20px 16px 52px; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; display: none; }
.payment_method.selected .payment_method_description { display: block; }
.order-summary-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(26,46,44,0.05); margin-bottom: 16px; }
.order-summary-header { padding: 20px 24px 16px; border-bottom: 1px solid var(--cream-warm); display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.order-summary-header h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.review-order-item { display: flex; gap: 12px; align-items: center; }
.review-item-thumb { width: 52px; height: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--cream); }
.review-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.review-item-name { font-size: 0.875rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.review-item-variant { font-size: 0.75rem; color: var(--ink-soft); margin-top: 2px; }
.review-item-qty { font-size: 0.75rem; color: var(--teal); font-weight: 600; }
.review-item-price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--ink); text-align: right; white-space: nowrap; }
.cart-subtotal-row th { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.cart-subtotal-row td { font-family: var(--font-display); font-size: 1rem; font-weight: 600; text-align: right; }
.order-total-row { background: var(--teal-pale); }
.order-total-row th { font-size: 0.85rem; font-weight: 700; color: var(--teal-dark); }
.order-total-row td { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--teal); text-align: right; }
#place_order { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 18px; background: var(--teal); color: white; border: none; border-radius: 50px; font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: 0.03em; cursor: pointer; transition: all var(--transition); }
#place_order:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(43,181,166,0.35); }
#place_order:active { transform: scale(0.98); }
.wa-checkout-alt { background: var(--forest); border-radius: var(--radius-lg); padding: 24px; margin-top: 16px; text-align: center; }
.wa-checkout-alt h4 { font-family: var(--font-display); font-size: 1.1rem; color: white; font-weight: 400; margin-bottom: 6px; }
.wa-checkout-alt p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.wa-checkout-btn { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: white; padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: all var(--transition); }
.wa-checkout-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ---- Order Success ---- */
.success-card { position: relative; z-index: 10; background: white; border-radius: var(--radius-lg); box-shadow: 0 8px 60px rgba(26,46,44,0.10); max-width: 560px; width: 100%; padding: 56px 48px; text-align: center; animation: cardRise 0.7s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes cardRise { from { opacity: 0; transform: translateY(40px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.success-check { width: 80px; height: 80px; margin: 0 auto 28px; position: relative; }
.success-check svg { width: 80px; height: 80px; }
.check-circle { stroke: var(--teal); stroke-width: 3; fill: none; stroke-dasharray: 220; stroke-dashoffset: 220; animation: drawCircle 0.6s ease 0.3s forwards; transform-origin: center; transform: rotate(-90deg); }
.check-tick { stroke: var(--teal); stroke-width: 3.5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawTick 0.4s ease 0.85s forwards; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawTick { to { stroke-dashoffset: 0; } }
.success-overline { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; animation: fadeUp 0.5s ease 1s both; }
.success-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 400; color: var(--forest); line-height: 1.15; margin-bottom: 14px; animation: fadeUp 0.5s ease 1.1s both; }
.success-title em { font-style: italic; color: var(--teal); }
.success-subtitle { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 32px; animation: fadeUp 0.5s ease 1.2s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.order-summary-box { background: var(--cream); border-radius: 12px; padding: 20px 24px; margin-bottom: 28px; text-align: left; animation: fadeUp 0.5s ease 1.3s both; }
.order-summary-box h3 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.order-item-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(26,46,44,0.07); }
.order-item-row:last-child { border-bottom: none; }
.order-item-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: #e8e5de; }
.order-item-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-item-meta { font-size: 0.75rem; color: var(--ink-soft); margin-top: 2px; }
.order-item-price { font-size: 0.88rem; font-weight: 600; color: var(--forest); white-space: nowrap; }
.order-total-row { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; margin-top: 6px; border-top: 1px solid rgba(26,46,44,0.12); }
.order-total-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.order-total-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--forest); }
.order-number { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 24px; animation: fadeUp 0.5s ease 1.35s both; }
.order-number span { font-weight: 700; color: var(--teal); letter-spacing: 0.1em; }
.success-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.5s ease 1.4s both; }
.success-actions .btn { min-width: 160px; }
.wa-confirm-strip { margin-top: 28px; padding: 14px 20px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; display: flex; align-items: center; gap: 10px; animation: fadeUp 0.5s ease 1.5s both; }
.wa-confirm-text { font-size: 0.8rem; color: #166534; line-height: 1.5; }
.wa-confirm-text a { color: #166534; font-weight: 600; text-decoration: underline; }
#confettiCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.paw-deco { position: absolute; font-size: 4rem; opacity: 0.04; user-select: none; pointer-events: none; }

/* ---- Responsive Overrides ---- */
@media (max-width: 1024px) {
  .spa-hero { grid-template-columns: 1fr; min-height: auto; }
  .spa-hero-content { padding: 60px 32px; }
  .spa-hero-img { min-height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .tribute-inner { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .founder-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .spa-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: relative; top: 0; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .service-featured-img { min-height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .impact-grid { gap: 32px; }
  .contact-form-card { padding: 28px 20px; }
  .cf-row { grid-template-columns: 1fr; }
  .checkout-form-section { padding: 24px 20px; }
  .shop-filters-inner { padding: 12px 16px; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .spa-cta-banner { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .wa-order span:last-child { display: none; }
  .wa-order { padding: 12px 16px; border-radius: 50%; }
  .success-card { padding: 40px 24px; }
  .success-actions .btn { width: 100%; }
  .trust-badges { flex-wrap: wrap; gap: 12px; }
  .product-layout { grid-template-columns: 1fr; gap: 48px; }
  .product-gallery { position: relative; top: 0; }
}

@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ---- Print Styles ---- */
@media print {
  .nav, .footer, .scroll-top, .hero-scroll-cue, .hero-progress { display: none !important; }
  body { background: white; color: black; }
}
/* ============================================
   SHOP PAGE STYLES (from shop.html)
   ============================================ */
    /* ===== SHOP HERO ===== */
    .shop-hero {
      background: var(--forest);
      padding: calc(var(--nav-h) + 60px) 0 70px;
      position: relative;
      overflow: hidden;
    }

    .shop-hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(43,181,166,0.07);
      pointer-events: none;
    }

    .shop-hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: 20%;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(43,181,166,0.04);
      pointer-events: none;
    }

    .shop-hero-inner { position: relative; z-index: 1; }
    .shop-hero-overline { color: var(--teal-light) !important; margin-bottom: 12px; }

    .shop-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5vw, 5.5rem);
      color: white;
      font-weight: 300;
      margin-bottom: 16px;
      line-height: 1.05;
    }

    .shop-hero h1 em { font-style: italic; color: var(--teal-light); }

    .shop-hero p {
      color: rgba(255,255,255,0.55);
      font-size: 1.05rem;
      max-width: 500px;
      line-height: 1.7;
    }

    /* ===== SHOP LAYOUT ===== */
    .shop-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 48px;
      align-items: start;
      padding-top: 48px;
      padding-bottom: 80px;
    }

    /* ===== SIDEBAR ===== */
    .shop-sidebar {
      position: sticky;
      top: calc(var(--nav-h) + 24px);
      max-height: calc(100vh - var(--nav-h) - 48px);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--cream-warm) transparent;
    }

    .shop-sidebar::-webkit-scrollbar { width: 4px; }
    .shop-sidebar::-webkit-scrollbar-track { background: transparent; }
    .shop-sidebar::-webkit-scrollbar-thumb { background: var(--cream-warm); border-radius: 2px; }

    .sidebar-section {
      border-bottom: 1px solid var(--cream-warm);
      padding-bottom: 28px;
      margin-bottom: 28px;
    }

    .sidebar-section:last-child { border-bottom: none; margin-bottom: 0; }

    .sidebar-title {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sidebar-clear {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
      color: var(--teal);
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      font-family: var(--font-body);
      display: none;
    }

    .sidebar-clear.visible { display: block; }

    /* Category list */
    .cat-list { display: flex; flex-direction: column; gap: 2px; }

    .cat-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 12px;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background var(--transition);
      gap: 8px;
    }

    .cat-item:hover { background: var(--cream); }

    .cat-item-left {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
      min-width: 0;
    }

    .cat-checkbox {
      width: 16px;
      height: 16px;
      border-radius: 3px;
      border: 1.5px solid var(--cream-warm);
      background: white;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .cat-item.active .cat-checkbox {
      background: var(--teal);
      border-color: var(--teal);
    }

    .cat-checkbox svg { display: none; }

    .cat-item.active .cat-checkbox svg { display: block; }

    .cat-name {
      font-size: 0.85rem;
      color: var(--ink-mid);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cat-item.active .cat-name { color: var(--teal); font-weight: 500; }

    .cat-count {
      font-size: 0.75rem;
      color: var(--ink-soft);
      background: var(--cream);
      padding: 2px 8px;
      border-radius: 50px;
      flex-shrink: 0;
    }

    .cat-item.active .cat-count { background: var(--teal-pale); color: var(--teal); }

    /* Color filter */
    .color-options { display: flex; flex-wrap: wrap; gap: 8px; }

    .color-swatch {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all var(--transition);
      position: relative;
    }

    .color-swatch:hover { transform: scale(1.15); }

    .color-swatch.active {
      border-color: var(--teal);
      box-shadow: 0 0 0 2px white, 0 0 0 4px var(--teal);
    }

    .color-swatch[data-color="multi"] {
      background: conic-gradient(red, orange, yellow, green, blue, purple, red);
    }

    .color-swatch[data-color="silver"] {
      background: linear-gradient(135deg, #e8e8e8, #c0c0c0, #e8e8e8);
    }

    .color-swatch[data-color="gold"] {
      background: linear-gradient(135deg, #f5d060, #c8a430, #f5d060);
    }

    .color-swatch[data-color="rose-gold"] {
      background: linear-gradient(135deg, #f0b8a8, #d4846a, #f0b8a8);
    }

    /* Size filter */
    .size-options { display: flex; flex-wrap: wrap; gap: 6px; }

    .size-btn {
      padding: 5px 12px;
      border-radius: 4px;
      border: 1.5px solid var(--cream-warm);
      background: white;
      font-size: 0.78rem;
      color: var(--ink-mid);
      cursor: pointer;
      transition: all var(--transition);
    }

    .size-btn:hover { border-color: var(--teal); color: var(--teal); }

    .size-btn.active {
      background: var(--teal);
      border-color: var(--teal);
      color: white;
    }

    /* Mobile sidebar toggle */
    .sidebar-mobile-toggle {
      display: none;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 14px 20px;
      background: var(--white);
      border: 1.5px solid var(--cream-warm);
      border-radius: var(--radius-lg);
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      margin-bottom: 20px;
    }

    .sidebar-mobile-toggle .toggle-icon { font-size: 1.2rem; transition: transform var(--transition); }
    .sidebar-mobile-toggle.open .toggle-icon { transform: rotate(180deg); }

    .sidebar-mobile-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,46,44,0.4);
      z-index: 60;
      opacity: 0;
      transition: opacity var(--transition);
    }

    .sidebar-mobile-backdrop.visible { display: block; opacity: 1; }

    /* ===== MAIN CONTENT ===== */
    .shop-main { min-width: 0; }

    /* Sort & results bar */
    .shop-results-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 28px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .shop-results-count {
      font-size: 0.875rem;
      color: var(--ink-soft);
    }

    .shop-results-count strong { color: var(--ink); }

    .shop-active-filters {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .active-filter-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px 5px 12px;
      background: var(--teal-pale);
      color: var(--teal-dark);
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 500;
    }

    .active-filter-tag button {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--teal-dark);
      font-size: 0.9rem;
      line-height: 1;
      padding: 0;
      display: flex;
      align-items: center;
    }

    .shop-sort {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--ink-mid);
    }

    .sort-select {
      border: 1.5px solid var(--cream-warm);
      background: var(--white);
      padding: 6px 12px;
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 0.82rem;
      color: var(--ink);
      cursor: pointer;
      outline: none;
      transition: border-color var(--transition);
    }

    .sort-select:focus { border-color: var(--teal); }

    /* Product grid */
    .shop-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      min-height: 400px;
    }

    /* Empty state */
    .shop-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 0;
    }

    .shop-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }

    .shop-empty h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--ink-mid);
      margin-bottom: 8px;
    }

    .shop-empty p { color: var(--ink-soft); font-size: 0.9rem; }

    /* Category section headings */
    .cat-heading {
      grid-column: 1 / -1;
      padding: 16px 0 12px;
      border-bottom: 1.5px solid var(--cream-warm);
      margin-bottom: 4px;
      display: flex;
      align-items: baseline;
      gap: 16px;
    }

    .cat-heading h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--ink);
    }

    .cat-heading span { color: var(--ink-soft); font-size: 0.82rem; }

    /* Spa CTA banner */
    .spa-cta-banner {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 32px;
      margin-top: 48px;
    }

    .spa-cta-banner .overline { color: rgba(255,255,255,0.7); }

    .spa-cta-banner h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      color: white;
      font-weight: 400;
      margin: 8px 0;
    }

    .spa-cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .shop-layout { grid-template-columns: 240px 1fr; gap: 32px; }
      .shop-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .shop-layout { grid-template-columns: 1fr; }

      .sidebar-mobile-toggle { display: flex; }

      .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-height: 100vh;
        background: var(--white);
        z-index: 70;
        padding: 24px;
        transform: translateX(-100%);
        transition: transform var(--transition);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
      }

      .shop-sidebar.open { transform: translateX(0); }

      .sidebar-mobile-backdrop.visible { display: block; }

      .spa-cta-banner { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .shop-grid { grid-template-columns: 1fr; gap: 16px; }
    }

/* ============================================
   ABOUT PAGE STYLES (from about.html)
   ============================================ */
    /* ABOUT HERO */
    .about-hero {
      padding: calc(var(--nav-h) + 80px) 0 100px;
      background: var(--cream);
      overflow: hidden;
      position: relative;
    }

    .about-hero::after {
      content: '';
      position: absolute;
      bottom: -200px; right: -100px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: var(--teal-pale);
      z-index: 0;
    }

    .about-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-hero-overline { margin-bottom: 16px; }

    .about-hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 6rem);
      font-weight: 300;
      line-height: 1.0;
      margin-bottom: 28px;
    }

    .about-hero-title em {
      font-style: italic;
      color: var(--teal);
      font-weight: 400;
    }

    .about-hero-intro {
      font-size: 1.15rem;
      line-height: 1.85;
      color: var(--ink-mid);
      margin-bottom: 32px;
    }

    .about-hero-img-col {
      position: relative;
    }

    .about-hero-main-img {
      width: 90%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      margin-left: auto;
    }

    .about-hero-logo-float {
      position: absolute;
      top: -24px;
      left: 0;
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 16px 20px;
      box-shadow: var(--shadow);
    }

    .about-hero-logo-float img { height: 40px; }

    /* THREE DOGS TRIBUTE */
    .tribute-section {
      background: var(--white);
      padding: 100px 0;
    }

    .tribute-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }

    .tribute-content .overline { margin-bottom: 12px; }

    .tribute-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 3.5vw, 4rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .tribute-title em { font-style: italic; color: var(--teal); }

    .tribute-text {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--ink-mid);
      margin-bottom: 20px;
    }

    .tribute-img-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 40px;
      aspect-ratio: 1/1;
    }

    .tribute-img-wrap img {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
      filter: drop-shadow(0 8px 30px rgba(26,46,44,0.15));
      mix-blend-mode: multiply;
    }

    /* WHAT WE STAND FOR */
    .values-section {
      background: var(--forest);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .values-section::before {
      content: '';
      position: absolute;
      top: -150px; left: -150px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(43,181,166,0.05);
    }

    .values-section .overline { color: var(--teal-light); }

    .values-section h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 4rem);
      color: white;
      font-weight: 300;
      margin-bottom: 60px;
    }

    .values-section h2 em { font-style: italic; color: var(--teal-light); }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .value-tile {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 40px 36px;
      transition: background var(--transition);
    }

    .value-tile:hover { background: rgba(255,255,255,0.06); }

    .value-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(43,181,166,0.2);
      line-height: 1;
      margin-bottom: 16px;
    }

    .value-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: white;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .value-text {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.75;
    }

    /* BRAND LOGOS */
    .logos-section {
      background: var(--cream);
      padding: 80px 0;
      text-align: center;
    }

    .logos-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .logo-item img {
      height: 64px;
      width: auto;
      filter: grayscale(20%);
      opacity: 0.85;
      transition: all var(--transition);
    }

    .logo-item:hover img { filter: none; opacity: 1; }

    .logo-item .logo-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-top: 10px;
      text-align: center;
    }

    /* TEAM / ABOUT VANI */
    .founder-section {
      background: var(--white);
      padding: 100px 0;
    }

    .founder-inner {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: center;
    }

    .founder-img-col {
      position: relative;
    }

    .founder-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      background: var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .founder-img-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, var(--teal-pale) 0%, var(--cream-warm) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px;
      gap: 20px;
    }

    .founder-img-placeholder img {
      max-width: 60%;
      opacity: 0.6;
      mix-blend-mode: multiply;
    }

    .founder-img-placeholder-text {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-style: italic;
      color: var(--teal);
      text-align: center;
    }

    .founder-quote-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--teal);
      color: white;
      padding: 20px 24px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      max-width: 200px;
    }

    .founder-quote-mark { font-family: var(--font-display); font-size: 2rem; line-height: 1; opacity: 0.6; margin-bottom: 6px; }
    .founder-quote-text { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; line-height: 1.5; }

    .founder-content .overline { margin-bottom: 12px; }

    .founder-name {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 4rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .founder-title {
      font-size: 0.85rem;
      color: var(--teal);
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .founder-bio {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--ink-mid);
      margin-bottom: 16px;
    }

    /* NEPAL SECTION */
    .nepal-section {
      background: var(--teal);
      padding: 80px 0;
      text-align: center;
    }

    .nepal-section .overline { color: rgba(255,255,255,0.6); margin-bottom: 12px; }

    .nepal-section h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 4rem);
      color: white;
      font-weight: 300;
      margin-bottom: 16px;
    }

    .nepal-section h2 em { font-style: italic; font-weight: 400; }

    .nepal-section p {
      color: rgba(255,255,255,0.7);
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto 32px;
      line-height: 1.8;
    }

    /* IMPACT */
    .impact-grid {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .impact-item {
      text-align: center;
      color: white;
    }

    .impact-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 600;
      color: white;
      line-height: 1;
      margin-bottom: 6px;
    }

    .impact-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
    }

    @media (max-width: 1024px) {
      .about-hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .tribute-inner { grid-template-columns: 1fr; gap: 48px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .founder-inner { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 768px) {
      .values-grid { grid-template-columns: 1fr; }
      .impact-grid { gap: 32px; }
    }

/* ============================================
   ABOUT-FOUNDER PAGE STYLES (from about-founder.html)
   ============================================ */
    /* HERO */
    .founder-hero {
      padding: calc(var(--nav-h) + 80px) 0 80px;
      background: var(--cream);
      overflow: hidden;
      position: relative;
    }

    .founder-hero::after {
      content: '';
      position: absolute;
      top: -100px; right: -150px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: var(--teal-pale);
      z-index: 0;
    }

    .founder-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
    }

    .founder-hero-overline { margin-bottom: 16px; }

    .founder-hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 28px;
    }

    .founder-hero-title em {
      font-style: italic;
      color: var(--teal);
      font-weight: 400;
    }

    .founder-hero-intro {
      font-size: 1.15rem;
      line-height: 1.85;
      color: var(--ink-mid);
      max-width: 580px;
    }

    /* STORY SECTIONS */
    .story-section {
      padding: 80px 0;
      background: var(--white);
    }

    .story-section:nth-child(even) {
      background: var(--cream);
    }

    .story-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .story-inner.reverse {
      direction: rtl;
    }

    .story-inner.reverse > * {
      direction: ltr;
    }

    .story-content .overline { margin-bottom: 12px; }

    .story-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 3rem);
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .story-title em { font-style: italic; color: var(--teal); }

    .story-text {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--ink-mid);
      margin-bottom: 16px;
    }

    .story-img-col {
      position: relative;
    }

    .story-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .story-img-accent {
      position: absolute;
      top: -16px;
      left: -16px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--teal-light);
      border-radius: var(--radius-lg);
      z-index: -1;
    }

    /* FULL WIDTH IMAGE */
    .story-img-full {
      padding: 60px 0;
      background: var(--white);
    }

    .story-img-full-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .story-img-full img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .story-img-full-caption {
      text-align: center;
      margin-top: 20px;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1rem;
      color: var(--ink-soft);
    }

    /* IMAGE GRID */
    .story-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .story-img-grid img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      transition: transform var(--transition);
    }

    .story-img-grid img:hover {
      transform: scale(1.02);
    }

    /* TIMELINE ELEMENT */
    .timeline-marker {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .timeline-year {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--teal);
      letter-spacing: 0.05em;
    }

    .timeline-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
    }

    /* CLOSING SECTION */
    .closing-section {
      padding: 100px 0;
      background: var(--forest);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .closing-section::before {
      content: '';
      position: absolute;
      bottom: -200px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: rgba(43,181,166,0.08);
    }

    .closing-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .closing-quote {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      color: white;
      line-height: 1.5;
      margin-bottom: 32px;
    }

    .closing-quote em {
      color: var(--teal-light);
      font-weight: 400;
    }

    .closing-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 8px;
    }

    .closing-title {
      font-size: 0.8rem;
      color: var(--teal);
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* BACK LINK */
    .back-link-wrap {
      padding: 32px 0;
      background: var(--cream);
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--ink-mid);
      transition: color var(--transition);
    }

    .back-link:hover { color: var(--teal); }
    .back-link svg { width: 16px; height: 16px; }

    /* CTA */
    .story-cta {
      display: flex;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .story-inner { grid-template-columns: 1fr; gap: 48px; }
      .story-inner.reverse { direction: ltr; }
      .story-img-grid { max-width: 500px; }
    }

    @media (max-width: 768px) {
      .story-section { padding: 60px 0; }
      .story-img-grid { grid-template-columns: 1fr; }
    }

/* ============================================
   SPA PAGE STYLES (from spa.html)
   ============================================ */
    /* SPA HERO */
    .spa-hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      padding-top: var(--nav-h);
    }

    .spa-hero-content {
      background: var(--forest);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 80px;
      position: relative;
      z-index: 1;
    }

    .spa-hero-content::after {
      content: '';
      position: absolute;
      top: -100px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(43,181,166,0.06);
      pointer-events: none;
    }

    .spa-hero-content .overline {
      color: var(--teal-light);
      margin-bottom: 16px;
    }

    .spa-hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 5.5rem);
      color: white;
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .spa-hero-title em {
      font-style: italic;
      color: var(--teal-light);
    }

    .spa-hero-subtitle {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      max-width: 400px;
      margin-bottom: 40px;
    }

    .spa-hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .spa-hero-img {
      position: relative;
      overflow: hidden;
    }

    .spa-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .spa-hero-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26,46,44,0.3) 0%, transparent 60%);
    }

    .spa-hero-badge {
      position: absolute;
      bottom: 40px;
      left: 40px;
      background: rgba(26,46,44,0.85);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(43,181,166,0.2);
      color: white;
      padding: 16px 24px;
      border-radius: var(--radius-lg);
    }

    .spa-hero-badge .overline { color: var(--teal-light); margin-bottom: 4px; }

    .spa-hero-badge-text {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: white;
    }

    /* LOGO */
    .spa-logo-section {
      background: var(--cream);
      padding: 60px 0;
      text-align: center;
    }

    .spa-logo-section img { height: 80px; margin: 0 auto; }

    .spa-logo-tagline {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--ink-soft);
      margin-top: 12px;
    }

    /* SERVICES */
    .services-section {
      background: var(--white);
      padding: 100px 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .service-card {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: all var(--transition);
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      background: var(--teal-pale);
    }

    .service-card-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      display: block;
    }

    .service-card-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--ink-mid);
      margin-bottom: 20px;
    }

    .service-card-includes {
      list-style: none;
      margin-bottom: 24px;
    }

    .service-card-includes li {
      font-size: 0.82rem;
      color: var(--ink-mid);
      padding: 4px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .service-card-includes li::before {
      content: '✓';
      color: var(--teal);
      font-weight: 600;
      flex-shrink: 0;
    }

    .service-card-price {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--teal);
    }

    .service-card-price-note {
      font-size: 0.75rem;
      color: var(--ink-soft);
      margin-top: 2px;
    }

    /* FEATURED SERVICE (full-width) */
    .service-card-featured {
      grid-column: span 3;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 0;
      background: var(--forest);
      padding: 0;
      overflow: hidden;
    }

    .service-card-featured:hover { background: var(--forest); }

    .service-featured-img {
      overflow: hidden;
    }

    .service-featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card-featured:hover .service-featured-img img { transform: scale(1.04); }

    .service-featured-content {
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-featured-content .service-card-icon { margin-bottom: 12px; }
    .service-featured-content .service-card-name { color: white; font-size: 2rem; }
    .service-featured-content .service-card-desc { color: rgba(255,255,255,0.6); }
    .service-featured-content .service-card-includes li { color: rgba(255,255,255,0.65); }
    .service-featured-content .service-card-includes li::before { color: var(--teal-light); }
    .service-featured-content .service-card-price { color: var(--teal-light); font-size: 1.5rem; }
    .service-featured-content .service-card-price-note { color: rgba(255,255,255,0.35); }

    /* PROCESS */
    .process-section {
      background: var(--cream);
      padding: 100px 0;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-top: 56px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5%);
      right: calc(12.5%);
      height: 1px;
      background: var(--teal-light);
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .process-step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--teal-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--teal);
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      transition: all var(--transition);
    }

    .process-step:hover .process-step-num {
      background: var(--teal);
      border-color: var(--teal);
      color: white;
    }

    .process-step-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .process-step-text {
      font-size: 0.83rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* WHY CHOOSE */
    .why-section {
      background: var(--white);
      padding: 80px 0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-features {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 32px;
    }

    .why-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .why-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .why-feature-title {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .why-feature-text { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }

    .why-img-stack {
      position: relative;
    }

    .why-img-main {
      width: 85%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/5;
      object-fit: cover;
    }

    .why-img-accent {
      position: absolute;
      bottom: -24px;
      right: 0;
      width: 50%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      aspect-ratio: 1/1;
      object-fit: cover;
      border: 4px solid var(--white);
    }

    /* BOOKING FORM */
    .booking-section {
      background: var(--forest);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .booking-section::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(43,181,166,0.05);
    }

    .booking-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .booking-info .overline { color: var(--teal-light); margin-bottom: 12px; }

    .booking-info h2 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 3.5vw, 3.8rem);
      color: white;
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .booking-info h2 em { font-style: italic; color: var(--teal-light); }

    .booking-info p { color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 32px; }

    .booking-contact-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .booking-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
    }

    .booking-contact-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(43,181,166,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    /* Form */
    .booking-form {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 40px;
    }

    .booking-form h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: white;
      font-weight: 400;
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 8px;
    }

    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      color: white;
      font-family: var(--font-body);
      font-size: 0.9rem;
      outline: none;
      transition: border-color var(--transition);
    }

    .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--teal);
      background: rgba(255,255,255,0.08);
    }

    .form-select option { background: var(--forest); color: white; }
    .form-textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--teal);
      color: white;
      border: none;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all var(--transition);
      margin-top: 8px;
    }

    .form-submit:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(43,181,166,0.35);
    }

    .form-note {
      text-align: center;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      margin-top: 16px;
    }

    /* Pricing table */
    .pricing-section {
      background: var(--cream);
      padding: 80px 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .pricing-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      position: relative;
      transition: all var(--transition);
    }

    .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

    .pricing-card.featured {
      background: var(--teal);
      color: white;
    }

    .pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.7); }
    .pricing-card.featured .pricing-note { color: rgba(255,255,255,0.55); }
    .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
    .pricing-card.featured .pricing-feature::before { color: white; }

    .pricing-tag {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--forest);
      color: white;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 50px;
      white-space: nowrap;
    }

    .pricing-tier {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 8px;
    }

    .pricing-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .pricing-price {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 4px;
    }

    .pricing-card.featured .pricing-price { color: white; }

    .pricing-note {
      font-size: 0.78rem;
      color: var(--ink-soft);
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--cream-warm);
    }

    .pricing-card.featured .pricing-note { border-bottom-color: rgba(255,255,255,0.2); }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .pricing-feature {
      font-size: 0.85rem;
      color: var(--ink-mid);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pricing-feature::before {
      content: '✓';
      color: var(--teal);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pricing-cta {
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all var(--transition);
      border: 2px solid var(--teal);
      color: var(--teal);
    }

    .pricing-card.featured .pricing-cta {
      border-color: white;
      color: white;
    }

    .pricing-cta:hover {
      background: var(--teal);
      color: white;
    }

    .pricing-card.featured .pricing-cta:hover {
      background: rgba(255,255,255,0.15);
    }

    @media (max-width: 1024px) {
      .spa-hero { grid-template-columns: 1fr; min-height: auto; }
      .spa-hero-content { padding: 60px 32px; }
      .spa-hero-img { min-height: 400px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .service-card-featured { grid-column: span 2; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .process-steps::before { display: none; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .booking-inner { grid-template-columns: 1fr; gap: 48px; }
      .pricing-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .service-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
      .service-featured-img { min-height: 240px; }
      .form-row { grid-template-columns: 1fr; }
      .booking-form { padding: 28px 20px; }
    }

/* ============================================
   CONTACT PAGE STYLES (from contact.html)
   ============================================ */
    .contact-page {
      padding: calc(var(--nav-h) + 80px) 0 100px;
      background: var(--cream);
      min-height: 100vh;
    }

    .contact-intro {
      margin-bottom: 64px;
    }

    .contact-intro .overline { margin-bottom: 12px; }

    .contact-intro h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .contact-intro h1 em { font-style: italic; color: var(--teal); }

    .contact-intro p {
      font-size: 1.1rem;
      color: var(--ink-mid);
      line-height: 1.8;
      max-width: 560px;
    }

    /* Contact layout */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }

    /* Channels */
    .contact-channels {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-channel {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: all var(--transition);
      text-decoration: none;
      color: inherit;
    }

    .contact-channel:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .channel-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .channel-icon.teal { background: var(--teal-pale); }
    .channel-icon.green { background: #e7f9ee; }
    .channel-icon.blue { background: #e8f0fe; }
    .channel-icon.pink { background: #fce8f3; }
    .channel-icon.dark { background: var(--forest); }

    .channel-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 4px;
    }

    .channel-value {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 2px;
    }

    .channel-note {
      font-size: 0.8rem;
      color: var(--ink-soft);
    }

    /* Hours card */
    .hours-card {
      background: var(--forest);
      border-radius: var(--radius-lg);
      padding: 28px;
      margin-top: 4px;
    }

    .hours-card h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: white;
      font-weight: 400;
      margin-bottom: 16px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 0.85rem;
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: rgba(255,255,255,0.55); }
    .hours-time { color: rgba(255,255,255,0.85); font-weight: 500; }
    .hours-time.closed { color: rgba(255,255,255,0.3); }

    /* Map placeholder */
    .map-card {
      background: var(--teal-pale);
      border-radius: var(--radius-lg);
      padding: 32px;
      margin-top: 4px;
      text-align: center;
    }

    .map-card-emoji { font-size: 2.5rem; margin-bottom: 12px; }

    .map-card h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .map-card p {
      font-size: 0.85rem;
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    /* Contact form */
    .contact-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px;
      box-shadow: var(--shadow);
    }

    .contact-form-card h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 8px;
    }

    .contact-form-card .subtitle {
      font-size: 0.9rem;
      color: var(--ink-soft);
      margin-bottom: 36px;
      line-height: 1.6;
    }

    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .cf-group { margin-bottom: 20px; }

    .cf-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 8px;
    }

    .cf-input, .cf-select, .cf-textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--cream-warm);
      border-radius: var(--radius);
      background: var(--cream);
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--ink);
      outline: none;
      transition: border-color var(--transition), background var(--transition);
    }

    .cf-input:focus, .cf-select:focus, .cf-textarea:focus {
      border-color: var(--teal);
      background: var(--white);
    }

    .cf-textarea { resize: vertical; min-height: 120px; }

    .cf-topics {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .cf-topic-chip {
      padding: 7px 14px;
      border-radius: 50px;
      border: 1.5px solid var(--cream-warm);
      background: var(--white);
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: all var(--transition);
      color: var(--ink-mid);
    }

    .cf-topic-chip:hover, .cf-topic-chip.active {
      background: var(--teal-pale);
      border-color: var(--teal);
      color: var(--teal-dark);
    }

    .cf-submit {
      width: 100%;
      padding: 16px;
      background: var(--teal);
      color: white;
      border: none;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: all var(--transition);
      margin-top: 8px;
    }

    .cf-submit:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(43,181,166,0.3);
    }

    .cf-note {
      text-align: center;
      font-size: 0.78rem;
      color: var(--ink-soft);
      margin-top: 16px;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }

    .form-success-icon { font-size: 3rem; margin-bottom: 16px; }

    .form-success h3 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      margin-bottom: 8px;
    }

    .form-success p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }

    /* FAQ */
    .faq-section {
      background: var(--white);
      padding: 80px 0;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
    }

    .faq-item {
      padding: 28px 32px;
      background: var(--cream);
      border-radius: var(--radius-lg);
      transition: background var(--transition);
    }

    .faq-item:hover { background: var(--teal-pale); }

    .faq-q {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .faq-a {
      font-size: 0.875rem;
      color: var(--ink-mid);
      line-height: 1.75;
    }

    @media (max-width: 1024px) {
      .contact-layout { grid-template-columns: 1fr; gap: 48px; }
      .faq-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .contact-form-card { padding: 28px 20px; }
      .cf-row { grid-template-columns: 1fr; }
    }

/* ============================================
   PRODUCT PAGE STYLES (from product.html)
   ============================================ */
    .product-page {
      padding: calc(var(--nav-h) + 48px) 0 100px;
    }

    /* Breadcrumb */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--ink-soft);
      margin-bottom: 40px;
    }

    .breadcrumb a { color: var(--ink-mid); transition: color var(--transition); }
    .breadcrumb a:hover { color: var(--teal); }
    .breadcrumb .sep { color: var(--cream-warm); }

    /* Product layout */
    .product-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* Gallery */
    .product-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }

    .product-main-img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: var(--radius-lg);
      background: var(--cream);
      cursor: zoom-in;
      transition: transform 0.3s ease;
    }

    .product-gallery-thumbs {
      display: flex;
      gap: 10px;
      margin-top: 12px;
      overflow-x: auto;
      padding-bottom: 4px;
    }

    .product-gallery-thumbs::-webkit-scrollbar { height: 3px; }
    .product-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 2px; }

    .thumb {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color var(--transition);
    }

    .thumb.active { border-color: var(--teal); }
    .thumb img { width: 100%; height: 100%; object-fit: cover; }

    /* Product info */
    .product-info .overline { margin-bottom: 8px; }

    .product-info-name {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .product-info-price {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 600;
      color: var(--teal);
      margin-bottom: 24px;
    }

    .product-info-desc {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--ink-mid);
      margin-bottom: 32px;
    }

    /* Color selector */
    .selector-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-mid);
      margin-bottom: 10px;
    }

    .colors-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .color-chip {
      padding: 7px 16px;
      border-radius: 50px;
      border: 1.5px solid var(--cream-warm);
      font-size: 0.82rem;
      font-weight: 500;
      cursor: pointer;
      transition: all var(--transition);
      background: var(--white);
    }

    .color-chip:hover, .color-chip.active {
      border-color: var(--teal);
      color: var(--teal);
      background: var(--teal-pale);
    }

    /* Size selector */
    .sizes-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .size-chip {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      border: 1.5px solid var(--cream-warm);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
      background: var(--white);
    }

    .size-chip.wide {
      width: auto;
      padding: 0 16px;
    }

    .size-chip:hover, .size-chip.active {
      border-color: var(--teal);
      background: var(--teal);
      color: white;
    }

    /* Size chart toggle */
    .size-chart-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      color: var(--teal);
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 3px;
      background: none;
      border: none;
      font-family: var(--font-body);
      margin-bottom: 32px;
    }

    .size-chart-table {
      display: none;
      margin-bottom: 32px;
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 20px;
    }

    .size-chart-table.visible { display: block; }

    .size-chart-table table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .size-chart-table th {
      text-align: left;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: 6px 10px;
      border-bottom: 1px solid var(--cream-warm);
    }

    .size-chart-table td {
      padding: 8px 10px;
      border-bottom: 1px solid var(--cream-warm);
      color: var(--ink-mid);
    }

    /* CTA buttons */
    .product-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .product-cta .btn-primary { flex: 1; min-width: 180px; justify-content: center; transition: background var(--transition), transform 0.15s; }
    .product-cta .btn-primary.btn-added { background: var(--forest) !important; transform: scale(0.97); }
    .product-cta .btn-outline { min-width: 52px; width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; font-size: 1.2rem; }

    @keyframes cartBounce {
      0%   { transform: scale(1); }
      30%  { transform: scale(1.35) rotate(-8deg); }
      60%  { transform: scale(0.9) rotate(4deg); }
      100% { transform: scale(1); }
    }
    .cart-bounce { animation: cartBounce 0.55s ease; }

    /* Trust badges */
    .trust-badges {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-top: 1px solid var(--cream-warm);
      border-bottom: 1px solid var(--cream-warm);
      margin-bottom: 28px;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--ink-mid);
    }

    .trust-badge-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    /* Accordion */
    .accordion { border-top: 1px solid var(--cream-warm); }

    .accordion-item { border-bottom: 1px solid var(--cream-warm); }

    .accordion-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      background: none;
      border: none;
      text-align: left;
    }

    .accordion-chevron {
      font-size: 0.8rem;
      color: var(--ink-soft);
      transition: transform var(--transition);
      flex-shrink: 0;
    }

    .accordion-item.open .accordion-chevron { transform: rotate(180deg); }

    .accordion-body {
      display: none;
      padding: 0 0 20px;
      font-size: 0.875rem;
      line-height: 1.75;
      color: var(--ink-mid);
    }

    .accordion-item.open .accordion-body { display: block; }

    /* Related products */
    .related { padding: 80px 0; border-top: 1px solid var(--cream-warm); }

    .related h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      margin-bottom: 32px;
    }

    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* WhatsApp order float */
    .wa-order {
      position: fixed;
      bottom: 32px;
      left: 32px;
      z-index: 50;
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      transition: all var(--transition);
      cursor: pointer;
    }

    .wa-order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
    .wa-order-icon { font-size: 1.2rem; }

    @media (max-width: 1024px) {
      .product-layout { grid-template-columns: 1fr; gap: 48px; }
      .product-gallery { position: relative; top: 0; }
      .related-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .trust-badges { flex-wrap: wrap; gap: 12px; }
      .related-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .wa-order span:last-child { display: none; }
      .wa-order { padding: 12px 16px; border-radius: 50%; }
    }

/* ============================================
   CART PAGE STYLES (from cart.html)
   ============================================ */
    /* ============ CART PAGE ============ */
    .cart-page {
      padding: calc(var(--nav-h) + 48px) 0 100px;
      background: var(--cream);
      min-height: 100vh;
    }

    .cart-page-header {
      margin-bottom: 40px;
    }

    .cart-page-header .overline { margin-bottom: 8px; }

    .cart-page-header h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 400;
    }

    /* Layout: cart table + sidebar */
    .cart-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 32px;
      align-items: start;
    }

    /* ---- Cart table ---- */
    .cart-form-wrap {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(26,46,44,0.05);
    }

    /* WooCommerce-compatible class names */
    .woocommerce-cart-form { }

    .shop_table {
      width: 100%;
      border-collapse: collapse;
    }

    .shop_table thead {
      background: var(--cream);
      border-bottom: 1px solid var(--cream-warm);
    }

    .shop_table th {
      padding: 14px 20px;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-soft);
      text-align: left;
    }

    .shop_table th.product-price,
    .shop_table th.product-quantity,
    .shop_table th.product-subtotal { text-align: center; }

    .shop_table th.product-remove { width: 48px; }

    /* Cart row */
    .cart_item {
      border-bottom: 1px solid var(--cream-warm);
      transition: background var(--transition);
    }

    .cart_item:last-of-type { border-bottom: none; }
    .cart_item:hover { background: var(--cream); }

    .cart_item td {
      padding: 20px;
      vertical-align: middle;
    }

    /* Product column */
    .product-thumbnail a {
      display: block;
      width: 80px;
      height: 80px;
      border-radius: 10px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .product-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-name a {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--ink);
      transition: color var(--transition);
    }

    .product-name a:hover { color: var(--teal); }

    .product-name .variation {
      margin-top: 4px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .product-name .variation-item {
      font-size: 0.75rem;
      font-weight: 500;
      padding: 3px 8px;
      border-radius: 50px;
      background: var(--teal-pale);
      color: var(--teal-dark);
    }

    /* Price cells */
    .product-price,
    .product-subtotal { text-align: center; white-space: nowrap; }

    .product-price .woocommerce-Price-amount,
    .product-subtotal .woocommerce-Price-amount {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
    }

    .product-subtotal .woocommerce-Price-amount { color: var(--teal); }

    /* Quantity input */
    .product-quantity { text-align: center; }

    .qty-control {
      display: inline-flex;
      align-items: center;
      border: 1.5px solid var(--cream-warm);
      border-radius: 50px;
      overflow: hidden;
      background: var(--white);
    }

    .qty-btn {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      color: var(--ink-mid);
      transition: all var(--transition);
      font-family: var(--font-body);
    }

    .qty-btn:hover { background: var(--teal-pale); color: var(--teal); }

    .qty-input {
      width: 40px;
      text-align: center;
      border: none;
      outline: none;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
      background: transparent;
      -moz-appearance: textfield;
    }

    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

    /* Remove button */
    .product-remove { text-align: center; }

    .remove-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: none;
      background: var(--cream-warm);
      color: var(--ink-soft);
      cursor: pointer;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .remove-btn:hover { background: #fee2e2; color: #dc2626; }

    /* Cart actions bar */
    .cart-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      border-top: 1px solid var(--cream-warm);
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Coupon */
    .coupon {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .coupon-input {
      padding: 10px 16px;
      border: 1.5px solid var(--cream-warm);
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.875rem;
      outline: none;
      transition: border-color var(--transition);
      width: 200px;
      background: var(--cream);
    }

    .coupon-input:focus { border-color: var(--teal); }
    .coupon-input::placeholder { color: var(--ink-soft); }

    .coupon-btn {
      padding: 10px 18px;
      border-radius: 50px;
      border: 1.5px solid var(--cream-warm);
      background: var(--white);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--transition);
      color: var(--ink-mid);
    }

    .coupon-btn:hover { border-color: var(--teal); color: var(--teal); }

    .update-cart-btn {
      padding: 10px 20px;
      border-radius: 50px;
      border: 1.5px solid var(--cream-warm);
      background: var(--white);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--transition);
      color: var(--ink-mid);
    }

    .update-cart-btn:hover { border-color: var(--teal); color: var(--teal); }

    /* ---- Empty cart state ---- */
    .cart-empty {
      padding: 80px 40px;
      text-align: center;
    }

    .cart-empty-paw { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.3; }

    .cart-empty h2 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 10px;
    }

    .cart-empty p { color: var(--ink-soft); margin-bottom: 28px; }

    /* ---- Cart totals sidebar ---- */
    .cart_totals {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(26,46,44,0.05);
      position: sticky;
      top: calc(var(--nav-h) + 24px);
    }

    .cart-totals-header {
      padding: 24px 28px 20px;
      border-bottom: 1px solid var(--cream-warm);
    }

    .cart-totals-header h2 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
    }

    .shop_table.shop_table_responsive { margin-bottom: 0; }

    .cart-totals-table {
      width: 100%;
      border-collapse: collapse;
    }

    .cart-totals-table tr {
      border-bottom: 1px solid var(--cream-warm);
    }

    .cart-totals-table tr:last-child { border-bottom: none; }

    .cart-totals-table th,
    .cart-totals-table td {
      padding: 16px 28px;
      text-align: left;
    }

    .cart-totals-table th {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      width: 45%;
    }

    .cart-totals-table .order-total th,
    .cart-totals-table .order-total td {
      padding-top: 20px;
      padding-bottom: 20px;
      background: var(--teal-pale);
    }

    .cart-totals-table .order-total th {
      font-size: 0.85rem;
      color: var(--teal-dark);
    }

    .cart-totals-table .order-total td .woocommerce-Price-amount {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--teal);
    }

    .cart-totals-table td .woocommerce-Price-amount {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
    }

    .shipping-note {
      font-size: 0.8rem;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .shipping-note strong { color: var(--teal); }

    .free-shipping-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #dcfce7;
      color: #166534;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 50px;
    }

    /* Proceed to checkout button */
    .wc-proceed-to-checkout {
      padding: 20px 28px;
    }

    .checkout-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 16px;
      background: var(--teal);
      color: white;
      border: none;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition: all var(--transition);
      text-decoration: none;
    }

    .checkout-button:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(43,181,166,0.3);
    }

    .checkout-button-icon { font-size: 1rem; }

    .cart-continue {
      display: block;
      text-align: center;
      padding: 12px;
      font-size: 0.82rem;
      color: var(--ink-soft);
      transition: color var(--transition);
    }

    .cart-continue:hover { color: var(--teal); }

    /* Security badges */
    .cart-security {
      padding: 16px 28px;
      border-top: 1px solid var(--cream-warm);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .security-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: var(--ink-soft);
    }

    .security-item-icon { font-size: 0.9rem; flex-shrink: 0; }

    /* Cross-sells */
    .cross-sells {
      margin-top: 48px;
    }

    .cross-sells h2 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 28px;
    }

    .cross-sells-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* WooCommerce integration note */
    .wc-integration-note {
      background: var(--teal-pale);
      border: 1px solid var(--teal-light);
      border-radius: var(--radius-lg);
      padding: 16px 20px;
      margin-bottom: 24px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.82rem;
      color: var(--teal-dark);
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .cart-layout { grid-template-columns: 1fr; }
      .cart_totals { position: relative; top: 0; }
      .cross-sells-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .shop_table { display: block; overflow-x: auto; }
      .cart-actions { flex-direction: column; align-items: flex-start; }
      .coupon { flex-wrap: wrap; }
      .coupon-input { width: 100%; }
      .cross-sells-grid { grid-template-columns: 1fr; }
    }

/* ============================================
   CHECKOUT PAGE STYLES (from checkout.html)
   ============================================ */
    /* ============ CHECKOUT PAGE ============ */
    .checkout-page {
      padding: calc(var(--nav-h) + 48px) 0 100px;
      background: var(--cream);
      min-height: 100vh;
    }

    /* Steps indicator */
    .checkout-steps {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 40px;
    }

    .checkout-step {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ink-soft);
    }

    .checkout-step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid var(--cream-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .checkout-step.done .checkout-step-num { background: var(--teal); border-color: var(--teal); color: white; }
    .checkout-step.active { color: var(--ink); }
    .checkout-step.active .checkout-step-num { border-color: var(--teal); color: var(--teal); }

    .checkout-step-divider {
      width: 40px;
      height: 1px;
      background: var(--cream-warm);
      margin: 0 8px;
    }

    /* Two-column layout */
    .checkout-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 32px;
      align-items: start;
    }

    /* ---- Left: form sections ---- */
    .checkout-form-section {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px;
      margin-bottom: 20px;
      box-shadow: 0 2px 12px rgba(26,46,44,0.05);
    }

    .checkout-section-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--cream-warm);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .checkout-section-icon { font-size: 1.1rem; }

    /* Field groups — WooCommerce compatible class names */
    .woocommerce-billing-fields,
    .woocommerce-shipping-fields,
    .woocommerce-additional-fields { }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-row.full { grid-template-columns: 1fr; }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 7px;
    }

    .form-label .required { color: var(--teal); margin-left: 2px; }

    .woocommerce-input-wrapper { position: relative; }

    .woocommerce-form__input,
    .woocommerce-form__input-checkbox,
    select.woocommerce-form__input {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--cream-warm);
      border-radius: var(--radius);
      background: var(--cream);
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--ink);
      outline: none;
      transition: border-color var(--transition), background var(--transition);
      appearance: none;
    }

    .woocommerce-form__input:focus,
    select.woocommerce-form__input:focus {
      border-color: var(--teal);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(43,181,166,0.1);
    }

    .woocommerce-form__input::placeholder { color: var(--ink-soft); opacity: 0.6; }

    select.woocommerce-form__input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

    textarea.woocommerce-form__input { resize: vertical; min-height: 90px; }

    /* Phone input with flag */
    .phone-input-wrap {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--cream-warm);
      border-radius: var(--radius);
      background: var(--cream);
      overflow: hidden;
      transition: border-color var(--transition);
    }

    .phone-input-wrap:focus-within {
      border-color: var(--teal);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(43,181,166,0.1);
    }

    .phone-prefix {
      padding: 13px 12px 13px 14px;
      font-size: 0.88rem;
      color: var(--ink-mid);
      font-weight: 500;
      border-right: 1px solid var(--cream-warm);
      white-space: nowrap;
      background: rgba(255,255,255,0.5);
    }

    .phone-input-wrap .woocommerce-form__input {
      border: none;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    /* Shipping toggle */
    .ship-different-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink-mid);
      margin: 4px 0 20px;
      user-select: none;
    }

    .ship-different-toggle input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--teal);
      cursor: pointer;
      flex-shrink: 0;
    }

    .shipping-fields-wrap { display: none; }
    .shipping-fields-wrap.visible { display: block; }

    /* ---- Payment methods ---- */
    .payment_methods {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .payment_method {
      border: 1.5px solid var(--cream-warm);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color var(--transition);
    }

    .payment_method.selected { border-color: var(--teal); }

    .payment_method_label {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      cursor: pointer;
      background: var(--white);
    }

    .payment_method input[type="radio"] {
      width: 18px;
      height: 18px;
      accent-color: var(--teal);
      flex-shrink: 0;
    }

    .payment-method-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--ink);
      flex: 1;
    }

    .payment-method-logos {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .payment-logo {
      height: 22px;
      padding: 3px 6px;
      border-radius: 4px;
      background: var(--cream);
      font-size: 0.7rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      color: var(--ink-mid);
    }

    .payment_method_description {
      padding: 0 20px 16px 52px;
      font-size: 0.82rem;
      color: var(--ink-soft);
      line-height: 1.6;
      display: none;
    }

    .payment_method.selected .payment_method_description { display: block; }

    /* ---- Right: Order summary ---- */
    .order-summary {
      position: sticky;
      top: calc(var(--nav-h) + 24px);
    }

    .order-summary-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(26,46,44,0.05);
      margin-bottom: 16px;
    }

    .order-summary-header {
      padding: 20px 24px 16px;
      border-bottom: 1px solid var(--cream-warm);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .order-summary-header h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 500;
    }

    .order-summary-toggle {
      font-size: 0.8rem;
      color: var(--teal);
      font-weight: 500;
    }

    /* WooCommerce order review table */
    #order_review {}

    .woocommerce-checkout-review-order-table {
      width: 100%;
      border-collapse: collapse;
    }

    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
      padding: 12px 20px;
      font-size: 0.875rem;
      border-bottom: 1px solid var(--cream-warm);
      vertical-align: top;
    }

    .woocommerce-checkout-review-order-table thead th {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      background: var(--cream);
    }

    .review-order-item {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .review-item-thumb {
      width: 52px;
      height: 52px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--cream);
    }

    .review-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

    .review-item-name {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.3;
    }

    .review-item-variant { font-size: 0.75rem; color: var(--ink-soft); margin-top: 2px; }
    .review-item-qty { font-size: 0.75rem; color: var(--teal); font-weight: 600; }

    .review-item-price {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ink);
      text-align: right;
      white-space: nowrap;
    }

    .cart-subtotal-row th, .cart-subtotal-row td,
    .order-total-row th, .order-total-row td {
      padding: 14px 20px;
    }

    .cart-subtotal-row th { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
    .cart-subtotal-row td { font-family: var(--font-display); font-size: 1rem; font-weight: 600; text-align: right; }

    .order-total-row { background: var(--teal-pale); }
    .order-total-row th { font-size: 0.85rem; font-weight: 700; color: var(--teal-dark); }
    .order-total-row td {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--teal);
      text-align: right;
    }

    /* Place order button */
    .place-order {
      padding: 0;
    }

    #place_order {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 18px;
      background: var(--teal);
      color: white;
      border: none;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition: all var(--transition);
    }

    #place_order:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(43,181,166,0.35);
    }

    #place_order:active { transform: scale(0.98); }

    .place-order-wrap {
      padding: 20px;
    }

    .order-terms {
      font-size: 0.75rem;
      color: var(--ink-soft);
      text-align: center;
      margin-top: 12px;
      line-height: 1.6;
    }

    .order-terms a { color: var(--teal); }

    /* Security strip */
    .checkout-security {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      box-shadow: 0 2px 12px rgba(26,46,44,0.05);
    }

    .checkout-security-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      color: var(--ink-soft);
    }

    .checkout-security-icon { font-size: 1rem; flex-shrink: 0; }

    /* WhatsApp alternative */
    .wa-checkout-alt {
      background: var(--forest);
      border-radius: var(--radius-lg);
      padding: 24px;
      margin-top: 16px;
      text-align: center;
    }

    .wa-checkout-alt h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: white;
      font-weight: 400;
      margin-bottom: 6px;
    }

    .wa-checkout-alt p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }

    .wa-checkout-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all var(--transition);
    }

    .wa-checkout-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

    /* WC integration note */
    .wc-integration-note {
      background: var(--teal-pale);
      border: 1px solid var(--teal-light);
      border-radius: var(--radius-lg);
      padding: 14px 18px;
      margin-bottom: 24px;
      font-size: 0.8rem;
      color: var(--teal-dark);
      line-height: 1.5;
      display: flex;
      gap: 8px;
    }

    @media (max-width: 1024px) {
      .checkout-layout { grid-template-columns: 1fr; }
      .order-summary { position: relative; top: 0; }
    }

    @media (max-width: 768px) {
      .checkout-form-section { padding: 24px 20px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .checkout-steps { overflow-x: auto; }
    }

/* ============================================
   ELEMENTOR + WORDPRESS CONFLICT OVERRIDES
   ============================================ */

/* 1. Admin bar — shift fixed nav down when WP admin bar is visible */
.admin-bar .nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}

/* 2. Elementor container max-width — match site's 1280px (not Elementor's default 1140px) */
.elementor-section.elementor-section-boxed > .elementor-container,
.e-con { max-width: 1280px !important; }

/* 3. Elementor widget default spacing — kill the 20px bottom margin between widgets */
.elementor-widget:not(:last-child) {
  margin-bottom: 0 !important;
}

/* 4. Elementor section padding reset — sections must use our own section padding, not Elementor's */
.elementor-section,
.elementor-top-section {
  padding: 0 !important;
}
.elementor-column-gap-default > .elementor-column > .elementor-column-wrap > .elementor-widget-container {
  padding: 0 !important;
}

/* 5. Elementor heading widget — ensure display font and dark color */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  color: var(--ink) !important;
}
.elementor-widget-heading .elementor-heading-title em {
  color: var(--teal);
  font-style: italic;
}

/* 6. Elementor HTML widget — no extra wrapper padding */
.elementor-widget-html > .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* 7. WordPress img.wp-smiley reset (emoji styles can affect inline images) */
img:not(.wp-smiley):not(.emoji) {
  display: block;
  max-width: 100%;
}

/* 8. Body override — ensure WP/WooCommerce can't change our base type */
body {
  font-family: var(--font-body) !important;
  background-color: var(--cream) !important;
  color: var(--ink) !important;
}

/* 9. WooCommerce "required" asterisk — already shown, don't let WC hide it */
.woocommerce form .form-row .required { visibility: visible; }

/* 10. Entry title — hide the WordPress page title that WP auto-inserts above Elementor content */
h1.entry-title,
.page-title.entry-title { display: none; }

/* 11. WordPress default .wp-block-* resets that may affect content width */
.wp-block-group,
.wp-block-cover { max-width: 100%; }

/* 12. Remove WP's default 2em margin on Gutenberg paragraphs if any leak in */
.entry-content p { margin: 0; }

/* 13. Elementor section responsive — kill their responsive padding on mobile too */
@media (max-width: 767px) {
  .elementor-section,
  .elementor-top-section { padding: 0 !important; }
}

/* =============================================
   SPA PAGE — SERVICE OVERVIEW CARDS
   ============================================= */
.spa-service-overview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.spa-svc-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--cream-warm); transition: all var(--transition); }
.spa-svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spa-svc-icon { font-size: 2.2rem; margin-bottom: 16px; }
.spa-svc-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.spa-svc-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; }
.spa-svc-from { font-size: 0.82rem; color: var(--ink-soft); }
.spa-svc-from strong { color: var(--teal); font-size: 1rem; }

/* =============================================
   SPA PAGE — FULL PRICE LIST
   ============================================= */
.spa-pricing-section { background: var(--cream); padding: 100px 0; }
.section-sub { font-size: 0.9rem; color: var(--ink-soft); margin-top: 8px; letter-spacing: 0.01em; }

/* Tab nav */
.spa-tabs-nav { display: flex; gap: 8px; flex-wrap: wrap; margin: 40px 0 36px; border-bottom: 2px solid var(--cream-warm); padding-bottom: 0; }
.spa-tab-btn { padding: 10px 22px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; border: none; background: transparent; color: var(--ink-soft); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; border-radius: 0; transition: color 0.2s, border-color 0.2s; }
.spa-tab-btn:hover { color: var(--teal); }
.spa-tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }

/* Tab panels */
.spa-tab-panel { display: none; }
.spa-tab-panel.active { display: block; }

/* Price service block */
.spa-price-block { background: var(--white); border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 24px; border: 1px solid var(--cream-warm); }
.spa-price-block-header { margin-bottom: 20px; }
.spa-price-block-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--forest); margin-bottom: 6px; }
.spa-price-includes { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.6; }
.spa-price-includes span { font-weight: 600; color: var(--teal); }

/* Price table */
.spa-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spa-price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.spa-price-table thead tr { background: var(--forest); }
.spa-price-table thead th { color: white; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 16px; text-align: left; }
.spa-price-table thead th:not(:first-child) { text-align: center; min-width: 80px; }
.spa-price-table tbody tr { border-bottom: 1px solid var(--cream-warm); transition: background 0.15s; }
.spa-price-table tbody tr:last-child { border-bottom: none; }
.spa-price-table tbody tr:hover { background: var(--teal-pale); }
.spa-price-table tbody td { padding: 13px 16px; color: var(--ink-mid); }
.spa-price-table tbody td:first-child { font-weight: 500; color: var(--ink); }
.spa-price-table tbody td:not(:first-child) { text-align: center; color: var(--teal-dark); font-weight: 600; }
.spa-row-highlight { background: rgba(43,181,166,0.05); }
.spa-badge { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); background: var(--teal-pale); padding: 2px 8px; border-radius: 50px; margin-left: 8px; vertical-align: middle; }

/* Add-on note */
.spa-addon-note { background: rgba(43,181,166,0.08); border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0; padding: 12px 20px; font-size: 0.85rem; color: var(--ink-mid); margin-bottom: 24px; }
.spa-addon-note strong { color: var(--teal-dark); }

/* Disclaimer */
.spa-price-disclaimer { margin-top: 32px; background: var(--cream-warm); border-radius: var(--radius-lg); padding: 20px 28px; }
.spa-price-disclaimer p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.7; margin: 0; text-align: center; }

/* Breed guide */
.breed-guide-wrap { margin-top: 32px; }
.breed-guide-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; background: var(--white); border: 1px solid var(--cream-warm); border-radius: var(--radius-lg); padding: 16px 24px; font-size: 0.9rem; font-weight: 600; color: var(--forest); cursor: pointer; transition: all var(--transition); text-align: left; }
.breed-guide-toggle:hover { background: var(--teal-pale); border-color: var(--teal-light); }
.breed-guide-arrow { font-size: 1.1rem; transition: transform 0.25s; flex-shrink: 0; }
.breed-guide-body { background: var(--white); border: 1px solid var(--cream-warm); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 28px 28px 20px; }
.breed-guide-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.breed-coat-block { }
.breed-coat-label { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--forest); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--teal-light); }
.breed-size-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.breed-size-head { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px; }
.breed-size-cols ul { list-style: none; margin: 0; padding: 0; }
.breed-size-cols li { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.8; }

/* =============================================
   SPA PRICING — RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .spa-service-overview-grid { grid-template-columns: repeat(2,1fr); }
  .breed-guide-grid { grid-template-columns: 1fr; }
  .breed-size-cols { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .spa-service-overview-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .spa-tabs-nav { gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .spa-tab-btn { flex-shrink: 0; padding: 10px 16px; font-size: 0.78rem; }
  .spa-price-block { padding: 24px 20px; }
  .spa-price-block-title { font-size: 1.3rem; }
  .breed-size-cols { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .spa-service-overview-grid { grid-template-columns: 1fr; }
  .breed-guide-grid { grid-template-columns: 1fr; }
}
