/* ═══════════════════════════════════
   BRAND TOKENS
═══════════════════════════════════ */
:root {
  --green:      #6BBF1F;
  --green-dark: #4A8A0D;
  --green-deep: #2D6B0F;
  --green-pale: #EBF7D8;
  --green-mid:  #8DD63C;
  --gold:       #F5C518;
  --gold-dark:  #D4A812;
  --gold-pale:  #FFF8DC;
  --white:      #FFFFFF;
  --cream:      #FFFDF7;
  --text:       #1A3D07;
  --text-soft:  #4A7030;
  --radius-sm:  .75rem;
  --radius-md:  1.25rem;
  --radius-lg:  1.75rem;
  --radius-xl:  2.25rem;
  --shadow-sm:  0 2px 12px rgba(45,107,15,.09);
  --shadow-md:  0 6px 28px rgba(45,107,15,.14);
  --shadow-lg:  0 14px 44px rgba(45,107,15,.18);
}

/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════ */
.font-display { font-family: 'Fredoka One', cursive; font-weight: 400; }
h1,h2,h3,h4 { font-family: 'Fredoka One', cursive; font-weight: 400; line-height: 1.15; color: var(--green-deep); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
p  { font-size: 1rem; font-weight: 600; color: var(--text-soft); }

/* ═══════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.flex-wrap  { flex-wrap: wrap; }
.gap-2      { gap: .5rem; }
.gap-3      { gap: .75rem; }
.gap-4      { gap: 1rem; }
.gap-5      { gap: 1.25rem; }
.text-center{ text-align: center; }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem;
  border-radius: 99px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; padding: .8rem 1.8rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-green {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 18px rgba(107,191,31,.38);
}
.btn-green:hover { background: var(--green-dark); box-shadow: 0 8px 28px rgba(107,191,31,.45); }
.btn-gold {
  background: var(--gold); color: var(--green-deep);
  box-shadow: 0 4px 18px rgba(245,197,24,.38);
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline {
  background: transparent; color: var(--green-dark);
  border: 2.5px solid var(--green); padding: .7rem 1.6rem;
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white {
  background: #fff; color: var(--green-deep);
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.btn-white:hover { background: var(--green-pale); }
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }

/* ═══════════════════════════════════
   COMPONENTS
═══════════════════════════════════ */
/* Pill / badge */
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-deep); background: var(--green-pale);
  border: 1.5px solid var(--green-mid); border-radius: 99px; padding: .35rem 1rem;
}

/* Card */
.card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Checkmark list item */
.check-item {
  display: flex; align-items: center; gap: .65rem;
  font-size: .9rem; font-weight: 700; color: var(--text);
}
.check-item svg { flex-shrink: 0; color: var(--green); }

/* Section heading block */
.section-head { margin-bottom: 3.5rem; }
.section-head .pill { margin-bottom: 1rem; }
.section-head h2 { margin: .5rem 0 1rem; }
.section-head p { max-width: 560px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* Stat box */
.stat-box {
  background: var(--green-pale); border-radius: var(--radius-md);
  border: 1.5px solid rgba(107,191,31,.2); padding: 1.25rem 1rem;
  text-align: center; transition: background .25s, color .25s;
  cursor: default;
}
.stat-box:hover { background: var(--green); }
.stat-box:hover .stat-num,
.stat-box:hover .stat-label { color: #fff; }
.stat-box:nth-child(even) { background: var(--gold-pale); border-color: rgba(245,197,24,.2); }
.stat-box:nth-child(even):hover { background: var(--gold); }
.stat-box:nth-child(even):hover .stat-num,
.stat-box:nth-child(even):hover .stat-label { color: var(--green-deep); }
.stat-emoji { font-size: 1.6rem; margin-bottom: .35rem; }
.stat-num   { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--green-deep); line-height: 1; }
.stat-label { font-size: .82rem; font-weight: 700; color: var(--text-soft); margin-top: .2rem; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes bobUp    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes wiggle   { 0%,100%{transform:rotate(-5deg)} 50%{transform:rotate(5deg)} }
@keyframes pawFloat { 0%{transform:translateY(0) rotate(0deg);opacity:0} 10%{opacity:.15} 90%{opacity:.1} 100%{transform:translateY(-100vh) rotate(25deg);opacity:0} }

.bob    { animation: bobUp 3s ease-in-out infinite; }
.wiggle { animation: wiggle 2s ease-in-out infinite; }
.paw-float { position: absolute; animation: pawFloat linear infinite; pointer-events: none; }

/* ═══════════════════════════════════
   TOP BAR
═══════════════════════════════════ */
.topbar {
  background: var(--green-deep); color: var(--green-pale);
  font-size: .8rem; font-weight: 700; padding: .5rem 1.25rem;
}
.topbar a { color: var(--green-pale); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.topbar-left  { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: .75rem; }
.topbar-icon  { display: flex; align-items: center; gap: .4rem; }
.social-link  { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 6px; transition: background .2s; }
.social-link:hover { background: rgba(255,255,255,.15); }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--green-pale);
  box-shadow: 0 2px 16px rgba(45,107,15,.06);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 68px; width: auto;
  display: block;
  /* Ensure logo looks crisp at all resolutions */
  image-rendering: auto;
}
@media (max-width: 400px) {
  .nav-logo-img { height: 68px; }
}
.nav-links { display: flex; align-items: center; gap: .1rem; flex-shrink: 1; }
.nav-links a {
  font-weight: 800; font-size: .82rem; color: var(--green-deep);
  padding: .4rem .7rem; border-radius: 99px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--green-pale); color: var(--green-dark); }
