/* ============================================
   PETS EMPORIUM – Luxury Grooming Website
   ============================================ */

:root {
  /* Colors */
  --bg: #f7f5f0;
  --bg-warm: #faf8f5;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --accent-gold: #b8860b;
  --accent-gold-soft: rgba(184, 134, 11, 0.15);
  --accent-emerald: #4a7c59;
  --accent-emerald-soft: rgba(74, 124, 89, 0.12);
  --white: #ffffff;
  --footer-bg: #1a1a1a;
  --footer-text: #e8e6e3;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing & layout */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --container: min(92%, 1200px);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 16px 56px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(184, 134, 11, 0.2);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.4s;
  --duration-slow: 0.6s;

  /* Image consistency */
  --img-container-padding: 0.75rem;
  --img-product-ratio: 4 / 3;
  --img-why-ratio: 1 / 1;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* Global image rules: preserve aspect ratio, no distortion */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease), opacity var(--duration) var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* Container */
.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-lg);
  transition: background var(--duration-slow) var(--ease), backdrop-filter var(--duration-slow) var(--ease), box-shadow var(--duration) var(--ease);
}
.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
}
.logo-img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  color: var(--accent-gold);
  font-weight: 600;
}
.nav-cta:hover { color: var(--accent-emerald); }
.nav-whatsapp { color: var(--accent-emerald); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-xs);
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85%, 320px);
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  padding: 5rem var(--space-lg) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease);
  z-index: 999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-list { display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-2xl) + 4rem) 0 var(--space-2xl);
  background: radial-gradient(circle at top left, #fff4da 0%, var(--bg-warm) 45%, #f8efe0 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.hero-content {
  flex: 1 1 50%;
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}

.hero-heading-accent {
  color: var(--accent-gold);
  position: relative;
}

.hero-heading-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(251, 214, 143, 0.9), rgba(184, 134, 11, 0.4));
  opacity: 0.6;
  z-index: -1;
}

.hero-subtitle {
  margin: 0 0 var(--space-lg);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
}

.hero-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  flex: 1 1 50%;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-wordmark {
  position: absolute;
  inset: auto 0 6%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 6.5rem);
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  width: clamp(280px, 40vw, 380px);
  height: clamp(280px, 40vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff 0%, #ffe9c5 40%, rgba(184, 134, 11, 0.1) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  animation: heroOrbit 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-orbit--inner {
  width: clamp(210px, 30vw, 300px);
  height: clamp(210px, 30vw, 300px);
  background: radial-gradient(circle at 25% 20%, #ffffff 0%, #ffe3b0 60%, rgba(250, 210, 140, 0.7) 100%);
  filter: blur(1px);
  animation: heroOrbitInner 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-dog-image {
  position: relative;
  max-width: clamp(260px, 36vw, 380px);
  height: auto;
  object-fit: contain;
  transform: translateY(8px);
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.35));
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform, filter;
}

