/* ============================================================
   Golden Dreams Doodles - Public Site Styles
   Mobile-first, production-quality
   ============================================================ */


/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --primary: #D4A853;
  --primary-light: #E8C87A;
  --primary-dark: #B8892E;
  --secondary: #4A7C59;
  --secondary-light: #6AAF82;
  --bg: #FFFCF5;
  --bg-2: #FDF6EC;
  --surface: #FFFFFF;
  --text: #2C2416;
  --text-2: #6B5B47;
  --text-3: #9B8B77;
  --border: #E8DDD0;
  --status-available: #4A7C59;
  --status-reserved: #D4A853;
  --status-sold: #9B8B77;

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

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(44,36,22,0.08), 0 1px 2px rgba(44,36,22,0.04);
  --shadow-md: 0 4px 12px rgba(44,36,22,0.12), 0 2px 4px rgba(44,36,22,0.06);
  --shadow-lg: 0 8px 24px rgba(44,36,22,0.16), 0 4px 8px rgba(44,36,22,0.08);
  --shadow-xl: 0 16px 48px rgba(44,36,22,0.20), 0 8px 16px rgba(44,36,22,0.10);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --nav-height: 72px;
  --bottom-nav-height: 64px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  --banner-height: 0px;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--bottom-nav-height);
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text);
}

.display-xl { font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; letter-spacing: -0.01em; }
.display-md { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; font-style: italic; margin-bottom: var(--sp-4); }
.section-subtitle { font-size: 1.1rem; color: var(--text-2); max-width: 600px; margin-left: auto; margin-right: auto; }

.text-gold { color: var(--primary); }
.text-green { color: var(--secondary); }

/* ============================================================
   Layout
   ============================================================ */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-4); }
@media (min-width: 640px) { .container { padding: 0 var(--sp-6); } }
@media (min-width: 1024px) { .container { padding: 0 var(--sp-8); } }

.section-header { text-align: center; margin-bottom: var(--sp-12); }
.section-divider {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--r-full);
  margin: var(--sp-4) auto 0;
}

/* Cute paw-patterned decorative label above section titles */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '✦';
  font-size: 0.6rem;
  opacity: 0.7;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.animate-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.animate-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-item.delay-1 { transition-delay: 0.1s; }
.animate-item.delay-2 { transition-delay: 0.2s; }
.animate-item.delay-3 { transition-delay: 0.3s; }
.animate-item.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Navigation
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

#main-nav.scrolled,
#main-nav.menu-open {
  background: rgba(255, 252, 245, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}
#main-nav.menu-open .nav-logo { color: var(--text); }
#main-nav.menu-open .hamburger span { background: var(--text); }

/* Nav container must fill full nav height for vertical centering to work */
#main-nav .container { height: 100%; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFCF5;
  transition: color var(--transition-base);
}
#main-nav.scrolled .nav-logo {
  color: var(--text);
}
#main-nav:not(.scrolled) .nav-links a {
  color: rgba(255,252,245,0.8);
}
#main-nav:not(.scrolled) .nav-links a:hover,
#main-nav:not(.scrolled) .nav-links a.active {
  color: #FFFCF5;
}

.nav-logo .paw-icon { width: 36px; height: 36px; fill: var(--primary); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-4);
}

@media (min-width: 769px) {
  .nav-links { display: flex; }
}
@media (min-width: 1100px) {
  .nav-links { gap: var(--sp-6); }
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .nav-links a { font-size: 0.9rem; }
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--primary);
  transition: right var(--transition-base);
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.btn-inquire-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 20px;
  background: var(--primary);
  color: #2C1400;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-inquire-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hide header Inquire Now on mobile — mobile menu already has it */
@media (max-width: 768px) {
  #main-nav .btn-inquire-nav { display: none; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background var(--transition-fast);
}

@media (min-width: 769px) { .hamburger { display: none; } }

.hamburger:hover { background: rgba(212,168,83,0.1); }

.hamburger span {
  display: block;
  height: 2px;
  background: #FFFCF5;
  border-radius: var(--r-full);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base), background var(--transition-base);
  transform-origin: center;
}
#main-nav.scrolled .hamburger span {
  background: var(--text);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay
   Outer = fixed scroll container (NOT a flex container — iOS requires this)
   Inner = flex column min-height:100% so content centers on tall screens
   ------------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--bg);
  /* Scroll container: NO flex here — flex+overflow-y causes iOS scroll bugs */
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  /* Prevent body scroll bleed-through on iOS without locking body */
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* Inner flex container — min-height ensures it fills screen on short content */
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  min-height: 100dvh;
  width: 100%;
  padding-top: max(72px, calc(env(safe-area-inset-top, 0px) + 64px));
  padding-bottom: max(40px, calc(env(safe-area-inset-bottom, 0px) + 24px));
  padding-left: 24px;
  padding-right: 24px;
  gap: 4px;
  box-sizing: border-box;
  justify-content: center;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 52px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  border-radius: var(--r-lg);
  padding: 6px 16px;
  transition: color var(--transition-fast), background var(--transition-fast);
  text-align: center;
}

.mobile-menu a:hover,
.mobile-menu a:active,
.mobile-menu a:focus-visible { color: var(--primary); background: rgba(212,168,83,0.1); }

.mobile-menu a.active { color: var(--primary); }

.mobile-menu .btn-inquire-nav {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 40px;
  margin-top: 16px;
  min-height: 50px;
  width: auto;
  font-style: normal;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
}

/* ============================================================
   Nav Dropdowns (Desktop)
   ============================================================ */

/* Direct nav links (non-dropdown) */
.nav-direct-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}
@media (min-width: 1100px) { .nav-direct-link { font-size: 0.9rem; } }
.nav-direct-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--primary);
  transition: right var(--transition-base);
}
.nav-direct-link:hover,
.nav-direct-link.active { color: var(--text); }
.nav-direct-link:hover::after,
.nav-direct-link.active::after { right: 0; }

/* Dropdown group container */
.nav-dropdown-group {
  position: relative;
}

/* Dropdown trigger button */
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  font-family: var(--font-body);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
  position: relative;
}
@media (min-width: 1100px) { .nav-dropdown-trigger { font-size: 0.9rem; } }
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--primary);
  transition: right var(--transition-base);
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--text); }
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after { right: 0; }

/* Unscrolled hero state: keep triggers + direct links white like old nav links */
#main-nav:not(.scrolled) .nav-dropdown-trigger,
#main-nav:not(.scrolled) .nav-direct-link {
  color: rgba(255,252,245,0.8);
}
#main-nav:not(.scrolled) .nav-dropdown-trigger:hover,
#main-nav:not(.scrolled) .nav-dropdown-trigger.active,
#main-nav:not(.scrolled) .nav-direct-link:hover,
#main-nav:not(.scrolled) .nav-direct-link.active {
  color: #FFFCF5;
}

/* Chevron arrow */
.nav-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.nav-dropdown-group.open .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 200;
}
.nav-dropdown-group.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  transition: background var(--transition-fast);
  color: var(--text);
}
.nav-dropdown-item:hover { background: var(--bg-2); }
.nav-dropdown-item.active { background: rgba(212,168,83,0.08); }

.nav-dropdown-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-dropdown-desc {
  font-size: 0.72rem;
  color: var(--text-3);
  white-space: nowrap;
}

/* "New" badge — desktop nav */
.nav-badge-new {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* "Page" badge — desktop nav */
.nav-badge-page {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ============================================================
   Mobile Menu Groups
   ============================================================ */
.mm-group {
  width: 100%;
  max-width: 360px;
  margin-bottom: 6px;
}
.mm-group-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 2px 16px 4px;
}
/* mm-item inherits .mobile-menu a styles for the large italic look */
.mm-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mm-item.mm-item-new { font-style: italic; }

/* "New" badge — mobile menu */
.mm-badge-new {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-body);
  line-height: 1.5;
  vertical-align: middle;
}

.mm-item.mm-item-page { font-style: italic; }

/* "Page" badge — mobile menu */
.mm-badge-page {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-body);
  line-height: 1.5;
  vertical-align: middle;
}

/* Inquire CTA in mobile menu */
.mm-cta {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  padding: 14px 40px !important;
  margin-top: 16px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  width: auto !important;
  max-width: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  justify-content: center !important;
}