.nav-cta  { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 800; color: var(--green-deep); transition: color .2s; }
.nav-phone:hover { color: var(--green); }
.nav-ham {
  display: none; background: none; border: none; cursor: pointer;
  padding: .4rem; border-radius: 10px; color: var(--green-deep);
  transition: background .2s;
}
.nav-ham:hover { background: var(--green-pale); }
.mobile-menu {
  display: none; background: #fff; border-top: 1.5px solid var(--green-pale);
  padding: 1rem 1.25rem; flex-direction: column; gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem 1rem; font-weight: 800; font-size: .9rem; color: var(--green-deep);
  border-radius: var(--radius-sm); transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--green-pale); color: var(--green-dark); }
.mobile-menu-ctas { padding-top: .75rem; margin-top: .5rem; border-top: 1.5px solid var(--green-pale); display: flex; flex-direction: column; gap: .6rem; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative; background: #fff;
  min-height: 90vh; display: flex; align-items: center;
  overflow: hidden; padding: 5rem 0 4rem;
}
.hero-bg-blob-1 {
  position: absolute; top: -5%; right: -8%;
  width: min(45vw, 480px); aspect-ratio: 1;
  background: var(--green-pale); opacity: .65;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
}
.hero-bg-blob-2 {
  position: absolute; bottom: 5%; left: -5%;
  width: min(35vw, 400px); aspect-ratio: 1;
  background: var(--gold-pale); opacity: .5;
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  pointer-events: none;
}
.hero-dots {
  position: absolute; pointer-events: none; opacity: .22;
}
.hero-inner { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; width: 100%; }
.hero-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-pale); border: 1.5px solid var(--green-mid);
  border-radius: 99px; padding: .4rem 1.1rem; margin-bottom: 1.5rem;
  font-size: .82rem; font-weight: 800; color: var(--green-deep);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-h1 { margin-bottom: 1.25rem; }
.hero-h1 .accent-green { color: var(--green); }
.hero-h1 .accent-gold  { color: var(--gold-dark); font-size: .85em; }
.hero-sub { margin-bottom: 2rem; font-size: 1.05rem; }
.hero-ctas { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-chips { display: flex; gap: .6rem; flex-wrap: wrap; }
.hero-chip {
  font-size: .78rem; font-weight: 800; padding: .4rem .9rem;
  border-radius: 99px; border: 1.5px solid rgba(107,191,31,.25);
  background: var(--green-pale); color: var(--green-deep);
  display: inline-flex; align-items: center; gap: .3rem;
}
.hero-chip.gold { background: var(--gold-pale); border-color: rgba(245,197,24,.3); color: var(--gold-dark); }

/* Hero visual */
.hero-visual { display: flex; justify-content: flex-end; align-items: center; position: relative; }
.hero-photo-wrap {
  position: relative; width: min(380px, 100%); aspect-ratio: 1;
}
.hero-glow {
  position: absolute; inset: -14px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,191,31,.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-photo-inner {
  width: 100%; height: 100%; border-radius: 2.5rem;
  overflow: hidden; border: 4px solid rgba(107,191,31,.25);
  box-shadow: var(--shadow-lg);
}
.hero-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; background: #fff; border-radius: 1rem;
  padding: .65rem .9rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .6rem;
  border: 2px solid var(--green-pale);
}
.hero-float-card .fc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.hero-float-card .fc-title  { font-size: .78rem; font-weight: 900; color: var(--green-deep); line-height: 1.2; }
.hero-float-card .fc-sub    { font-size: .68rem; font-weight: 600; color: var(--text-soft); opacity: .7; }
.hero-float-card.card-pets  { bottom: -16px; left: -20px; }
.hero-float-card.card-vet   { top: -16px; right: -20px; border-color: var(--gold-pale); }
.hero-float-card.card-pets .fc-icon { background: var(--green-pale); }
.hero-float-card.card-vet   .fc-icon { background: var(--gold-pale); }
/* paw stamp */
.hero-paw { position: absolute; right: -8px; top: 40%; transform: translateY(-50%); }

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3.5rem; }

/* Wave */
.wave-sep { line-height: 0; }
.wave-sep svg { display: block; width: 100%; }