.hero-logo {
  position: relative;
  z-index: 1;
}
.hero-logo-circle {
  width: clamp(260px, 34vw, 380px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  padding: 0.75rem;
}
.hero-logo-circle .hero-dog-image {
  width: 96%;
  height: 96%;
  object-fit: contain;
  transform: none;
  filter: none;
}
@media (max-width: 960px) {
  .hero-logo-circle {
    width: clamp(220px, 50vw, 320px);
    padding: 0.75rem;
  }
}
@media (max-width: 600px) {
  .hero-logo-circle {
    width: clamp(200px, 60vw, 260px);
    padding: 0.6rem;
  }
}

/* ===== Treatment form in hero ===== */
.treatment-form {
  margin: var(--space-md) 0 var(--space-sm);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}
.treatment-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}
.treatment-field { display: flex; flex-direction: column; gap: 0.35rem; }
.treatment-field--full { grid-column: 1 / -1; }
.treatment-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.treatment-form input,
.treatment-form select,
.treatment-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
}
.treatment-form input:focus,
.treatment-form select:focus,
.treatment-form textarea:focus {
  outline: none;
  border-color: rgba(184, 134, 11, 0.6);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
@media (max-width: 720px) {
  .treatment-row { grid-template-columns: 1fr; }
}

/* ===== Doctor banner ===== */
.doctor-banner {
  display: none;
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(135deg, var(--accent-gold), #d4a343);
  color: var(--white);
  padding: 0.6rem 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}
.doctor-banner.show { display: block; }
.doctor-banner .doctor-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.doctor-banner .doctor-contact a { color: #fff; text-decoration: underline; }

/* ===== Treatment result card ===== */
.treatment-result {
  padding: var(--space-lg) 0 var(--space-xl);
}
.treatment-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
}
.treatment-card-title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}
.treatment-card-body {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

@keyframes heroOrbit {
  0% {
    transform: translateY(4px) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    transform: translateY(2px) scale(1);
  }
}

@keyframes heroOrbitInner {
  0% {
    transform: translateY(-2px) scale(0.98);
  }
  50% {
    transform: translateY(4px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFloat {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(8px);
  }
}

@media (max-width: 960px) {
  .hero {
    padding: calc(var(--space-xl) + 4rem) 0 var(--space-xl);
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-visual {
    order: -1;
    min-height: 320px;
  }

  .hero-wordmark {
    bottom: 0;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: calc(var(--space-xl) + 3.5rem) 0 var(--space-xl);
  }

  .hero-orbit {
    width: 260px;
    height: 260px;
  }

  .hero-orbit--inner {
    width: 210px;
    height: 210px;
  }

  .hero-dog-image {
    max-width: 260px;
    transform: translateY(4px);
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #9a7209 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.btn-primary:hover::after { left: 100%; }
.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.9);
  color: var(--text);
  transform: translateY(-2px);
}
.btn-large { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-card {
  background: var(--accent-emerald-soft);
  color: var(--accent-emerald);
  margin-top: var(--space-sm);
  width: 100%;
}
.btn-card:hover {
  background: var(--accent-emerald);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.3);
}
.btn-product {
  background: var(--accent-emerald-soft);
  color: var(--accent-emerald);
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
}
.btn-product:hover {
  background: var(--accent-emerald);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--space-2xl) 0;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 var(--space-sm);
}
.section-desc {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Reveal animation (JS toggles .revealed) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SERVICES ========== */
.section-services { background: var(--bg-warm); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease), border-color var(--duration) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184, 134, 11, 0.2);
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--text);
}
.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 var(--space-sm);
  line-height: 1.5;
}
.service-card-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0;
}

/* ========== LARGE BREED – ALL SERVICES (Premium Pricing Strip) ========== */
.full-groom-section {
  padding-top: 0;
  padding-bottom: var(--space-xl);
}

.large-breed-full-groom-wrapper {
  margin-top: var(--space-xl);
}

.full-groom-card {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(229, 183, 96, 0.35);
}

.full-groom-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.full-groom-icon {
  font-size: 1.1rem;
  color: var(--accent-gold);
}

.full-groom-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.full-groom-badge {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  padding: 0.35rem 1rem;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(135deg, var(--accent-gold), #d4a343);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.full-groom-description {
  margin: 0 0 var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.full-groom-price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.large-breed-section {
  margin-top: var(--space-2xl);
}

.large-breed-heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.large-breed-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow-soft);
}

.large-breed-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.large-breed-icon {
  font-size: 1.3rem;
}

.large-breed-text {
  text-align: left;
}
.large-breed-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.1rem;
}
.large-breed-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.large-breed-subtitle {
  max-width: 520px;
  margin: var(--space-md) auto 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Small Breed – mirrors Large Breed styling */
.small-breed-section {
  margin-top: var(--space-2xl);
}
.small-breed-heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.small-breed-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow-soft);
}
.small-breed-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.small-breed-icon {
  font-size: 1.3rem;
}
.small-breed-text {
  text-align: left;
}
.small-breed-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.1rem;
}
.small-breed-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}
.small-breed-subtitle {
  max-width: 520px;
  margin: var(--space-md) auto 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.small-breed-grid {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}
.small-breed-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease), border-color var(--duration) var(--ease);
}
.small-breed-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid var(--accent-gold);
  opacity: 0.9;
  pointer-events: none;
}
.small-breed-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184, 134, 11, 0.3);
}
.small-breed-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.small-breed-card-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.small-breed-card-icon {
  font-size: 1.2rem;
}
.small-breed-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.small-breed-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.small-breed-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}
.small-breed-price-list li:last-child {
  border-bottom: none;
}