/* ============================================================
   Bottom Mobile Navigation
   ============================================================ */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  height: var(--bottom-nav-height);
  background: rgba(255,252,245,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (min-width: 769px) { .bottom-nav { display: none; } }

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: var(--sp-2) 0;
}

.bottom-nav-item svg { width: 22px; height: 22px; fill: currentColor; }
.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item:hover { color: var(--primary); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(212,168,83,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,83,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(212,168,83,0.05);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn-ghost:hover { background: rgba(212,168,83,0.1); }

.btn-sm { padding: 8px 16px; font-size: 0.8rem; min-height: 36px; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================================
   Hero Section
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FDF3DC 0%, #F5E4C0 30%, #EDD49A 60%, #E4C27A 100%);
  z-index: 0;
  will-change: transform;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,36,22,0.3) 0%, rgba(44,36,22,0.1) 50%, rgba(44,36,22,0.5) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary-light), transparent);
  top: -200px; right: -150px;
}

.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--secondary-light), transparent);
  bottom: 10%; left: -100px;
}

.hero-shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 40%; left: 30%;
  opacity: 0.08;
}

/* Floating Paw Prints */
.paw-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.paw-particle {
  position: absolute;
  fill: var(--primary);
  opacity: 0;
  animation: floatPaw 8s ease-in-out infinite;
}

.paw-particle:nth-child(1) { width: 30px; height: 30px; left: 10%; top: 20%; animation-delay: 0s; opacity: 0.12; }
.paw-particle:nth-child(2) { width: 20px; height: 20px; left: 80%; top: 15%; animation-delay: 1.3s; opacity: 0.1; }
.paw-particle:nth-child(3) { width: 35px; height: 35px; left: 60%; top: 60%; animation-delay: 2.6s; opacity: 0.08; }
.paw-particle:nth-child(4) { width: 25px; height: 25px; left: 25%; top: 70%; animation-delay: 3.9s; opacity: 0.12; }
.paw-particle:nth-child(5) { width: 18px; height: 18px; left: 90%; top: 50%; animation-delay: 5.2s; opacity: 0.1; }
.paw-particle:nth-child(6) { width: 28px; height: 28px; left: 45%; top: 10%; animation-delay: 0.7s; opacity: 0.09; }

@keyframes floatPaw {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0; }
  20%  { opacity: 0.12; }
  50%  { transform: translateY(-30px) rotate(15deg); }
  80%  { opacity: 0.12; }
  100% { transform: translateY(-60px) rotate(-10deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 16px;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-6);
}

.hero-badge svg { width: 14px; height: 14px; fill: var(--primary); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFCF5;
  margin-bottom: var(--sp-6);
}

.hero-title .highlight {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,252,245,0.82);
  max-width: 600px;
  margin: 0 auto var(--sp-10);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
}

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  background: rgba(255,252,245,0.10);
  backdrop-filter: blur(12px);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: auto;
  margin-bottom: var(--sp-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,252,245,0.18);
}

@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #FFFCF5;
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,252,245,0.65);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   About Section
   ============================================================ */
#about {
  padding: var(--sp-20) 0;
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  gap: var(--sp-12);
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
}

.about-text { max-width: 560px; }
.about-text p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

/* Tabs */
.about-tabs-nav {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  background: var(--surface);
  padding: var(--sp-1);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(212,168,83,0.4);
}

.tab-btn:hover:not(.active) { color: var(--primary); }

.tab-content { display: none; animation: fadeIn var(--transition-base); }
.tab-content.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Trait Bars */
.trait-list { display: flex; flex-direction: column; gap: var(--sp-4); }

.trait-item {}

.trait-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
}

.trait-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.trait-pct { font-size: 0.85rem; font-weight: 700; color: var(--primary); }

.trait-bar-bg {
  height: 8px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}

.trait-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
  border-radius: var(--r-full);
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Generation Tree */
.gen-tree {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.gen-node {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: default;
}

.gen-node:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.gen-node.highlight {
  border-color: var(--primary);
  background: rgba(212,168,83,0.05);
}

.gen-badge {
  min-width: 52px;
  padding: 4px 10px;
  background: var(--primary);
  color: white;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.gen-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.gen-info p { font-size: 0.8rem; color: var(--text-3); }

.gen-poodle-pct {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
}

/* Size Guide */
.size-guide { display: flex; flex-direction: column; gap: var(--sp-4); }

.size-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-row:hover, .size-row.active {
  border-color: var(--primary);
  background: rgba(212,168,83,0.04);
}

.size-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
}

.size-dot {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  transition: all var(--transition-base);
}

.size-dot.toy    { width: 20px; height: 20px; }
.size-dot.mini   { width: 28px; height: 28px; }
.size-dot.medium { width: 36px; height: 36px; }
.size-dot.standard { width: 44px; height: 44px; }

.size-info h4 { font-size: 0.9rem; font-weight: 600; }
.size-info p  { font-size: 0.8rem; color: var(--text-3); }

/* ============================================================
   Puppies Section
   ============================================================ */
#puppies {
  padding: var(--sp-20) 0;
  background: var(--bg);
}

.filter-bar {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  transition: all var(--transition-fast);
  min-height: 44px;
}

.filter-btn.active {
  background: var(--primary);
  color: #2C1400;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(212,168,83,0.4);
}

.filter-btn:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

/* Puppy Grid */
.puppies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  min-height: 400px;
}

@media (min-width: 640px) { .puppies-grid { gap: var(--sp-6); } }
@media (min-width: 768px) { .puppies-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .puppies-grid { grid-template-columns: repeat(4, 1fr); } }

/* Puppy Card */
.puppy-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.puppy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.puppy-card.hidden { display: none; }

.puppy-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}

.puppy-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.puppy-card:hover .puppy-card-image img { transform: scale(1.05); }

.puppy-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.puppy-placeholder svg {
  width: 40%;
  height: 40%;
  fill: rgba(255,255,255,0.5);
}

.puppy-status-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
}

.status-available { background: rgba(74,124,89,0.9); color: white; }
.status-available::before { content: '♥'; margin-right: 4px; font-size: 0.75rem; }
.status-reserved  { background: rgba(212,168,83,0.9); color: white; }
.status-sold      { background: rgba(155,139,119,0.85); color: white; }

.puppy-card-body {
  padding: var(--sp-4);
}

.puppy-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}

.puppy-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
}

/* Gender bubble — text pill, no icon */
.gender-icon,
.gender-bubble {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  white-space: nowrap;
}

.gender-male   { background: rgba(74,124,89,0.15); color: #2A6040; border: 1.5px solid rgba(74,124,89,0.4); }
.gender-female { background: rgba(212,168,83,0.2);  color: #8A5A14; border: 1.5px solid rgba(212,168,83,0.45); }

.puppy-card-header-right {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

/* Puppy age badge on card image */
.puppy-age-badge {
  position: absolute;
  bottom: var(--sp-2);
  left: var(--sp-2);
  padding: 3px 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Modal name + share row */
.modal-puppy-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}
.modal-puppy-name-row .modal-puppy-name { margin-bottom: 0; }

/* Parent card role+share row */
.parent-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}

/* Share button (small circular, for cards) */
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--text-3);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.share-btn:hover {
  background: rgba(212,168,83,0.12);
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

/* Share toast notification */
.share-toast {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--text);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  pointer-events: none;
}
.share-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 769px) { .share-toast { bottom: 24px; } }

.puppy-color-badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
}

.puppy-stats-row {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.puppy-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-3);
}

.puppy-stat svg { width: 13px; height: 13px; fill: var(--text-3); }

.btn-meet {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-meet:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(212,168,83,0.4);
}

/* ============================================================
   Puppy Modal
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44,36,22,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  animation: fadeOverlay 0.3s ease forwards;
}

@keyframes fadeOverlay { to { opacity: 1; } }

.modal-panel {
  background: var(--surface);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  animation: slideModal 0.3s ease forwards;
  box-shadow: var(--shadow-xl);
}

@keyframes slideModal { to { transform: translateY(0) scale(1); } }

.modal-close {
  position: sticky;
  top: var(--sp-4);
  float: right;
  margin: var(--sp-4) var(--sp-4) 0 0;
  width: 40px; height: 40px;
  background: var(--bg-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-2);
  transition: all var(--transition-fast);
  z-index: 1;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid var(--border);
}

.modal-close:hover { background: var(--primary); color: white; }

.modal-body {
  padding: var(--sp-6);
  padding-top: 0;
}

@media (min-width: 640px) {
  .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: start;
  }
}

/* Carousel */
.carousel {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4/3;
}