/* ═══════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════ */
.services-section { background: var(--green-pale); position: relative; }
.services-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(107,191,31,.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.svc-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-head { padding: 1.75rem; position: relative; overflow: hidden; }
.svc-head::after { content: ''; position: absolute; right: -18px; bottom: -18px; width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,.12); pointer-events: none; }
.svc-head h3 { color: #fff; margin: .6rem 0 .5rem; }
.svc-head p  { color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 600; }
.svc-head .badge {
  position: absolute; top: .85rem; right: .85rem;
  background: rgba(255,255,255,.2); color: #fff;
  font-size: .72rem; font-weight: 800; padding: .25rem .7rem; border-radius: 99px;
}
.svc-illo { display: flex; justify-content: center; margin-bottom: .5rem; }
.svc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.svc-features { display: flex; flex-direction: column; gap: .65rem; }
.svc-cta { margin-top: auto; }

/* Map / location pill */
.location-pill {
  display: inline-flex; align-items: center; gap: .75rem;
  background: #fff; border: 2px solid rgba(107,191,31,.2);
  border-radius: 1.25rem; padding: .9rem 1.5rem;
  transition: box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.location-pill:hover { box-shadow: var(--shadow-sm); border-color: var(--green); }
.location-pill .lp-title { font-size: .72rem; font-weight: 700; color: var(--text-soft); opacity: .6; }
.location-pill .lp-addr  { font-size: .9rem; font-weight: 800; color: var(--green-deep); transition: color .2s; }
.location-pill:hover .lp-addr { color: var(--green); }

/* ═══════════════════════════════════
   VETERINARIA SECTION
═══════════════════════════════════ */
.vet-section { background: #fff; }
.vet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.vet-card {
  border-radius: var(--radius-md); padding: 1.4rem 1.2rem;
  border: 1.5px solid transparent; transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: .6rem;
}
.vet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.vet-card.green { background: var(--green-pale); border-color: rgba(107,191,31,.15); }
.vet-card.gold  { background: var(--gold-pale);  border-color: rgba(245,197,24,.15); }
.vet-card-icon { font-size: 2rem; }
.vet-card h3   { font-size: 1.1rem; }
.vet-card p    { font-size: .85rem; font-weight: 600; color: var(--text-soft); }

/* ═══════════════════════════════════
   PELUQUERÍA SECTION
═══════════════════════════════════ */
.groom-section { background: var(--green-pale); }
.included-box {
  background: #fff; border-radius: var(--radius-md);
  padding: 1.25rem; border: 1.5px solid rgba(107,191,31,.15);
  margin-bottom: 1.5rem;
}
.included-box .box-label {
  font-size: .7rem; font-weight: 900; color: var(--green);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .85rem;
}
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.included-grid span { font-size: .85rem; font-weight: 700; color: var(--text-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.tag {
  font-size: .78rem; font-weight: 800; padding: .35rem .85rem;
  border-radius: 99px; color: #fff;
}
.tag-dark  { background: var(--green-deep); }
.tag-green { background: var(--green); }
.tag-gold  { background: var(--gold); color: var(--green-deep); }
.pets-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.pet-tile {
  aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.pet-tile:hover { transform: scale(1.05) rotate(2deg); box-shadow: var(--shadow-md); }
.pet-tile img { width: 100%; height: 100%; object-fit: cover; }
.pets-caption {
  text-align: center; font-size: .85rem; font-weight: 800;
  color: var(--green); margin-top: .85rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}

/* ═══════════════════════════════════
   TIENDA SECTION
═══════════════════════════════════ */
.store-section { background: #fff; }
.cat-pills { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin-bottom: 2.5rem; }
.cat-pill {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 800; color: var(--green-deep);
  padding: .5rem 1.1rem; border-radius: 99px;
  border: 1.5px solid rgba(107,191,31,.25); background: var(--green-pale);
}
/* ═══════════════════════════════════
   BRANDS CAROUSEL — infinite scroll
═══════════════════════════════════ */
.brands-carousel {
  overflow: hidden;
  width: 100%;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  padding: .75rem 0;
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: brandsScroll 22s linear infinite;
}
/* Pause on hover — desktop only */
@media (hover: hover) {
  .brands-carousel:hover .brands-track { animation-play-state: paused; }
}
@keyframes brandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brands-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  /* No grayscale — colours look great on white */
  opacity: .75;
  transition: opacity .3s, transform .3s;
  flex-shrink: 0;
}
.brands-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
  .brands-carousel {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }
}
.store-online-banner {
  margin-top: 3rem; padding: 2.5rem;
  border-radius: var(--radius-xl); color: #fff;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.store-online-banner h3 { color: #fff; font-size: 1.5rem; margin-bottom: .3rem; }
.store-online-banner p  { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testi-section { background: var(--green-deep); position: relative; overflow: hidden; }
.testi-section::before,
.testi-section::after {
  content: ''; position: absolute; pointer-events: none;
  background: var(--green-mid); border-radius: 50%; opacity: .08;
}
.testi-section::before { width: 300px; height: 300px; top: -60px; right: -40px; }
.testi-section::after  { width: 200px; height: 200px; bottom: -40px; left: -30px; }
.testi-section .section-head .pill {
  background: rgba(255,255,255,.12); color: var(--green-mid);
  border-color: rgba(141,214,60,.3);
}
.testi-section .section-head h2 { color: #fff; }
.testi-section .section-head h2 span { color: var(--gold); }
/* Testimonials on DARK background (home section) */
.testi-section .testi-card {
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.5rem;
  backdrop-filter: blur(4px); transition: background .25s, transform .25s;
}
.testi-section .testi-card:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }
.testi-section .testi-stars { color: #F5C518; }
.testi-section .testi-text  { color: rgba(255,255,255,.85); }
.testi-section .testi-name  { color: #fff; }
.testi-section .testi-role  { color: rgba(255,255,255,.45); }

/* Testimonials on LIGHT background (interior pages) */
.testi-card {
  background: #fff; border: 1.5px solid rgba(107,191,31,.12);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { color: #F5C518; font-size: 1rem; letter-spacing: .1em; margin-bottom: .85rem; }
.testi-text  { font-size: .88rem; font-weight: 600; color: var(--text-soft); font-style: italic; margin-bottom: 1.1rem; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(107,191,31,.3); }
.testi-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-pale); display: flex; align-items: center;
  justify-content: center; font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--green-deep); border: 2px solid rgba(107,191,31,.2);
}
.testi-name { font-size: .88rem; font-weight: 800; color: var(--green-deep); line-height: 1.2; }
.testi-role { font-size: .75rem; color: var(--text-soft); font-weight: 600; opacity: .7; }
.testi-more { display: inline; color: var(--green-mid); font-size: .88rem; font-weight: 800; border-bottom: 2px solid rgba(141,214,60,.4); transition: color .2s, border-color .2s; }
.testi-more:hover { color: #fff; border-color: #fff; }

/* ═══════════════════════════════════
   BLOG SECTION
═══════════════════════════════════ */
.blog-section { background: var(--cream); }
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.blog-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta  { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; }
.blog-cat   { font-size: .72rem; font-weight: 800; padding: .25rem .65rem; border-radius: 99px; background: var(--green-pale); color: var(--green-deep); }
.blog-cat.gold { background: var(--gold-pale); }
.blog-date  { font-size: .72rem; font-weight: 600; color: var(--text-soft); opacity: .6; }
.blog-title { font-size: 1rem; margin-bottom: .6rem; color: var(--green-deep); transition: color .2s; }
.blog-card:hover .blog-title { color: var(--green); }
.blog-more  { font-size: .85rem; font-weight: 800; color: var(--green); margin-top: auto; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.blog-card:hover .blog-more { gap: .6rem; }

/* ═══════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════ */
.contact-section { background: var(--green-pale); }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border-radius: var(--radius-md); padding: 1.1rem 1.25rem;
  border: 1.5px solid rgba(107,191,31,.12); transition: box-shadow .25s;
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); }
.contact-info-card.gold  { border-color: rgba(245,197,24,.18); }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.ci-icon.green { background: var(--green-pale); }
.ci-icon.gold  { background: var(--gold-pale); }
.ci-title { font-size: .8rem; font-weight: 800; color: var(--green-deep); margin-bottom: .15rem; }
.ci-value { font-size: .88rem; font-weight: 600; color: var(--text-soft); line-height: 1.5; }
.ci-link  { font-size: .78rem; font-weight: 800; color: var(--green); margin-top: .2rem; display: inline-block; }
.ci-link.gold { color: var(--gold-dark); }
.wa-cta {
  display: flex; align-items: center; gap: 1rem;
  background: #25D366; border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; color: #fff;
  transition: opacity .2s, transform .2s;
}
.wa-cta:hover { opacity: .92; transform: translateY(-2px); }
.wa-icon { width: 48px; height: 48px; background: rgba(255,255,255,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-title { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: #fff; line-height: 1.2; }
.wa-sub   { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); }
.wa-arrow { margin-left: auto; opacity: .7; flex-shrink: 0; }
.form-box { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1.5px solid rgba(107,191,31,.1); }
.form-box h3 { font-size: 1.3rem; margin-bottom: 1.25rem; }
.field-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.field-label { font-size: .72rem; font-weight: 900; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; }
.field {
  background: #f6fbef; border: 1.5px solid #c8e89e; border-radius: .85rem;
  padding: .75rem 1rem; font-family: 'Nunito', sans-serif; font-size: .9rem;
  font-weight: 600; color: var(--green-deep); outline: none; width: 100%;
  transition: border .2s, box-shadow .2s;
}
.field:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(107,191,31,.12); }
.field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.privacy-check { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: 1rem; }
.privacy-check input { margin-top: 2px; accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.privacy-check label { font-size: .8rem; font-weight: 600; color: var(--text-soft); line-height: 1.5; }
.privacy-check a { color: var(--green); text-decoration: underline; }
.form-success {
  display: none; text-align: center; font-weight: 800; color: var(--green-deep);
  background: var(--green-pale); border-radius: var(--radius-md); padding: .75rem 1rem; margin-top: .75rem;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(107,191,31,.15);
  position: relative;
}
.map-embed iframe { display: block; border-radius: var(--radius-lg); }
.map-open-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  position: absolute; top: .75rem; left: .75rem; z-index: 10;
  background: #fff; border-radius: 99px;
  padding: .4rem .9rem;
  font-size: .78rem; font-weight: 800; color: var(--green-deep);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  text-decoration: none; transition: box-shadow .2s;
}
.map-open-btn:hover { box-shadow: 0 4px 14px rgba(0,0,0,.18); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer { background: var(--green-deep); color: rgba(255,255,255,.85); }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 3.5rem 1.25rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }

/* Footer brand logo */
.footer-brand .nav-logo {
  display: flex; align-items: center;
  text-decoration: none; border: none; background: none; padding: 0;
  margin-bottom: .75rem;
}
.footer-brand p {
  font-size: .9rem; line-height: 1.75; max-width: 280px;
  margin: 0 0 1rem; color: rgba(255,255,255,.75);
}

.footer-socials { display: flex; gap: .5rem; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social-btn:hover { background: var(--green); }
.footer-social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,.9); }

.footer-col h4 {
  font-family: 'Nunito', sans-serif; font-size: .7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.45); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: .9rem; font-weight: 700;
  color: rgba(255,255,255,.8); margin-bottom: .55rem; transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.8); margin-bottom: .65rem; line-height: 1.55;
}
.footer-contact-item a { color: rgba(255,255,255,.8); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.75);
}
.footer-bar a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer-bar a:hover { color: #fff; }
.footer-bar-links { display: flex; gap: 1.25rem; }

/* WhatsApp FAB */
.wafab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.5);
  transition: transform .25s, box-shadow .25s;
}
.wafab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wafab svg { width: 28px; height: 28px; fill: #fff; }
/* En móvil la barra bottom reemplaza al FAB */
@media (max-width: 900px) { .wafab { display: none; } }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual  { justify-content: center; order: -1; }
  .hero-photo-wrap { width: min(320px, 90vw); }
  .hero-float-card.card-pets { bottom: -12px; left: -10px; }
  .hero-float-card.card-vet  { top: -12px; right: -10px; }
  .stats-strip  { grid-template-columns: repeat(2, 1fr); }
  .grid-2       { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3       { grid-template-columns: repeat(2,1fr); }
  .vet-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .nav-links    { display: none; }
  .nav-cta      { display: none; }
  .nav-ham      { display: flex; }
}

/* ═══════════════════════════════════════════════
   HERO MOBILE — texto primero, imagen secundaria
   La imagen ocupa el primer scroll en móvil sin
   aportar conversión. La prop de valor va arriba.
═══════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* El hero como columna simple */
  .hero { padding: 2rem 0 4rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Ocultar el bloque imagen en móvil */
  .hero-visual { display: none; }

  /* El contenido del texto ocupa todo el ancho */
  .hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Badge arriba — pequeño y discreto */
  .hero-badge {
    font-size: .78rem;
    padding: .35rem .85rem;
    margin-bottom: .85rem;
    align-self: flex-start;
  }

  /* Foto de tienda mini — inline junto al texto en móvil */
  .hero-mobile-img {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: var(--green-pale);
    border-radius: 1.25rem;
    padding: .75rem 1rem;
    margin-bottom: 1.1rem;
    border: 1.5px solid rgba(107,191,31,.2);
  }
  .hero-mobile-img img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(45,107,15,.2);
    flex-shrink: 0;
  }
  .hero-mobile-img-info {
    display: flex; flex-direction: column; gap: .15rem;
  }
  .hero-mobile-img-title {
    font-size: .78rem; font-weight: 900;
    color: var(--green-deep);
  }
  .hero-mobile-img-sub {
    font-size: .7rem; font-weight: 600;
    color: var(--text-soft); opacity: .7;
  }

  /* H1 grande, sin desperdiciar espacio */
  .hero-h1 {
    font-size: 2.1rem;
    line-height: 1.12;
    margin-bottom: .75rem;
    margin-top: 0;
  }

  /* Descripción más corta */
  .hero-sub {
    font-size: .95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  /* CTAs full width, prominentes */
  .hero-ctas {
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.1rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 1rem;
  }

  /* Chips en móvil — 2 por fila */
  .hero-chips { gap: .4rem .7rem; }

  /* Stats strip — 2x2 en móvil */
  .stats-strip {
    grid-template-columns: repeat(2,1fr);
    gap: .65rem;
    margin-top: 1.5rem;
  }
  .stat-num   { font-size: 1.7rem; }
}

@media (max-width: 640px) {
  h1 { font-size: 1.9rem; line-height: 1.15; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.15rem; }
  .section      { padding: 3rem 0; }
  .section-sm   { padding: 2rem 0; }
  .grid-3       { grid-template-columns: 1fr; }
  .vet-grid     { grid-template-columns: 1fr; }
  .field-2col   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 1.75rem; }
  .blog-head    { flex-direction: column; align-items: flex-start; }
  .store-online-banner { flex-direction: column; text-align: center; }
  .hero-float-card { display: none; }
  .topbar { display: none; }
  /* Blog listing 1 col on small mobile */
  .blog-card { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   MOBILE UX — Mejoras de conversión y usabilidad
   Mobile-first additions
═══════════════════════════════════════════════════ */

/* ── Sticky bottom CTA bar (solo móvil) ── */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 990;
    background: var(--green-deep);
    border-top: 2px solid rgba(255,255,255,.12);
    padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom));
    gap: .6rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
    /* Starts hidden — JS shows it after hero */
    transform: translateY(100%);
    transition: transform .35s ease;
  }
  .mobile-cta-bar.visible {
    transform: translateY(0);
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    gap: .45rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: .88rem;
    border-radius: 99px;
    padding: .75rem .5rem;
    text-decoration: none;
    min-height: 48px;
    transition: opacity .2s;
  }
  .mobile-cta-bar a:active { opacity: .85; }
  .mobile-cta-bar .cta-call {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.2);
  }
  .mobile-cta-bar .cta-wa {
    background: #25D366;
    color: #fff;
    flex: 1.6;
    box-shadow: 0 2px 12px rgba(37,211,102,.35);
  }

  /* Space so content doesn't hide behind the bar when visible */
  body.cta-bar-visible { padding-bottom: 80px; }
}