/* Small Breed – compact grid, mirrors Large Breed grid section */
.small-breed-grid-section {
  margin-top: var(--space-2xl);
}
.small-breed-grid-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 var(--space-lg);
  color: var(--text);
}
.small-breed-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}
.small-breed-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.small-breed-service-card--highlight {
  border-color: rgba(229, 183, 96, 0.6);
  box-shadow: var(--shadow-card);
}
.small-breed-service-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}
.small-breed-service-tag {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.small-breed-service-price {
  margin: var(--space-xs) 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.section-hosteling {
  background: var(--bg-warm);
}
.section-header--hosteling {
  max-width: 640px;
}
.hosteling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}
.hostel-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.hostel-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.hostel-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hostel-icon {
  font-size: 1.3rem;
}
.hostel-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

.hostel-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm) var(--space-lg);
  font-size: 0.92rem;
}
.hostel-feature {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hostel-feature-icon {
  font-size: 1rem;
  color: var(--accent-gold);
}
.hostel-feature-text {
  color: var(--text-muted);
}

.hostel-pricing {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.hostel-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.hostel-price-label {
  color: var(--text);
}
.hostel-price-value {
  font-weight: 600;
  color: var(--accent-gold);
}

.hostel-cta {
  margin-top: auto;
  width: 100%;
  margin-top: var(--space-lg);
}

@media (max-width: 680px) {
  .hostel-card {
    padding: var(--space-lg);
  }
  .hostel-features {
    grid-template-columns: 1fr;
  }
}
.large-breed-grid {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

.large-breed-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease), border-color var(--duration) var(--ease);
}
.large-breed-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid var(--accent-gold);
  opacity: 0.9;
  pointer-events: none;
}
.large-breed-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184, 134, 11, 0.3);
}

.large-breed-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.large-breed-card-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.large-breed-card-icon {
  font-size: 1.2rem;
}

.large-breed-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.large-breed-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.large-breed-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}
.large-breed-price-list li:last-child {
  border-bottom: none;
}

.service-name {
  color: var(--text);
}
.service-price {
  font-weight: 600;
  color: var(--accent-gold);
}

.large-breed-package {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}
.large-breed-package-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.large-breed-package-meta {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.large-breed-package-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-gold);
}

@media (max-width: 960px) {
  .large-breed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }
  .small-breed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }
}
@media (max-width: 680px) {
  .large-breed-label-wrap {
    width: 100%;
    justify-content: center;
  }
  .large-breed-grid {
    grid-template-columns: 1fr;
  }
  .large-breed-card {
    padding: var(--space-lg);
  }
  .small-breed-label-wrap {
    width: 100%;
    justify-content: center;
  }
  .small-breed-grid {
    grid-template-columns: 1fr;
  }
  .small-breed-card {
    padding: var(--space-lg);
  }
}

/* ========== WHY CHOOSE US ========== */
.section-why {
  background: var(--bg-warm);
  padding: var(--space-2xl) 0;
}

.container--why {
  max-width: 1100px;
}

.section-why .section-header {
  max-width: 560px;
  margin-bottom: var(--space-2xl);
}

.section-why .section-desc {
  margin-top: var(--space-sm);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: stretch;
}

.why-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease), border-color var(--duration) var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184, 134, 11, 0.2);
}

/* Why card: square container, full image visible, no crop */
.why-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: var(--img-why-ratio);
  overflow: hidden;
  background: var(--bg-warm);
  padding: var(--img-container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform var(--duration-slow) var(--ease);
}

.why-card:hover .why-card-image img {
  transform: scale(1.02);
}

.why-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--accent-gold-soft) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.why-card-content {
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--space-xs);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}