.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform var(--transition-slow);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.carousel-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-placeholder svg { width: 35%; height: 35%; fill: rgba(255,255,255,0.5); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  z-index: 1;
}

.carousel-btn:hover { background: var(--primary); color: white; }
.carousel-btn.prev { left: var(--sp-3); }
.carousel-btn.next { right: var(--sp-3); }

.carousel-dots {
  position: absolute;
  bottom: var(--sp-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active { background: white; transform: scale(1.3); }

.modal-puppy-info {}
.modal-puppy-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--sp-2);
}

.modal-badges {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding: var(--sp-4);
  background: var(--bg-2);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.modal-detail-item { }
.modal-detail-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); font-weight: 600; }
.modal-detail-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }

.modal-description {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.modal-nav-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-3);
  padding: 8px 12px;
  border-radius: var(--r-md);
  transition: all var(--transition-fast);
}

.modal-nav-btn:hover { color: var(--primary); background: rgba(212,168,83,0.06); }

/* ============================================================
   Gallery Section
   ============================================================ */
#gallery {
  padding: var(--sp-20) 0;
  background: var(--bg-2);
}

.gallery-filter-tabs {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.gallery-grid {
  columns: 2;
  column-gap: var(--sp-4);
}

@media (min-width: 640px) { .gallery-grid { columns: 2; column-gap: var(--sp-6); } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}

@media (min-width: 640px) { .gallery-item { margin-bottom: var(--sp-6); } }

.gallery-item-inner {
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-3);
}

.gallery-placeholder:nth-child(odd) { aspect-ratio: 3/4; }

.gallery-placeholder svg { width: 30%; fill: rgba(255,255,255,0.5); }
.gallery-placeholder-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,36,22,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: white;
}

.gallery-caption-cat {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(212,168,83,0.8);
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.gallery-caption-text {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.lightbox-content {
  position: relative;
  width: 96vw;
  height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 96vw;
  max-height: 94vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  user-select: none;
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all var(--transition-fast);
}

.lightbox-btn:hover { background: rgba(255,255,255,0.3); }
.lightbox-btn.prev { left: var(--sp-4); }
.lightbox-btn.next { right: var(--sp-4); }
.lightbox-close {
  position: fixed;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all var(--transition-fast);
  z-index: 9999;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(255,255,255,0.35); transform: scale(1.1); }

.lightbox-caption {
  position: fixed;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  max-width: 500px;
}

/* ============================================================
   Parents Section
   ============================================================ */
#parents {
  padding: var(--sp-20) 0;
  background: var(--bg);
}

.parents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  min-height: 300px;
}

@media (min-width: 768px) { .parents-grid { grid-template-columns: repeat(2, 1fr); } }

.parent-card {
  height: 440px;
  perspective: 1000px;
  cursor: pointer;
}

.parent-card-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.parent-card.flipped .parent-card-inner { transform: rotateY(180deg); }

.parent-card-front, .parent-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.parent-card-front {
  background: var(--surface);
}

.parent-card-back {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: rotateY(180deg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.parent-image {
  height: 65%;
  overflow: hidden;
  background: var(--bg-2);
}

.parent-image img { width: 100%; height: 100%; object-fit: cover; }
.parent-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parent-image-placeholder svg { width: 30%; fill: rgba(255,255,255,0.5); }

.parent-info { padding: var(--sp-5); }
/* parent-role-badge now uses .gender-bubble styles (.gender-female / .gender-male) */
.parent-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.parent-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2px;
}

.parent-breed { font-size: 0.85rem; color: var(--text-3); }

.parent-flip-hint {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.parent-back-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--sp-2);
  opacity: 0.9;
}

.parent-back-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: var(--sp-6);
}

.parent-back-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: var(--sp-6);
}

.health-badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.health-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
}

.health-badge::before { content: '✓'; font-weight: 700; }

/* ============================================================
   Testimonials Section
   ============================================================ */
#testimonials {
  padding: var(--sp-20) 0;
  background: var(--bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--sp-6);
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(212,168,83,0.08);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}

.testimonial-stars span { color: var(--primary); font-size: 1.1rem; }

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  position: relative;
}

.testimonial-family {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testimonial-puppy { font-size: 0.78rem; color: var(--primary); font-weight: 500; }
.testimonial-date { font-size: 0.75rem; color: var(--text-3); margin-top: 1px; }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.testimonials-dots { display: flex; gap: 6px; }

.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

.testimonials-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all var(--transition-fast);
}

.testimonials-arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(212,168,83,0.06);
}

/* ============================================================
   FAQ Section
   ============================================================ */
#faq {
  padding: var(--sp-20) 0;
  background: var(--bg);
}

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(212,168,83,0.4);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.faq-question:hover { color: var(--primary); }

.faq-paw {
  width: 20px; height: 20px;
  flex-shrink: 0;
  fill: var(--primary);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.faq-item.open .faq-paw { opacity: 1; }

.faq-icon {
  margin-left: auto;
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-3);
  transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(212,168,83,0.1);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  padding-left: calc(var(--sp-6) + 20px + var(--sp-4));
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  border-left: 3px solid var(--primary);
  margin-left: var(--sp-6);
  margin-right: var(--sp-6);
  padding-left: var(--sp-5);
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-1);
}

/* ============================================================
   Contact Section
   ============================================================ */
#contact {
  padding: var(--sp-20) 0;
  background: var(--bg-2);
}

.contact-grid {
  display: grid;
  gap: var(--sp-10);
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: var(--sp-4);
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.contact-details { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-8); }

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--primary); }

.contact-detail-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); font-weight: 600; }
.contact-detail-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }

.social-links { display: flex; gap: var(--sp-3); }

.social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(212,168,83,0.05);
}

.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* Contact Form */
.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: var(--sp-6);
}

.form-group { margin-bottom: var(--sp-5); }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-2);
}

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

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}

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

.form-error {
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: #C0392B;
}

.form-group.error .form-error { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-10);
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--sp-6);
  background: rgba(74,124,89,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon svg { width: 36px; height: 36px; fill: var(--secondary); }

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon .checkmark-anim {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkDraw 0.5s 0.3s ease forwards;
  stroke: var(--secondary);
  stroke-width: 3;
  fill: none;
}

@keyframes checkDraw { to { stroke-dashoffset: 0; } }

/* Floating Inquire Button */
.floating-inquire {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--sp-4));
  right: var(--sp-4);
  z-index: 980;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-fast), opacity 0.25s ease, visibility 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

/* Hide floating button when footer is in view */
.floating-inquire.hide-near-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-inquire:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(212,168,83,0.4);
}

.floating-inquire svg { width: 18px; height: 18px; fill: currentColor; }

@media (min-width: 769px) {
  .floating-inquire {
    bottom: var(--sp-8);
    right: var(--sp-8);
    padding: 16px 28px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: var(--sp-3);
}

.footer-logo .paw-icon { width: 32px; height: 32px; fill: var(--primary); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 280px; }

.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.72); margin-bottom: var(--sp-4); }

.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.62); }

.footer-admin-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-admin-link:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   Utility Classes
   ============================================================ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.no-puppies-msg { text-align: center; padding: var(--sp-16); color: var(--text-3); grid-column: 1/-1; }
.no-puppies-msg svg { width: 60px; height: 60px; fill: var(--border); margin: 0 auto var(--sp-4); }

/* ============================================================
   Focus Styles (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   Custom Scrollbar
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }

/* ============================================================
   Scroll Progress Bar
   ============================================================ */
#scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light), var(--secondary));
  background-size: 200% 100%;
  z-index: 9999;
  transition: width 0.08s linear;
  border-radius: 0 var(--r-full) var(--r-full) 0;
  animation: progressShimmer 3s linear infinite;
}
@keyframes progressShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ============================================================
   Custom Cursor (desktop only)
   ============================================================ */