/* ── Hero mobile ── */
@media (max-width: 900px) {
  .hero { padding: 3.5rem 0 3rem; min-height: auto; }
  .hero-grid { gap: 1.5rem; }
  .hero-badge { font-size: .78rem; }
  .hero-sub  { font-size: .95rem; }
  .hero-ctas { gap: .6rem; }
  .hero-ctas .btn {
    width: 100%; justify-content: center;
    padding: .9rem 1rem; font-size: .95rem;
  }
  .hero-chips { gap: .4rem .65rem; }
  .stats-strip { gap: .65rem; margin-top: 2rem; }
  .stat-num   { font-size: 1.65rem; }
  .stat-label { font-size: .75rem; }
  .stat-emoji { font-size: 1.3rem; }
}

/* ── Nav mobile ── */
@media (max-width: 900px) {
  .nav-inner { height: 60px; }
  .mobile-menu a {
    padding: .9rem 1rem;   /* min-height ≈ 48px touch target */
    font-size: .95rem;
    border-radius: .75rem;
  }
  .mobile-menu-ctas { gap: .55rem; }
  .mobile-menu-ctas .btn {
    padding: .85rem 1rem; font-size: .9rem; min-height: 48px;
  }
}

/* ── Services cards mobile ── */
@media (max-width: 640px) {
  .grid-3.svc-grid { grid-template-columns: 1fr; }
  .svc-head { padding: 1.25rem 1.25rem 1rem; }
  .svc-illo svg { width: 60px; height: 60px; }
  .svc-body  { padding: 1.1rem 1.25rem; }
  .svc-body .btn { min-height: 48px; font-size: .9rem; }

  /* Inline-style service cards grid override */
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"]   { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"]  { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2"]  { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(2"] { grid-template-columns: 1fr !important; }
}