.why-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Why – Tablet */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* Why – Mobile: stack, proportional images */
@media (max-width: 600px) {
  .section-why {
    padding: var(--space-xl) 0;
  }

  .section-why .section-header {
    margin-bottom: var(--space-xl);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-card-content {
    padding: var(--space-md) var(--space-lg);
  }

  .why-card-title {
    font-size: 1.2rem;
  }

  .why-card-desc {
    font-size: 0.9rem;
  }
}

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.product-card-image {
  aspect-ratio: var(--img-product-ratio);
  overflow: hidden;
  background: var(--bg-warm);
  padding: var(--img-container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--duration-slow) var(--ease);
}
.product-card:hover .product-card-image img {
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .product-card-image {
    min-height: 180px;
    padding: var(--space-sm);
  }
}

.product-card-content {
  padding: var(--space-lg);
}
.product-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--text);
}
.product-price {
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0 0 var(--space-sm);
}
.product-card-content .btn { margin-top: var(--space-xs); }

/* ========== TESTIMONIALS ========== */
.section-testimonials { background: var(--bg-warm); }

.testimonials-slider-wrapper {
  position: relative;
  margin-top: var(--space-xl);
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.testimonial-card:last-child {
  margin-right: 0;
}

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

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 var(--space-md);
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonials Navigation */
.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-soft);
  padding: 0;
}

.testimonials-nav:hover {
  background: var(--accent-gold);
  color: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(-50%) scale(1.1);
}

.testimonials-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonials-nav--prev {
  left: -22px;
}

.testimonials-nav--next {
  right: -22px;
}

.testimonials-nav svg {
  width: 20px;
  height: 20px;
}

.testimonials-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Testimonials Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration) var(--ease);
}

.testimonials-dot:hover {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.testimonials-dot.active {
  background: var(--accent-gold);
  width: 32px;
  border-radius: 5px;
}

/* Responsive Testimonials */
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .testimonials-nav--prev {
    left: -32px;
  }
  
  .testimonials-nav--next {
    right: -32px;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .testimonials-nav--prev {
    left: -44px;
  }
  
  .testimonials-nav--next {
    right: -44px;
  }
}

@media (max-width: 767px) {
  .testimonials-nav {
    width: 36px;
    height: 36px;
  }
  
  .testimonials-nav svg {
    width: 16px;
    height: 16px;
  }
  
  .testimonials-nav--prev {
    left: 8px;
  }
  
  .testimonials-nav--next {
    right: 8px;
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
}

/* ========== BOOK CTA ========== */
.section-book-cta {
  background: linear-gradient(135deg, var(--accent-emerald-soft) 0%, var(--accent-gold-soft) 100%);
  text-align: center;
}
.book-cta-inner .section-title { margin-bottom: var(--space-sm); }
.book-cta-inner .section-desc { margin-bottom: var(--space-lg); }

/* ========== FOOTER ========== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  margin-bottom: var(--space-xs);
  flex-shrink: 0;
}
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; }
.footer-tagline { font-size: 0.9rem; opacity: 0.8; margin: 0; }
.footer-block h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--space-sm);
  opacity: 0.9;
}
.footer-block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-block a {
  color: var(--footer-text);
  opacity: 0.9;
}
.footer-block a:hover { opacity: 1; color: var(--accent-gold); }

.footer-social {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-social a {
  font-size: 0.9rem;
  color: var(--footer-text);
  opacity: 0.8;
}
.footer-social a:hover { opacity: 1; }
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease), visibility var(--duration-slow) var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card-hover);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--duration-slow) var(--ease);
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-muted);
  padding: var(--space-xs);
  transition: color var(--duration) var(--ease);
}
.modal-close:hover { color: var(--text); }
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 var(--space-lg);
  padding-right: 2rem;
}

.booking-form .form-group {
  margin-bottom: var(--space-md);
}
.booking-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--space-xs);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-soft);
}
.booking-form .btn { margin-top: var(--space-sm); }

/* Booking – cart summary */
.booking-cart-summary {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  border: 1px dashed rgba(0, 0, 0, 0.12);
}
.booking-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: 0.35rem;
}
.booking-cart-count {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.booking-cart-final {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--accent-gold);
}
.booking-cart-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.booking-cart-line.booking-cart-home {
  color: var(--accent-emerald);
}

/* Booking – location options */
.booking-location-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.booking-location-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-warm);
  font-size: 0.85rem;
}
.booking-location-option input[type="radio"] {
  accent-color: var(--accent-gold);
}
.booking-map-btn {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-inline: 1.1rem;
  background: #0b72ff;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 18px rgba(11, 114, 255, 0.35);
  font-size: 0.86rem;
}
.booking-map-btn:hover {
  background: #0859c6;
  box-shadow: 0 8px 22px rgba(11, 114, 255, 0.45);
}
.booking-map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.booking-map-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
.booking-map-text {
  white-space: nowrap;
}