#cursor-dot {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, opacity 0.2s ease;
  opacity: 0;
  /* Shadow gives contrast on both light and dark backgrounds */
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.9), 0 2px 8px rgba(0,0,0,0.25);
  will-change: left, top;
}
#cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.2s ease,
              background 0.25s ease,
              opacity 0.25s ease;
  opacity: 0;
  background: rgba(212,168,83,0.04);
  /* Dual outline for visibility on any background */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4), 0 2px 12px rgba(0,0,0,0.12);
  will-change: left, top;
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .puppy-card, .gallery-item,
  .parent-card, .faq-question, .quiz-option, input, select, textarea { cursor: none; }
  #cursor-dot { opacity: 1; }
  #cursor-ring { opacity: 1; }
}
/* Hovering interactive element */
#cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--primary);
  border-width: 2px;
  background: rgba(212,168,83,0.1);
}
#cursor-dot.hovering {
  width: 6px; height: 6px;
}
/* Click state */
#cursor-ring.clicking {
  width: 28px; height: 28px;
  background: rgba(212,168,83,0.3);
  border-width: 2px;
}
#cursor-dot.clicking {
  width: 14px; height: 14px;
  background: var(--primary-dark, #b8902d);
}

/* ============================================================
   Card 3D Tilt & Shine
   ============================================================ */
.puppy-card { will-change: transform; }

/* Shine sweep on card hover */
.puppy-card-image { overflow: hidden; }
.puppy-card-image::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}
.puppy-card:hover .puppy-card-image::before {
  animation: shineSwipe 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1;
}
@keyframes shineSwipe {
  0%   { left: -80%; opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* Click ripple on puppy images */
.img-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: rippleExpand 0.65s ease-out forwards;
  pointer-events: none;
  z-index: 6;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
}
@keyframes rippleExpand {
  to { transform: scale(28); opacity: 0; }
}

/* ============================================================
   Morph Expand Overlay
   ============================================================ */
.morph-expand {
  position: fixed;
  z-index: 1999;
  pointer-events: none;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  transition: top 0.45s cubic-bezier(0.32, 0, 0.07, 1),
              left 0.45s cubic-bezier(0.32, 0, 0.07, 1),
              width 0.45s cubic-bezier(0.32, 0, 0.07, 1),
              height 0.45s cubic-bezier(0.32, 0, 0.07, 1),
              border-radius 0.45s cubic-bezier(0.32, 0, 0.07, 1),
              opacity 0.25s ease;
}

/* ============================================================
   Directional Reveal Animations
   ============================================================ */
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-up {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.revealed { opacity: 1 !important; transform: none !important; }

/* Stagger for revealed siblings */
.reveal-left:nth-child(2), .reveal-right:nth-child(2), .reveal-up:nth-child(2), .reveal-scale:nth-child(2) { transition-delay: 0.08s; }
.reveal-left:nth-child(3), .reveal-right:nth-child(3), .reveal-up:nth-child(3), .reveal-scale:nth-child(3) { transition-delay: 0.16s; }
.reveal-left:nth-child(4), .reveal-right:nth-child(4), .reveal-up:nth-child(4), .reveal-scale:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   Gallery Enhanced Tilt
   ============================================================ */
.gallery-item-inner {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ============================================================
   Scroll-Linked Parallax Decorations
   ============================================================ */
.parallax-slow  { will-change: transform; }
.parallax-med   { will-change: transform; }
.parallax-fast  { will-change: transform; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ============================================================
   PRODUCTION POLISH — Appended enhancements
   ============================================================ */

/* A. Enhanced CSS Variables */
:root {
  --shadow-gold-sm: 0 2px 8px rgba(212,168,83,0.15);
  --shadow-gold-md: 0 8px 24px rgba(212,168,83,0.20);
  --shadow-gold-lg: 0 16px 48px rgba(212,168,83,0.25);
  --glass-bg: rgba(255,252,245,0.72);
  --glass-border: rgba(212,168,83,0.18);
  --gradient-hero: linear-gradient(145deg, #2C2416 0%, #4A3828 40%, #1e1a12 100%);
  --gradient-gold: linear-gradient(135deg, #B8892E 0%, #D4A853 50%, #E8C87A 100%);
  --gradient-surface: linear-gradient(180deg, #FFFFFF 0%, #FDF6EC 100%);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

/* O. Grain/noise texture overlay for premium feel */
#hero::after, #testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}
#hero .hero-bg, #hero .hero-shapes, #hero .paw-particles { position: absolute; }
#hero .hero-bg { z-index: 0; }
#hero::before, #hero::after { z-index: 1; }
#hero .hero-shapes { z-index: 2; }
#hero .paw-particles { z-index: 2; }

/* B. Enhanced Hero Section */
#hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.08) 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Floating blob decorations */
#hero .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: blob-drift 12s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.07); }
  66%  { transform: translate(-20px, 30px) scale(0.96); }
  100% { transform: translate(15px, -10px) scale(1.04); }
}

/* Hero title — white on dark bg (gradient text removed) */

/* Hero stat cards — glassmorphism */
.hero-stats .stat-card,
.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-gold-sm);
  transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring);
}
.hero-stats .stat-card:hover,
.stat-card:hover {
  box-shadow: var(--shadow-gold-md);
  transform: translateY(-3px);
}

/* C. Section Title Enhancement */
.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.section-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 0 auto 0.75rem;
}

/* D. Puppy Card Polish */
.puppy-card {
  box-shadow: var(--shadow-gold-sm);
  transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring);
}
.puppy-card:hover {
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-gold-lg);
  transform: translateY(-4px);
}
.puppy-card .puppy-image-wrap {
  position: relative;
  overflow: hidden;
}
.puppy-card .puppy-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
  pointer-events: none;
}
.puppy-card .puppy-price,
.puppy-price {
  color: var(--primary);
  font-weight: 700;
}
.puppy-card .btn-meet,
.btn-meet {
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
}
.puppy-card .btn-meet::after,
.btn-meet::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.puppy-card .btn-meet:hover::after,
.btn-meet:hover::after {
  transform: translateX(100%);
}

/* E. Gallery section */
.gallery-item {
  transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring);
}
.gallery-item:hover {
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-gold-md);
  transform: scale(1.02);
}
.gallery-item .gallery-overlay {
  background: linear-gradient(to top, rgba(44,36,22,0.82) 0%, rgba(44,36,22,0.1) 100%);
}
.gallery-category-badge,
.gallery-item .category-badge {
  background: var(--gradient-gold);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2em 0.75em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* F. Parent / Flip Cards */
.parent-card {
  transition: box-shadow 0.3s var(--ease-smooth);
}
.parent-card:hover {
  box-shadow: var(--shadow-gold-md);
}
/* Health badges on light backgrounds (default) */
.health-badge {
  background: linear-gradient(135deg, rgba(212,168,83,0.12) 0%, rgba(212,168,83,0.22) 100%);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2em 0.65em;
  letter-spacing: 0.03em;
}
/* Health badges on dark card back — need high contrast */
.parent-card-back .health-badge {
  background: rgba(255,255,255,0.22) !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  color: #FFFCF5 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.parent-card-back .health-badge::before {
  color: #FFE599 !important;
}

/* G. FAQ Section */
.faq-item.active {
  border-left: 3px solid var(--primary);
  background: linear-gradient(90deg, rgba(212,168,83,0.06) 0%, transparent 100%);
  padding-left: calc(var(--space-md) - 3px);
}
.faq-toggle {
  transition: transform 0.3s var(--ease-spring);
  font-size: 1.25rem;
  line-height: 1;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary);
}

/* H. Contact / Form Inputs */
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.18);
}
.btn-submit,
.contact-form button[type="submit"] {
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s var(--ease-spring);
}
.btn-submit:hover,
.contact-form button[type="submit"]:hover {
  box-shadow: var(--shadow-gold-md);
  transform: translateY(-2px);
}

/* I. Footer */
footer,
#footer {
  background: linear-gradient(160deg, #1e1610 0%, #2c2416 60%, #120f09 100%);
}
footer a:hover,
#footer a:hover {
  color: var(--primary-light);
  text-decoration: none;
}
.footer-social-link,
.social-icon {
  transition: transform 0.25s var(--ease-spring), color 0.2s ease;
}
.footer-social-link:hover,
.social-icon:hover {
  transform: scale(1.2) translateY(-2px);
  color: var(--primary) !important;
}

/* J. Global Primary Button Shimmer */
.btn-primary {
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }

/* K. Page Loading Overlay */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
/* Added by inline script when SHOW_PAGE_LOADER = false */
.no-loader #page-loader { display: none !important; }
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-paw {
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* M. Selection Color */
::selection { background: rgba(212,168,83,0.3); color: var(--text); }

/* N. Image blur-up loading effect */
img.loading { filter: blur(8px); transition: filter 0.3s ease; }
img.loaded  { filter: blur(0); }

/* ============================================================
   Production Polish II - Premium Refinements
   ============================================================ */

/* Magnetic button effect prep */
.btn-primary, .btn-secondary, .btn-inquire-nav {
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease-smooth);
}