/* ── Service detail pages (categorías, técnicas, steps) ── */
@media (max-width: 640px) {
  /* Store cat cards — 1 col */
  .store-cat-card { width: 100%; }
  .store-cat-head { padding: 1.1rem 1.25rem; gap: .75rem; }
  .store-cat-icon { width: 46px; height: 46px; font-size: 1.8rem; }
  .store-cat-body { padding: 1.1rem 1.25rem; }

  /* How-it-works steps → 2x2 */
  .steps-wrap { grid-template-columns: repeat(2,1fr) !important; gap: .85rem !important; }

  /* Cross-sell → full width */
  .cross-sell-card { padding: 1rem; }
  .cross-sell-icon { width: 42px; height: 42px; font-size: 1.3rem; }

  /* Pets gallery → 3 cols */
  .pets-mosaic { gap: .5rem; }
  .pet-tile    { border-radius: .85rem; }

  /* Page hero inner sections */
  .page-hero { padding: 2.75rem 0 2rem; }
  .page-hero-inner { padding-top: .5rem; }

  /* Vaccine tables → 1 col */
  [style*="grid-template-columns:1fr 1fr;gap:1.5rem"] { grid-template-columns: 1fr !important; }

  /* CTA banners with flex row → column */
  [style*="display:grid;grid-template-columns:1fr auto"] { display: flex !important; flex-direction: column !important; }
  [style*="display: grid; grid-template-columns: 1fr auto"] { display: flex !important; flex-direction: column !important; }

  /* Included grid in grooming */
  .included-grid { grid-template-columns: 1fr; gap: .35rem; }

  /* Tag list wrapping */
  .tag-list { gap: .4rem; }
  .tag { font-size: .75rem; padding: .3rem .7rem; }

  /* Blog listing → 1 col */
  .grid-3.blog-grid { grid-template-columns: 1fr; }
}