/* Shop location info box (for Shop service) */
.shop-location-group {
  margin-top: var(--space-sm);
}
.shop-location-box {
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  padding: var(--space-md);
  border: 1px dashed rgba(0, 0, 0, 0.12);
}
.shop-location-text {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.shop-location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-emerald);
}
.shop-location-link::after {
  content: '↗';
  font-size: 0.8rem;
}
.shop-location-link:hover {
  color: var(--accent-gold);
}

/* Booking modal – service selection summary */
.service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.service-price-info {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  font-size: 0.9rem;
}
.service-price-label {
  font-weight: 500;
  color: var(--text-muted);
}
.service-price-value {
  font-weight: 600;
  color: var(--accent-gold);
}
.btn-small {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.booking-selected-services {
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  padding: var(--space-md);
  border: 1px dashed rgba(0, 0, 0, 0.1);
}
.booking-selected-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.booking-selected-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.booking-selected-total {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
}
.booking-selected-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Booking modal – responsive tweaks for small screens */
@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-end;
    padding: var(--space-md);
  }

  .modal {
    max-width: 100%;
    width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    padding: var(--space-lg) var(--space-md);
  }

  .modal-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
  }

  .booking-form .form-group {
    margin-bottom: var(--space-sm);
  }

  .booking-cart-summary {
    margin-bottom: var(--space-md);
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    font-size: 0.95rem;
  }

  .modal .btn {
    width: 100%;
  }
}

/* Booking – breed size toggle */
.booking-breed-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: var(--bg-warm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-breed-btn {
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.booking-breed-btn.active {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.25);
}

.booking-breed-hint {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Booking – services grid */
.booking-services-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-services-section {
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  padding: var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-services-section-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.booking-services-section-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.booking-service-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.booking-service-option:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.booking-service-checkbox {
  margin-top: 0.2rem;
}

.booking-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.booking-service-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.booking-service-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.booking-service-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.booking-service-description {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.booking-service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}
.booking-service-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.booking-service-name {
  font-weight: 500;
  color: var(--text);
}
.booking-service-price {
  font-weight: 600;
  color: var(--accent-gold);
}
.booking-service-remove {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-muted);
}
.booking-service-remove:hover {
  background: rgba(0, 0, 0, 0.07);
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent-emerald);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-card-hover);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: transform var(--duration-slow) var(--ease), opacity var(--duration-slow) var(--ease), visibility var(--duration-slow) var(--ease);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast-icon { font-size: 1.25rem; font-weight: bold; }
.toast p { margin: 0; font-weight: 500; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float-text { position: absolute; left: -9999px; }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.6); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

/* ========== MOBILE HEADER – logo & brand prominent ========== */
@media (max-width: 768px) {
  .header {
    padding: var(--space-md) var(--space-lg);
    min-height: 80px;
  }
  .header-inner {
    gap: var(--space-md);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    min-height: 64px;
  }
  .logo-img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
  }
  .logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
    line-height: 1.2;
  }
}

@media (max-width: 600px) {
  .header {
    padding: var(--space-sm) var(--space-md);
    min-height: 76px;
  }
  .logo {
    gap: var(--space-sm);
    min-height: 60px;
  }
  .logo-img {
    width: 66px;
    height: 66px;
    min-width: 66px;
    min-height: 66px;
  }
  .logo .logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .hero-buttons { flex-direction: column; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }
  .btn { width: 100%; max-width: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 400px) {
  .header {
    padding: var(--space-sm) var(--space-md);
    min-height: 72px;
  }
  .logo {
    gap: var(--space-xs);
    min-height: 56px;
  }
  .logo-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }
  .logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }
}