/* Nav glassmorphism when scrolled */
#main-nav.scrolled {
  background: rgba(255,252,245,0.88) !important;
  backdrop-filter: blur(16px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
  box-shadow: 0 1px 0 rgba(212,168,83,0.12), 0 4px 24px rgba(44,36,22,0.08) !important;
}

/* Hero section dark background  */
.hero-bg {
  background: linear-gradient(145deg, #2C2416 0%, #4A3828 40%, #1e1a12 100%) !important;
}

/* Better hero stat cards */
.hero-stat-value { color: #FFFCF5 !important; }
.hero-stat-label { color: rgba(255,252,245,0.65) !important; }
.hero-stats {
  background: rgba(255,252,245,0.07) !important;
  border: 1px solid rgba(255,252,245,0.14) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,252,245,0.1) !important;
}

/* Puppy card premium hover */
.puppy-card {
  transform-origin: center bottom;
  transition: box-shadow 0.35s var(--ease-smooth);
}
.puppy-card:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

/* Gallery masonry feel — vary heights */
.gallery-grid {
  grid-auto-rows: 260px;
}
.gallery-item:nth-child(3n+1) { grid-row: span 1; }
.gallery-item:nth-child(3n+2) { grid-row: span 1; }

/* Testimonial card premium styling */
.testimonial-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 6rem;
  font-family: var(--font-display);
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

/* FAQ premium hover */
.faq-item {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-spring);
}
.faq-item:hover:not(.open) {
  transform: translateX(4px);
}

/* Contact section gradient background */
#contact {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

/* Section dividers */
section + section::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 0 auto -3px;
  border-radius: 2px;
  opacity: 0.4;
}

/* Hero badge needs light color on dark bg */
.hero-badge {
  color: rgba(255,252,245,0.9) !important;
  border-color: rgba(255,252,245,0.2) !important;
  background: rgba(255,252,245,0.08) !important;
}
.hero-badge svg { fill: var(--primary) !important; }

/* Secondary button light variant for dark hero bg */
#hero .btn-secondary {
  color: rgba(255,252,245,0.9);
  border-color: rgba(255,252,245,0.3);
  background: rgba(255,252,245,0.08);
}
#hero .btn-secondary:hover {
  background: rgba(255,252,245,0.16);
  border-color: rgba(255,252,245,0.5);
  color: #FFFCF5;
}

/* Hero scroll hint */
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,252,245,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px;
}
.hero-scroll-line {
  flex: 1;
  height: 1px;
  background: rgba(255,252,245,0.2);
  max-width: 80px;
}
@media (max-width: 640px) { .hero-scroll-hint { display: none; } }

/* ============================================================
   Litter Countdown Banner
   ============================================================ */
.litter-banner {
  background: linear-gradient(90deg, #1A1209, #2A1E0A);
  border-bottom: 1px solid rgba(212, 168, 83, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  width: 100%;
  padding: 9px 16px;
  z-index: 999;
  font-family: var(--font-body);
}

/* Mobile: banner scrolls away with the page (not fixed to viewport) */
@media (max-width: 768px) {
  .litter-banner {
    position: absolute;
  }
}

.litter-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
}

.litter-banner-inner svg { color: #D4A853; flex-shrink: 0; }

.litter-banner-text {
  color: rgba(255, 252, 245, 0.75);
}

.litter-banner-text strong {
  color: #D4A853;
}

.litter-countdown {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 6px;
  padding: 3px 8px;
}

.lc-block {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.lc-num {
  font-size: 13px;
  font-weight: 700;
  color: #D4A853;
  font-variant-numeric: tabular-nums;
  min-width: 18px;
  text-align: center;
}

.lc-lbl {
  font-size: 9px;
  color: rgba(212, 168, 83, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lc-sep {
  color: rgba(212, 168, 83, 0.4);
  font-weight: 600;
  font-size: 12px;
  padding: 0 1px;
}

.litter-banner-link {
  color: #D4A853;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  padding: 3px 10px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.litter-banner-link:hover {
  background: rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.55);
}

/* ============================================================
   How to Adopt — Process Steps
   ============================================================ */
#process {
  background: var(--bg-2);
  padding: var(--sp-24) 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: var(--sp-12);
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #1A1209;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 168, 83, 0.5);
}

.process-step-card {
  margin-top: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.process-step:hover .process-step-card {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.process-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--primary);
}

.process-step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.process-step-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

.process-step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(212, 168, 83, 0.3));
  align-self: center;
  margin-top: -48px; /* align with number circle */
  position: relative;
  z-index: 1;
}

.process-step-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
  transform: rotate(45deg);
}

.process-cta {
  text-align: center;
  margin-top: var(--sp-12);
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
  }
  .process-step {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: var(--sp-4);
  }
  .process-step-num {
    flex-shrink: 0;
    margin-top: 4px;
  }
  .process-step-card {
    margin-top: 0;
    flex: 1;
  }
  .process-step-icon {
    margin: 0 0 var(--sp-3);
  }
  .process-step-connector {
    width: 2px;
    height: 24px;
    flex: none;
    margin: 0 0 0 23px; /* align with center of num circle */
    background: linear-gradient(180deg, var(--primary), rgba(212,168,83,0.3));
    align-self: auto;
  }
  .process-step-connector::after {
    right: -4px;
    top: auto;
    bottom: -5px;
    border-right: none;
    border-bottom: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    transform: rotate(-45deg);
  }
}

/* ============================================================
   Puppy Match Quiz
   ============================================================ */
#quiz {
  padding: var(--sp-24) 0;
  background: var(--bg);
}

.quiz-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* Start screen */
.quiz-start {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-16) var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.quiz-start-paw svg {
  width: 64px;
  height: 64px;
  fill: var(--primary);
  opacity: 0.85;
}

.quiz-start-hint {
  color: var(--text-2);
  font-size: 0.95rem;
}

/* Quiz card base */
.quiz-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-10);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.quiz-card.quiz-in {
  opacity: 1;
  transform: translateY(0);
}

/* Progress bar */
.quiz-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-progress-label {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: var(--sp-6);
  font-weight: 500;
}

.quiz-q-sub {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

.quiz-q-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: var(--sp-8);
}

/* Options grid */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.quiz-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: var(--sp-4) var(--sp-5);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, background 0.18s, transform 0.18s, box-shadow 0.18s;
  min-height: 72px;
}

.quiz-option:hover {
  border-color: var(--primary);
  background: rgba(212, 168, 83, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.15);
}

.quiz-option.selected {
  border-color: var(--primary);
  background: rgba(212, 168, 83, 0.12);
  transform: scale(1.02);
}

.quiz-option:disabled {
  cursor: default;
}

.quiz-opt-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.quiz-opt-desc {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.3;
}

.quiz-back {
  font-size: 0.82rem;
  color: var(--text-3);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.quiz-back:hover { color: var(--text); }

/* Result card */
.quiz-result {
  text-align: center;
}

.quiz-result-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-6);
}

.quiz-result-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(212, 168, 83, 0.12);
  color: var(--primary);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quiz-result-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.quiz-result-range {
  font-size: 0.85rem;
  color: var(--text-3);
  font-weight: 500;
}

.quiz-result-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto var(--sp-6);
}

.quiz-result-note {
  background: rgba(74, 124, 89, 0.08);
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.83rem;
  color: var(--secondary);
  margin-bottom: var(--sp-6);
  line-height: 1.5;
}

.quiz-result-ctas {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.quiz-retake {
  font-size: 0.8rem;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  transition: color 0.15s;
}

.quiz-retake:hover { color: var(--text); text-decoration: underline; }

@media (max-width: 640px) {
  .quiz-card { padding: var(--sp-6); }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-q-text { font-size: 1.35rem; }
  .quiz-result-name { font-size: 1.7rem; }
}

/* ============================================================
   Single Image Widget (admin focal point preview)
   ============================================================ */
.siw {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
}
.siw-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2, #f5f0e8);
  border: 1.5px solid var(--border, #e5ddd0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.siw-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.siw-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
}
.siw-frame:hover .siw-remove { opacity: 1; }
.siw-actions {
  display: flex;
  gap: 8px;
}
.siw-focus-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
}