/* ── Testimonios mobile ── */
@media (max-width: 640px) {
  .testi-card { padding: 1.1rem; }
  .testi-text { font-size: .85rem; }
}

/* ── FAQ mobile ── */
@media (max-width: 640px) {
  .faq-trigger { padding: .95rem 1.1rem; font-size: .9rem; }
  .faq-answer p { padding: 0 1.1rem 1rem; font-size: .88rem; }
}

/* ── Footer mobile ── */
@media (max-width: 640px) {
  .footer-inner { padding: 2.5rem 1rem 1.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bar { flex-direction: column; gap: .5rem; text-align: center; }
  .footer-bar-links { justify-content: center; }
}

/* ── Article page mobile ── */
@media (max-width: 640px) {
  .prose h2 { font-size: 1.25rem; }
  .prose h3 { font-size: 1.05rem; }
  .prose p  { font-size: .92rem; }
  .article-layout { gap: 1.5rem !important; }
}

/* ── Buttons always accessible ── */
@media (max-width: 900px) {
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; }
}

/* ── Location pill mobile ── */
@media (max-width: 640px) {
  .location-pill { padding: .75rem 1rem; }
  .location-pill .lp-addr { font-size: .82rem; }
}

/* ── Hero section — scroll hint ── */
@media (max-width: 900px) {
50%      { transform: translateY(5px); }
  }
}
@media (min-width: 901px) {
  .mobile-cta-bar { display: none !important; }
}

/* ═══════════════════════════════════
   PAGE HERO (páginas interiores)
═══════════════════════════════════ */
.page-hero {
  position: relative; background: #fff;
  padding: 4.5rem 0 4rem;
  overflow: hidden; /* ← contiene los hero-bg-blob dentro de la sección */
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-grid  {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; color: var(--text-soft);
  opacity: .7; margin-bottom: .5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .75; }
.breadcrumb span[aria-current] { color: var(--text-soft); }
@media (max-width: 900px) { .breadcrumb { display: none; } }

/* ═══════════════════════════════════
   STORE CATEGORY CARDS
═══════════════════════════════════ */
.store-cat-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.store-cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.store-cat-head {
  background: var(--green-deep); padding: 1.5rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
}
.store-cat-icon {
  font-size: 2.4rem; width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.store-cat-body { padding: 1.5rem 1.75rem; flex: 1; }
.store-cat-body p { font-size: .92rem; margin-bottom: 1rem; }
.store-cat-list { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.store-cat-list li { font-size: .88rem; font-weight: 700; color: var(--text-soft); }
.store-cat-brands {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1rem; border-top: 1.5px solid var(--green-pale);
  filter: grayscale(.4); opacity: .7; transition: filter .3s, opacity .3s;
}
.store-cat-card:hover .store-cat-brands { filter: grayscale(0); opacity: 1; }

/* ═══════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════ */
.faq-item {
  background: #fff; border-radius: var(--radius-md);
  border: 1.5px solid rgba(107,191,31,.15);
  overflow: hidden; transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--green); }
.faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.5rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; text-align: left;
  font-family: 'Nunito', sans-serif; font-size: .95rem;
  font-weight: 800; color: var(--green-deep);
  transition: background .2s;
}
.faq-trigger:hover { background: var(--green-pale); }
.faq-arrow { flex-shrink: 0; color: var(--green); transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  font-size: .9rem; font-weight: 600; color: var(--text-soft);
  line-height: 1.75; padding: 0 1.5rem 1.25rem;
  margin: 0;
}

/* ═══════════════════════════════════
   CROSS-SELL CARDS
═══════════════════════════════════ */
.cross-sell-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  background: var(--green-pale); border-radius: var(--radius-md);
  padding: 1.5rem; border: 1.5px solid rgba(107,191,31,.18);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  color: var(--text);
}
.cross-sell-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--green); }
.cross-sell-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}

/* ═══════════════════════════════════
   RESPONSIVE — page interior
═══════════════════════════════════ */
@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* Texto primero, imagen después */
  .page-hero-grid > div:last-child {
    display: flex;
    order: 2;
    justify-content: center;
    /* Imagen más compacta en móvil */
  }
  .page-hero-grid > div:last-child > div {
    width: min(300px, 88vw) !important;
  }
  .page-hero { padding: 2.5rem 0 2rem; }
}
@media (max-width: 640px) {
  .store-online-banner,
  [style*="grid-template-columns:1fr auto"] { flex-direction: column; }
}

/* ═══════════════════════════════════
   PETS PHOTO GALLERY
   Desktop: grid 5 col | Mobile: snap carousel
═══════════════════════════════════ */
.pets-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .85rem;
}
.pets-gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pets-gallery-item:hover {
  transform: scale(1.05) rotate(1.5deg);
  box-shadow: var(--shadow-md);
}
.pets-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pets-gallery-dots { display: none; }

@media (max-width: 860px) {
  .pets-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .75rem;
    padding-bottom: .5rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .pets-gallery::-webkit-scrollbar { display: none; }

  .pets-gallery-item {
    flex: 0 0 72vw;
    max-width: 320px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
  }
  /* First and last get extra margin to allow centering */
  .pets-gallery-item:first-child { margin-left: calc(14vw - .375rem); }
  .pets-gallery-item:last-child  { margin-right: calc(14vw - .375rem); }

  /* Dot indicators */
  .pets-gallery-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin-top: 1rem;
  }
  .pets-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(107,191,31,.25);
    transition: background .3s, width .3s;
  }
  .pets-dot.active {
    background: var(--green);
    width: 22px;
    border-radius: 4px;
  }
}

@media (max-width: 500px) {
  .pets-gallery-item { flex: 0 0 80vw; max-width: 300px; }
  .pets-gallery-item:first-child { margin-left: calc(10vw); }
  .pets-gallery-item:last-child  { margin-right: calc(10vw); }
}