/* Focal point zoom row inside picker modal */
.focal-zoom-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 0;
}
.focal-zoom-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2, #5a5a5a);
  white-space: nowrap;
  min-width: 36px;
}
.focal-scale-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--primary, #D4A853) 0%, var(--border, #e5ddd0) 100%);
  outline: none;
  cursor: pointer;
}
.focal-scale-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary, #D4A853);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  cursor: grab;
}
.focal-scale-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary, #D4A853);
  border: 2px solid #fff;
  cursor: grab;
}
.focal-zoom-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary, #D4A853);
  min-width: 38px;
  text-align: right;
}

/* ============================================================
   Cute Enhancements ✦
   Spring animations, warm glows, playful micro-interactions
   ============================================================ */

/* ---------- Keyframe library ---------- */

/* Gentle float for the paw logo + floating button */
@keyframes cute-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

/* Soft heartbeat scale */
@keyframes cute-heartbeat {
  0%, 100% { transform: scale(1); }
  15%       { transform: scale(1.18); }
  30%       { transform: scale(1); }
  45%       { transform: scale(1.1); }
  60%       { transform: scale(1); }
}

/* "Available" pulse ring */
@keyframes cute-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,124,89,0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(74,124,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,124,89,0); }
}

/* Paw icon wiggle on nav logo hover */
@keyframes cute-paw-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  20%       { transform: rotate(-10deg) scale(1.2); }
  40%       { transform: rotate(8deg) scale(1.15); }
  60%       { transform: rotate(-5deg) scale(1.1); }
  80%       { transform: rotate(4deg) scale(1.05); }
}

/* Gentle spin for decorative paw watermarks */
@keyframes cute-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---------- Spring easing on interactive elements ---------- */

/* Springy buttons: overshoot slightly then settle */
.btn-primary,
.btn-secondary,
.btn-outline-white {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              background 0.2s ease,
              color 0.2s ease;
}
.btn-primary:hover  { transform: translateY(-4px) scale(1.03); }
.btn-secondary:hover { transform: translateY(-2px) scale(1.01); }

/* Springy puppy cards */
.puppy-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.puppy-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 60px rgba(212,168,83,0.22), 0 8px 24px rgba(44,36,22,0.12);
}

/* Springy gallery items */
.gallery-item {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Springy parent cards */
.parent-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

/* ---------- Nav paw logo — bounce on hover ---------- */
.nav-logo .paw-icon {
  transition: transform 0.2s ease;
}
.nav-logo:hover .paw-icon {
  animation: cute-paw-wiggle 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ---------- Floating inquire button — subtle float ---------- */
.floating-inquire {
  animation: cute-float 3.5s ease-in-out infinite;
}
.floating-inquire:hover {
  animation: none;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 24px 56px rgba(212,168,83,0.5);
}

/* ---------- "Available" badge — pulsing glow ---------- */
.status-available {
  animation: cute-pulse 2.2s ease-out infinite;
}

/* ---------- Section divider — wider, gradient fade ---------- */
.section-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary-light) 20%,
    var(--primary) 50%,
    var(--primary-light) 80%,
    transparent 100%);
  border-radius: var(--r-full);
  margin: var(--sp-4) auto 0;
}

/* ---------- Section titles — warm gradient highlight (light sections only) ---------- */
.section-header .section-title {
  background: linear-gradient(135deg, var(--text) 0%, var(--text) 55%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Hero highlight word — golden shimmer gradient ---------- */
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 40%, #FFCBA4 70%, var(--primary) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 500;
  animation: cute-shimmer-text 4s ease-in-out infinite;
}
@keyframes cute-shimmer-text {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ---------- Testimonial — bigger, warmer quote mark ---------- */
.testimonial-card::before {
  font-size: 12rem;
  color: rgba(212,168,83,0.12);
  top: -32px;
}

/* Testimonial cards — warmer shadow on hover */
.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(212,168,83,0.18), 0 4px 12px rgba(44,36,22,0.08);
}

/* ---------- Puppy card image — warm golden shimmer on hover ---------- */
.puppy-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(212,168,83,0.08) 0%,
    rgba(255,203,164,0.12) 50%,
    rgba(212,168,83,0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.puppy-card:hover .puppy-card-image::after {
  opacity: 1;
}

/* ---------- About section — warm blush background blob ---------- */
#about {
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,203,164,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#about::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- Puppies section — soft warm top glow ---------- */
#puppies { position: relative; overflow: hidden; }
#puppies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(212,168,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- FAQ section — warm background ---------- */
#faq {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* ---------- Testimonials — warm section bg ---------- */
#testimonials {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

/* ---------- Hero stats — heartbeat on hover ---------- */
.hero-stat:hover .hero-stat-value {
  animation: cute-heartbeat 0.6s ease;
}

/* ---------- Process step icons — bounce on hover ---------- */
.process-step:hover .process-step-icon {
  animation: cute-float 1s ease-in-out 2;
  transform: translateY(-4px);
}

/* ---------- Gallery items — soft petal overlay on hover ---------- */
.gallery-item-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(212,168,83,0.15) 0%,
    rgba(255,203,164,0.1) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
.gallery-item:hover .gallery-item-inner::after {
  opacity: 1;
}

/* ---------- Softer, warmer border radius on cards ---------- */
.puppy-card,
.testimonial-card,
.faq-item,
.parent-card {
  border-radius: 28px;
}

/* ---------- Warm gold tint on card borders on hover ---------- */
.puppy-card:hover,
.testimonial-card:hover {
  border-color: rgba(212,168,83,0.35);
}

/* ---------- Floating button — add a heart SVG on hover ---------- */
.floating-inquire::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--primary) 0%, #E8C87A 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-inquire:hover::before {
  opacity: 1;
}
.floating-inquire > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   ACTUALLY-VISIBLE CUTE UPGRADES
   ============================================================ */

/* ── Section eyebrow → pill badge ─────────────────────────── */
.section-eyebrow {
  background: linear-gradient(135deg, rgba(212,168,83,0.13) 0%, rgba(255,203,164,0.2) 100%);
  border: 1px solid rgba(212,168,83,0.32);
  padding: 5px 14px;
  border-radius: var(--r-full);
  box-shadow: 0 1px 4px rgba(212,168,83,0.14), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ── Puppy cards — gold top accent strip ──────────────────── */
.puppy-card {
  border-top: 3px solid var(--primary-light);
}

/* ── Testimonial cards — warm blush background ────────────── */
.testimonial-card {
  background: linear-gradient(160deg, #FFFDF7 0%, #FEF7ED 100%);
}

/* ── Process step number — permanent soft ring ────────────── */
.process-step-num {
  box-shadow:
    0 4px 16px rgba(212,168,83,0.4),
    0 0 0 6px rgba(212,168,83,0.12),
    0 0 0 11px rgba(212,168,83,0.06);
  width: 52px;
  height: 52px;
}

/* ── Process step card — warm tinted background ───────────── */
.process-step-card {
  background: linear-gradient(160deg, #FFFDF8 0%, #FEF8EF 100%);
  border-color: rgba(212,168,83,0.2);
}

/* ── Section backgrounds — visible warm alternating tints ─── */
#about {
  background: #FEFAF2;
}
#parents {
  background: linear-gradient(180deg, #FEF9F0 0%, #FFFCF5 100%);
}
#process {
  background: linear-gradient(180deg, #FFFCF5 0%, #FEF9F0 100%);
}
#contact {
  background: linear-gradient(180deg, #FEF9F0 0%, #FFFCF5 100%);
}

/* ── About feature icon boxes — round + warm ─────────────── */
#about .about-text > div > div:first-child {
  box-shadow: 0 2px 8px rgba(212,168,83,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#about .about-text > div > div:hover:first-child {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(212,168,83,0.3);
}

/* ── Tab content panel — warm bg ─────────────────────────── */
.tab-content {
  background: linear-gradient(160deg, #FFFDF8 0%, #FEF8EF 100%);
  border-color: rgba(212,168,83,0.2);
}

/* ── Trait bars — warmer gold fill ───────────────────────── */
.trait-bar-fill {
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: var(--r-full);
}

/* ── Generation tree nodes — warm card bg ─────────────────── */
.gen-node {
  background: linear-gradient(160deg, #FFFDF8 0%, #FEF8EF 100%);
  border-color: rgba(212,168,83,0.2);
}
.gen-node.highlight {
  background: linear-gradient(135deg, rgba(212,168,83,0.12) 0%, rgba(255,203,164,0.18) 100%);
  border-color: rgba(212,168,83,0.4);
}

/* ── Gallery items — rounded corners ─────────────────────── */
.gallery-item-inner {
  border-radius: 20px;
  overflow: hidden;
}

/* ── FAQ items — warm bg, left border accent ─────────────── */
.faq-item {
  border-left: 3px solid rgba(212,168,83,0.25);
  transition: border-left-color 0.25s ease, background 0.25s ease;
}
.faq-item.open {
  border-left-color: var(--primary);
  background: linear-gradient(160deg, #FFFDF8 0%, #FEF8EF 100%);
}

/* ── Hero badge — more visible warm pill ─────────────────── */
.hero-badge {
  background: rgba(212,168,83,0.22);
  border-color: rgba(212,168,83,0.45);
  box-shadow: 0 2px 12px rgba(212,168,83,0.2);
}

/* ── Filter buttons — warmer pill style ──────────────────── */
.filter-btn.active {
  box-shadow: 0 2px 8px rgba(212,168,83,0.3);
}

/* ============================================================
   SOLD / RESERVED CARD STATES
   ============================================================ */

/* Sold card — greyed out image, reduced emphasis */
.puppy-card[data-status="sold"] .puppy-card-image {
  filter: grayscale(45%) brightness(0.92);
}
.puppy-card[data-status="sold"] {
  opacity: 0.8;
  border-top-color: var(--text-3);
}
.puppy-card[data-status="sold"]:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* Reserved card — warm amber tint */
.puppy-card[data-status="reserved"] .puppy-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212,168,83,0.08);
  z-index: 2;
  pointer-events: none;
}
.puppy-card[data-status="reserved"] {
  border-top-color: var(--primary);
}

/* "See Details" button style for unavailable cards */
.btn-meet-unavailable {
  background: transparent !important;
  color: var(--text-2) !important;
  border: 1px solid var(--border) !important;
}
.btn-meet-unavailable:hover {
  background: var(--bg-2) !important;
  color: var(--text) !important;
}

/* ── Modal status notices ───────────────────────────────── */
.modal-status-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  font-size: 0.92rem;
  line-height: 1.5;
}
.modal-status-notice p { margin: 4px 0 0; color: var(--text-2); }
.modal-status-notice strong { display: block; font-weight: 600; color: var(--text); }
.modal-status-notice a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.modal-status-notice svg { flex-shrink: 0; margin-top: 2px; }

.modal-status-sold {
  background: linear-gradient(135deg, rgba(212,168,83,0.1) 0%, rgba(255,203,164,0.15) 100%);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--primary-dark);
}
.modal-status-sold svg { fill: var(--primary); }

.modal-status-reserved {
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, rgba(255,236,200,0.2) 100%);
  border: 1px solid rgba(212,168,83,0.25);
  color: var(--primary-dark);
}
.modal-status-reserved svg { fill: var(--primary); }

/* ============================================================
   CUTE — ROUND 3
   ============================================================ */

/* Available badge heart — defined at .status-available::before above */

/* Puppy card — heart icon on available cards */
.puppy-card[data-status="available"] .puppy-card-image::after {
  border-radius: inherit;
}

/* Inquiry button — heart icon via btn-primary in modal */
.modal-puppy-info .btn.btn-primary svg {
  flex-shrink: 0;
}

/* Process connector — dashed gold line */
.process-step-connector {
  border-top: 2px dashed rgba(212,168,83,0.4);
}

/* Section eyebrow — italic serif style */
.section-eyebrow {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--primary-dark);
}

/* Puppy name — italic serif feel */
.puppy-name {
  font-style: italic;
}

/* Section title — slightly larger, softer weight */
.section-header .section-title {
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* Tab buttons — pill style */
.tab-btn {
  border-radius: var(--r-full) !important;
}

/* Size dots in guide — nicer */
.size-dot {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(212,168,83,0.25);
}

/* Testimonial avatar — warm ring */
.testimonial-avatar {
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px rgba(212,168,83,0.35);
}

/* Star rating — gold glow */
.testimonial-stars {
  text-shadow: 0 0 8px rgba(212,168,83,0.5);
}

/* Contact form inputs — warmer focus ring */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15), 0 1px 4px rgba(212,168,83,0.12);
}

/* Parent card — warm top border accent */
.parent-card {
  border-top: 3px solid rgba(212,168,83,0.4);
}

/* Footer — slightly warmer top border */
footer {
  border-top: 3px solid rgba(212,168,83,0.3);
}

/* ── Footer redesign ──────────────────────────────────────── */
footer {
  background: #1A1209;
  padding: 0;
}
.footer-top {
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid rgba(212,168,83,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--sp-8); }
}
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: var(--sp-4);
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,252,245,0.6);
  transition: all 0.2s ease;
}
.footer-social-link:hover {
  background: rgba(212,168,83,0.2);
  color: var(--primary);
  border-color: var(--primary);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,252,245,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--primary); }
.footer-contact-item svg { flex-shrink: 0; fill: var(--primary); opacity: 0.7; }
.footer-certs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,252,245,0.75);
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--r-full);
  padding: 6px 12px;
}
.footer-cert-badge svg { fill: var(--primary); flex-shrink: 0; }
.footer-certs-empty {
  font-size: 0.8rem;
  color: rgba(255,252,245,0.3);
  font-style: italic;
}
.footer-bottom {
  padding: var(--sp-4) 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   Sub-page Shared Layout
   ============================================================ */
.page-hero-banner {
  padding: calc(var(--nav-height) + var(--banner-height) + var(--sp-12)) 0 var(--sp-12);
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  transition: color var(--transition-fast);
}
.page-breadcrumb:hover { color: var(--primary); }
.page-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--sp-4);
}
.page-hero-title .text-gold { color: var(--primary); font-style: italic; }
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.65;
}
.page-hero-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(212,168,83,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: var(--sp-4);
  border: 1.5px solid rgba(212,168,83,0.25);
}
.page-section {
  padding: var(--sp-16) 0 var(--sp-20);
}
.page-section + .page-section {
  border-top: 1px solid var(--border);
}

/* ============================================================
   Health Guarantee Page
   ============================================================ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin: var(--sp-10) 0;
}
@media (max-width: 600px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.guarantee-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guarantee-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(212,168,83,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: var(--sp-4);
  border: 1.5px solid rgba(212,168,83,0.18);
}
.guarantee-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.guarantee-card-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}
.guarantee-badge-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  background: rgba(212,168,83,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto var(--sp-4);
  border: 2px solid rgba(212,168,83,0.22);
}

/* Vaccine Timeline */
.vaccine-section {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-5);
}
.vaccine-section-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.vaccine-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: var(--sp-2);
}
.vaccine-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 100px;
  position: relative;
}
.vaccine-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}
.vaccine-step-home .vaccine-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  width: 42px; height: 42px;
  box-shadow: 0 0 0 5px rgba(212,168,83,0.18);
}
.vaccine-line {
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.vaccine-step-home .vaccine-line { background: linear-gradient(90deg, var(--primary), var(--border)); }
.vaccine-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--sp-3);
  text-align: center;
  gap: 2px;
}
.vaccine-week {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6B4700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vaccine-name {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.3;
  max-width: 90px;
}
.vaccine-step-home .vaccine-name { font-weight: 700; color: var(--text); }

/* Deworming */
.deworm-section {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
}
.deworm-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.deworm-pills {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.deworm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2E5A3A;
  background: rgba(74,124,89,0.08);
  border: 1.5px solid rgba(74,124,89,0.2);
  border-radius: var(--r-full);
  padding: 5px 14px;
}
.deworm-pill svg { stroke: #2E5A3A; }

/* ============================================================
   Upcoming Litters Page
   ============================================================ */
.litters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-4);
}
@media (max-width: 480px) { .litters-grid { grid-template-columns: 1fr; } }
.litter-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
}
.litter-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.litter-card-accent {
  height: 5px;
  background: var(--litter-grad, var(--primary));
}
.litter-card-body { padding: var(--sp-6); }
.litter-card-header {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}
.litter-paw-badge {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(212,168,83,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,168,83,0.2);
  padding: 8px;
}
.litter-paw-badge svg { fill: var(--primary); }
.litter-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.litter-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.litter-date svg { stroke: var(--primary); }
.litter-countdown-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B4700;
  background: rgba(212,168,83,0.12);
  border: 1.5px solid rgba(212,168,83,0.25);
  border-radius: var(--r-full);
  padding: 3px 12px;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.04em;
}
.litter-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}
.litter-meta { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.litter-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: 0.85rem;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.litter-meta-row:last-child { border-bottom: none; padding-bottom: 0; }
.litter-meta-label { color: var(--text-2); font-weight: 500; }
.litter-meta-value { color: var(--text); font-weight: 600; }
.litter-size-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.litter-size-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2E5A3A;
  background: rgba(74,124,89,0.09);
  border: 1.5px solid rgba(74,124,89,0.2);
  border-radius: var(--r-full);
  padding: 2px 10px;
}
.litter-spots { font-weight: 700; }
.spots-good { color: #2E5A3A; }
.spots-low { color: #6B4700; }
.spots-critical { color: #C0392B; }
.litter-cta { width: 100%; justify-content: center; gap: 8px; }
.litters-waitlist {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: 0.9rem;
  color: var(--text-2);
}
.litters-waitlist-link {
  color: #6B4700;
  font-weight: 600;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.upcoming-empty {
  text-align: center;
  padding: var(--sp-16) var(--sp-8);
  background: var(--bg-2);
  border-radius: var(--r-xl);
  border: 1.5px dashed var(--border);
}
.upcoming-empty-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-4);
  opacity: 0.25;
}
.upcoming-empty-icon svg { fill: var(--text-3); }
.upcoming-empty h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--sp-2);
}
.upcoming-empty p { color: var(--text-2); margin-bottom: var(--sp-6); }