/* ═══════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 2rem;
}
.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 .65rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--green-pale);
  color: var(--green-deep);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p  { font-size: .92rem; font-weight: 600; color: var(--text-soft); margin-bottom: .85rem; line-height: 1.8; }
.legal-content ul { margin: 0 0 .85rem 1.4rem; }
.legal-content li { font-size: .9rem; font-weight: 600; color: var(--text-soft); margin-bottom: .35rem; line-height: 1.7; }
.legal-content a  { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--green-deep); font-weight: 800; }
.legal-last-update {
  display: inline-block;
  background: var(--green-pale);
  border: 1.5px solid rgba(107,191,31,.2);
  border-radius: var(--radius-sm);
  padding: .4rem .9rem;
  font-size: .78rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 2rem;
}

/* Contact section info cards responsive */
@media (max-width: 640px) {
  .contact-section [style*="grid-template-columns:repeat(3,1fr)"],
  .contact-section [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .map-embed iframe { height: 240px; }
}

/* Hero mobile img — solo visible en móvil */
.hero-mobile-img { display: none; }
@media (max-width: 900px) {
  .hero-mobile-img { display: flex; }
}

/* Float cards en páginas interiores — sin óvalo */
.page-hero .hero-float-card {
  background: #fff;
  border-radius: 1rem;
  border: 2px solid var(--gold-pale);
  z-index: 10;
  /* Forzar que el border sea visible sin overflow issues */
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
@media (max-width: 900px) {
  .page-hero .hero-float-card { display: none; }
}

/* ═══════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════ */

/* Desktop — inline in nav-cta */
.lang-switch {
  display: flex; align-items: center; gap: .3rem;
  font-family: 'Nunito', sans-serif;
  font-size: .78rem; font-weight: 900;
  border: 1.5px solid rgba(107,191,31,.3);
  border-radius: 99px;
  padding: .3rem .75rem;
  color: var(--green-deep);
  text-decoration: none;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.lang-switch:hover { background: var(--green-pale); border-color: var(--green); }
.lang-switch-current { font-weight: 900; color: var(--green-deep); }
.lang-switch-sep { opacity: .3; }
.lang-switch-other { opacity: .5; font-weight: 700; }

/* Mobile — row of flag pills at top of menu */
.mobile-lang-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 1rem .75rem;
  border-bottom: 1px solid rgba(107,191,31,.12);
  margin-bottom: .25rem;
}
.mobile-lang-label {
  font-size: .7rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-soft); opacity: .5;
}
.mobile-lang-pills {
  display: flex; gap: .35rem;
}
.mobile-lang-pill {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .78rem; font-weight: 800;
  padding: .3rem .75rem; border-radius: 99px;
  border: 1.5px solid rgba(107,191,31,.2);
  color: var(--text-soft); text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.mobile-lang-pill.active {
  background: var(--green); color: #fff;
  border-color: var(--green); pointer-events: none;
}
.mobile-lang-pill:not(.active):hover {
  background: var(--green-pale); border-color: var(--green);
  color: var(--green-deep);
}

/* Hide lang switcher text on very small nav */
@media (max-width: 1200px) {
  .lang-switch { display: none; }
}

/* ── Brand carousel text chips ────────────────── */
.brands-track-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
}
.brands-track {
  display: flex; gap: 1rem; align-items: center;
  animation: brand-scroll 28s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid rgba(107,191,31,.15);
  border-radius: 99px; padding: .55rem 1.4rem;
  font-size: .85rem; font-weight: 900; color: var(--green-deep);
  white-space: nowrap; box-shadow: var(--shadow-sm);
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════
   LANDING PAGES — Campaign pages
═══════════════════════════════════════════════ */

/* Hero */
.lp-hero {
  position: relative; background: #fff;
  padding: 5rem 0 4rem; overflow: hidden;
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.lp-offer-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold-pale); border: 1.5px solid rgba(245,197,24,.35);
  border-radius: 99px; padding: .35rem 1rem;
  font-size: .82rem; font-weight: 900; color: var(--gold-dark);
  margin-bottom: 1rem; letter-spacing: .03em;
}
.lp-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; color: var(--green-deep);
  margin-bottom: 1rem;
}
.lp-h1 span { color: var(--green); }
.lp-sub {
  font-size: 1.05rem; color: var(--text-soft);
  line-height: 1.7; margin-bottom: 1.25rem;
  max-width: 500px;
}
.lp-offer-box {
  display: flex; align-items: center; gap: .75rem;
  background: var(--green-pale); border: 1.5px solid rgba(107,191,31,.25);
  border-radius: var(--radius-md); padding: .85rem 1.25rem;
  margin-bottom: 1.75rem;
  font-weight: 800; font-size: .92rem; color: var(--green-deep);
}
.lp-offer-icon { font-size: 1.4rem; flex-shrink: 0; }
.lp-ctas {
  display: flex; gap: .85rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.lp-cta-main { min-height: 52px; font-size: 1rem; }
.lp-cta-tel  { min-height: 52px; }
.lp-chips { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Hero visual */
.lp-hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.lp-hero-img-wrap {
  position: relative; width: min(420px, 100%);
}
.lp-hero-img-wrap img {
  width: 100%; height: auto; border-radius: 2.5rem;
  box-shadow: 0 16px 48px rgba(45,107,15,.18);
  border: 4px solid rgba(107,191,31,.18);
  object-fit: cover; display: block;
}
.lp-float-badge {
  position: absolute; bottom: -1rem; left: -1.25rem;
  background: #fff; border-radius: 1rem;
  padding: .65rem .9rem; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  border: 2px solid var(--green-pale);
  display: flex; align-items: center; gap: .6rem;
  z-index: 2;
}
.lp-float-icon { font-size: 1.4rem; flex-shrink: 0; }
.lp-float-title { font-size: .78rem; font-weight: 900; color: var(--green-deep); }
.lp-float-sub   { font-size: .68rem; font-weight: 600; color: var(--text-soft); opacity: .7; }

/* Why section */
.lp-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-why-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; text-align: center;
  border: 1.5px solid rgba(107,191,31,.12);
  box-shadow: var(--shadow-sm);
}
.lp-why-icon {
  font-size: 2.5rem; margin-bottom: .85rem; display: block;
}
.lp-why-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--green-deep); }
.lp-why-card p  { font-size: .88rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* Steps */
.lp-steps {
  display: flex; align-items: flex-start;
  gap: 0; margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.lp-step {
  flex: 1; min-width: 180px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1.5rem 1rem;
}
.lp-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem; display: flex; align-items: center;
  justify-content: center; margin-bottom: .85rem;
  box-shadow: 0 4px 12px rgba(107,191,31,.35);
  flex-shrink: 0;
}
.lp-step-body h3 { font-size: 1rem; color: var(--green-deep); margin-bottom: .4rem; }
.lp-step-body p  { font-size: .85rem; color: var(--text-soft); line-height: 1.55; margin: 0; }
.lp-step-arrow {
  font-size: 1.5rem; color: var(--green); opacity: .35;
  padding: 1.5rem 0; align-self: flex-start; margin-top: 1.5rem;
}
.lp-mid-cta {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1rem; border-top: 1.5px solid var(--green-pale);
  margin-top: 1rem;
}

/* FAQ */
.lp-faqs { max-width: 760px; margin: 0 auto; }

/* Final CTA */
.lp-final-cta {
  background: var(--green-deep); border-radius: 2rem;
  padding: 3.5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
  color: #fff;
}
.lp-final-cta::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 300px; height: 300px;
  border-radius: 50%; background: var(--green-mid); opacity: .07;
  pointer-events: none;
}
.lp-final-icon { font-size: 3rem; margin-bottom: 1rem; }
.lp-final-cta h2 {
  color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
}
.lp-final-cta p {
  color: rgba(255,255,255,.75); font-size: 1rem;
  max-width: 520px; margin: 0 auto 2rem;
}
.lp-trust-row {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 1.5rem;
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.65);
}

/* ── Landing Responsive ─────────────────────── */
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-hero-visual { display: none; }
  .lp-hero { padding: 2.5rem 0 2rem; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-steps { flex-direction: column; align-items: stretch; }
  .lp-step { flex-direction: row; text-align: left; gap: 1rem; }
  .lp-step-arrow { display: none; }
  .lp-final-cta { padding: 2.5rem 1.5rem; }
  .lp-trust-row { gap: .85rem; }
}
@media (max-width: 640px) {
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-ctas { flex-direction: column; }
  .lp-cta-main, .lp-cta-tel { width: 100%; justify-content: center; }
}