/* ============================================================
   Puppy Prep Hub Page
   ============================================================ */
.prep-page-intro {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: var(--sp-8);
}
.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-4);
}
@media (max-width: 700px) { .prep-grid { grid-template-columns: 1fr; } }
.prep-category {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: box-shadow var(--transition-base);
}
.prep-category:hover { box-shadow: var(--shadow-sm); }
.prep-cat-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1.5px solid var(--border);
}
.prep-cat-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(212,168,83,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  border: 1.5px solid rgba(212,168,83,0.18);
}
.prep-cat-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.prep-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.prep-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}
.prep-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(74,124,89,0.1);
  border: 1.5px solid rgba(74,124,89,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--secondary);
}
.prep-cta {
  margin-top: var(--sp-10);
}
.prep-cta-inner {
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, rgba(74,124,89,0.06) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.prep-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.prep-cta-text p {
  font-size: 0.9rem;
  color: var(--text-2);
  max-width: 420px;
  line-height: 1.6;
}

/* ============================================================
   Updates Feed Page
   ============================================================ */

/* ── Updates filter bar ── */
.updates-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--sp-10);
}
/* Type segmented control */
.uf-type-group {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.uf-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-2);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.uf-type-btn.active {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 1px 5px rgba(0,0,0,0.13);
}
.uf-type-btn:hover:not(.active) { color: var(--text); background: rgba(0,0,0,0.05); }
/* Puppy filter row */
.uf-puppy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.uf-puppy-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  white-space: nowrap;
}
.uf-puppy-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.uf-puppy-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-size: 0.81rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.uf-puppy-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #2C1400;
  font-weight: 600;
}
.uf-puppy-chip:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary-dark, #b07d1a);
  background: rgba(212,168,83,0.09);
}

/* Responsive grid */
.updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 640px)  { .updates-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .updates-grid { grid-template-columns: repeat(3, 1fr); } }

/* Update card */
.update-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Media area — always square */
.update-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-2);
  flex-shrink: 0;
}
.update-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
.update-card:hover .update-media img { transform: scale(1.04); }
.update-media-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.update-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), rgba(212,168,83,0.1));
}
.update-media-placeholder svg { width: 32%; height: 32%; fill: rgba(212,168,83,0.35); }

.update-video-badge {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 600;
  pointer-events: none;
}

/* Card body */
.update-card-body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.update-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}

.update-week-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(212,168,83,0.12);
  border: 1px solid rgba(212,168,83,0.35);
  color: #6B4700;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.update-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 600;
}
.update-type-video {
  background: rgba(74,124,89,0.1);
  border: 1px solid rgba(74,124,89,0.3);
  color: #2E5A3A;
}

.update-date {
  font-size: 0.7rem;
  color: #6B5B47;
  margin-left: auto;
}

.update-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--sp-2);
  line-height: 1.35;
}

.update-caption {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
  flex: 1;
}

.update-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-3);
}
.update-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: #6B4700;
}

.update-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.update-like-btn,
.update-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  font-family: var(--font-body);
}
.update-like-btn:hover,
.update-share-btn:hover {
  color: var(--primary);
  background: rgba(212,168,83,0.1);
}
.update-like-btn.liked { color: #b83232; }
.update-like-btn.liked svg { fill: #b83232; }

/* Empty state */
.updates-empty {
  text-align: center;
  padding: var(--sp-24) var(--sp-4);
  color: var(--text-3);
}
.updates-empty-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-6);
}
.updates-empty-icon svg { width: 100%; height: 100%; fill: var(--border); }
.updates-empty h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: var(--sp-2);
}
.updates-empty p { font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   Update Card — interactive
   ============================================================ */
.update-card { cursor: pointer; }

.update-puppy-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: rgba(74,124,89,0.12);
  color: #2E5A3A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Video play overlay on card thumbnail */
.update-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: background var(--transition-fast);
}
.update-card:hover .update-play-overlay { background: rgba(0,0,0,0.38); }
.update-play-btn {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: transform var(--transition-fast);
}
.update-play-btn svg { color: var(--primary); margin-left: 3px; }
.update-card:hover .update-play-btn { transform: scale(1.1); }

/* ============================================================
   Update Lightbox
   ============================================================ */
.update-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.update-lightbox.visible {
  opacity: 1;
  pointer-events: all;
}
.update-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.update-lightbox-inner {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--r-xl);
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  transform: scale(0.96) translateY(8px);
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1);
}
.update-lightbox.visible .update-lightbox-inner {
  transform: scale(1) translateY(0);
}
@media (max-width: 660px) {
  .update-lightbox-inner {
    grid-template-columns: 1fr;
    max-height: 96vh;
    overflow-y: auto;
  }
}
.update-lightbox-media {
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}
@media (max-width: 660px) {
  .update-lightbox-media {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    max-height: 55vw;
    min-height: 180px;
  }
}
.update-lightbox-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.update-lightbox-media video {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  max-height: 92vh;
}
.update-lightbox-info {
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 92vh;
}
@media (max-width: 660px) {
  .update-lightbox-info { padding: 22px 20px 26px; max-height: none; }
}
/* Puppy pill link */
.ulb-puppy-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 5px 8px;
  background: rgba(212,168,83,0.13);
  color: var(--primary-dark, #b07d1a);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 14px;
  transition: background var(--transition-fast);
}
.ulb-puppy-pill:hover { background: rgba(212,168,83,0.24); }
/* Title */
.update-lightbox-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 14px;
}
/* Meta row */
.update-lightbox-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}
.ulb-date {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-left: auto;
  font-style: normal;
}
/* Caption */
.update-lightbox-caption {
  color: var(--text-2);
  line-height: 1.75;
  font-size: 0.92rem;
  margin: 0 0 16px;
}
/* Tags */
.ulb-tags-row { margin-bottom: 8px; }
/* Spacer */
.ulb-spacer { flex: 1; min-height: 16px; }
/* Close button */
.update-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.update-lightbox-close:hover { background: rgba(0,0,0,0.8); transform: scale(1.1); }
/* Actions bar */
.update-lightbox-actions {
  display: flex;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  align-items: center;
  flex-wrap: wrap;
}
.update-lightbox-actions .update-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.update-lightbox-actions .update-like-btn:hover {
  background: rgba(224,82,82,0.08);
  border-color: rgba(224,82,82,0.3);
  color: #e05252;
}
.update-lightbox-actions .update-like-btn.liked {
  background: rgba(224,82,82,0.1);
  border-color: rgba(224,82,82,0.4);
  color: #e05252;
}
.update-lightbox-actions .update-like-btn.liked svg { fill: #e05252; }
.ulb-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.ulb-share-btn:hover { background: var(--primary-dark, #b07d1a); transform: translateY(-1px); }
