/* =====================================================
   OLFATOS V4 — Petszone-Inspired Design
   Centro Canino Campestre | Pasto, Nariño
   Brand Colors: Red #C93232, Yellow #F5C432
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800;900&family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
  /* Brand */
  --red: #C93232;
  --red-dk: #A82828;
  --red-lt: #FDEAEA;
  --yellow: #f3e731;
  --yellow-dk: #c9bd00;
  --yellow-lt: #FFFDE0;

  /* Accent colors */
  --teal: #f3e731;
  --teal-dk: #c9bd00;
  --teal-lt: #FFFDE0;
  --navy: #1B2D5D;
  --orange: #FF7A00;
  --pink: #FFB3D1;
  --pink-lt: #FFF0F5;
  --purple-lt: #F0EEFF;
  --green-lt: #E8F8F0;
  --green: #2EC58A;

  /* Neutrals */
  --dark: #1A1A2E;
  --dark-2: #2D2D40;
  --text: #3D3D50;
  --muted: #7A7A9A;
  --border: #EBEBF5;
  --light-bg: #F7F7FB;
  --cream: #FFF8F0;
  --white: #FFFFFF;

  /* WhatsApp */
  --wa: #25D366;
  --wa-dk: #1DA851;

  /* Backward compat */
  --brand-red: #C93232;
  --brand-red-dk: #A82828;
  --brand-yellow: #F5C432;
  --brand-yellow-dk: #D4A825;
  --gray-light: #F7F7FB;
  --gray-mid: #EBEBF5;
  --gray: #7A7A9A;
  --dark-3: #4D4D60;
  --whatsapp: #25D366;
  --success: #2EC58A;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 10px 30px rgba(201, 50, 50, 0.28);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 50px;
  --radius-pill: 999px;
  /* Typography — Baloo 2 is close to Olfatos logo rounded style */
  --font-display: 'Baloo 2', 'Fredoka One', cursive;
  --font-heading: 'Baloo 2', 'Nunito', sans-serif;
  --font-body: 'Nunito', 'Baloo 2', sans-serif;
  --duration: 0.32s;
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Spacing */
  --container: 1280px;
  --section-py: 6rem;
  --header-h: 90px;

  /* Design tokens */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 44px;
  --r-pill: 999px;

  --s-sm: 0 3px 14px rgba(0, 0, 0, 0.06);
  --s-md: 0 8px 32px rgba(0, 0, 0, 0.09);
  --s-lg: 0 20px 55px rgba(0, 0, 0, 0.12);
  --s-red: 0 10px 32px rgba(201, 50, 50, 0.30);
  --s-teal: 0 10px 30px rgba(245, 196, 50, 0.35);

  --dur: 0.30s;
  --ease: cubic-bezier(0.32, 0, 0.67, 0);
  --bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ================================================
   RESET
   ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--dur) var(--bounce);
}

ul {
  list-style: none;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-py) 0;
}

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-lt {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-lt.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-rt {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-rt.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes cartPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.45);
  }
}

@keyframes counterUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--bounce);
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: white;
  box-shadow: var(--s-red);
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-dk);
  transform: translateY(-3px) scale(1.02);
  color: white;
}

.btn-teal {
  background: var(--teal);
  color: white;
  box-shadow: var(--s-teal);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-dk);
  transform: translateY(-3px) scale(1.02);
  color: white;
}

.btn-navy {
  background: var(--navy);
  color: white;
  box-shadow: var(--s-md);
}

.btn-navy:hover {
  background: #14234a;
  transform: translateY(-3px);
  color: white;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow: 0 10px 28px rgba(245, 196, 50, .35);
}

.btn-yellow:hover {
  background: var(--yellow-dk);
  transform: translateY(-3px) scale(1.02);
  color: var(--dark);
}

.btn-wa {
  background: var(--wa);
  color: white;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .35);
}

.btn-wa:hover {
  background: var(--wa-dk);
  transform: translateY(-4px);
  color: white;
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, .65);
}

.btn-outline-white:hover {
  background: white;
  color: var(--red);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: .5rem 1.3rem;
  font-size: .85rem;
}

/* Backward compat */
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: var(--s-red);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-3px) scale(1.02);
  color: white;
}

.btn-whatsapp {
  background: var(--wa);
  color: white;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  background: var(--wa-dk);
  transform: translateY(-4px);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  border: 3px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-3px);
  color: white;
}

/* ================================================
   SECTION LABELS
   ================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red-lt);
  color: var(--red);
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  margin-bottom: 1.1rem;
  line-height: 1.18;
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hl-red {
  color: var(--red);
}

.hl-yellow {
  color: var(--yellow-dk);
}

.hl-teal {
  color: var(--teal);
}

.hl-navy {
  color: var(--navy);
}

.text-center {
  text-align: center;
}

/* ================================================
   BADGE
   ================================================ */
.badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 900;
}

.badge-red {
  background: var(--red);
  color: white;
}

.badge-yellow {
  background: var(--yellow);
  color: var(--dark);
}

.badge-teal {
  background: var(--teal);
  color: white;
}

.badge-navy {
  background: var(--navy);
  color: white;
}

/* ================================================
   MARQUEE BAR (Petszone-style scrolling top bar)
   ================================================ */
.marquee-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  padding: .55rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 2.5rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .3px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.marquee-item i {
  color: var(--yellow);
  font-size: .9rem;
}

/* ================================================
   HEADER
   ================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
  transition: box-shadow var(--dur), border-color var(--dur);
}

#site-header.scrolled {
  box-shadow: var(--s-md);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.site-logo img {
  height: 80px;
  width: auto;
  transition: transform var(--dur) var(--bounce);
}

.site-logo:hover img {
  transform: scale(1.06) rotate(-4deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.main-nav a {
  font-weight: 800;
  font-size: .88rem;
  color: var(--text);
  padding: .5rem .9rem;
  border-radius: var(--r-pill);
  position: relative;
  transition: all var(--dur);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.main-nav a i {
  font-size: .85rem;
  transition: transform var(--dur) var(--bounce);
}

.main-nav a:hover i,
.main-nav a.active i {
  transform: scale(1.2);
}

/* Header social links */
.header-socials {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-right: .5rem;
}

.header-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--dur) var(--bounce);
  color: var(--muted);
  background: var(--light-bg);
  border: 1.5px solid var(--border);
}

.header-social-link:hover {
  transform: translateY(-3px) scale(1.1);
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.header-social-link.wa:hover {
  background: var(--wa);
  border-color: var(--wa);
}

.header-social-link.fb:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.header-social-link.ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #e6683c;
}

.header-social-link.tk:hover {
  background: #000;
  border-color: #69C9D0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: var(--r-pill);
  padding: .5rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--dur) var(--bounce);
  color: var(--dark);
}

.cart-btn:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: translateY(-2px);
}

.cart-count {
  background: var(--red);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
}

.cart-count.pulse {
  animation: cartPulse .4s var(--bounce);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}

.hamburger:hover {
  background: var(--light-bg);
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  padding: 2rem;
  flex-direction: column;
  gap: .75rem;
  overflow-y: auto;
  border-top: 2px solid var(--border);
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: .85rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

/* ================================================
   HERO — Petszone Style (vibrant red BG + wave)
   ================================================ */
.hero-pz {
  background: linear-gradient(135deg, var(--red) 0%, #E03030 50%, #B02020 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
  min-height: calc(90vh - var(--header-h));
  display: flex;
  align-items: center;
}

/* Decorative floating elements */
.hero-pz .deco-bone {
  position: absolute;
  font-size: 2.5rem;
  opacity: .18;
  animation: floatSlow 6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.hero-pz .deco-bone.b1 {
  top: 12%;
  left: 5%;
  animation-delay: -2s;
}

.hero-pz .deco-bone.b2 {
  top: 25%;
  right: 8%;
  font-size: 1.8rem;
  animation-delay: -1s;
}

.hero-pz .deco-bone.b3 {
  bottom: 30%;
  left: 3%;
  font-size: 1.5rem;
  animation-delay: -3.5s;
}

.hero-pz-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 2rem;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-pz-text {
  padding-bottom: 5rem;
}

.hero-eyebrow-pz {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255, 255, 255, .25);
  margin-bottom: 1.5rem;
}

.hero-pz h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  color: white;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.hero-pz h1 .hl-yellow {
  color: var(--yellow);
}

.hero-pz p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, .88);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-pz-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Mini stats inside hero */
.hero-pz-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-mini {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hero-stat-mini-icon {
  font-size: 1.6rem;
}

.hero-stat-mini-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}

.hero-stat-mini-text span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 700;
}

/* Dog image side */
.hero-pz-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-pz-img .dog-main {
  max-height: 560px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .25));
  position: relative;
  z-index: 2;
  align-self: flex-end;
  animation: float 4s ease-in-out infinite;
}

/* Yellow circle behind dog */
.hero-pz-img .dog-circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: rgba(245, 196, 50, .22);
  border-radius: 50%;
  z-index: 1;
}

/* Wave transition at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  overflow: hidden;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ================================================
   FEATURE STRIP (white cards on light bg overlapping)
   ================================================ */
.features-strip {
  background: #F5F5F7;
  padding: 5rem 0 5.5rem;
  position: relative;
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 1.8rem 2.2rem;
  box-shadow: 0 4px 22px rgba(0, 0, 0, .07);
  text-align: center;
  border: 2.5px solid transparent;
  transition: all 0.32s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(201, 50, 50, .13);
  border-color: var(--red);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .6rem;
}

.feature-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.feature-icon-pz {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  transition: all 0.32s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon-pz {
  transform: rotate(-8deg) scale(1.18);
}

.f-red {
  background: var(--red-lt);
  color: var(--red);
  --card-accent: var(--red);
}

.f-teal {
  background: var(--teal-lt);
  color: var(--teal);
  --card-accent: var(--teal);
}

.f-yellow {
  background: var(--yellow-lt);
  color: var(--yellow-dk);
  --card-accent: var(--yellow);
}

.f-green {
  background: var(--green-lt);
  color: var(--green);
  --card-accent: var(--green);
}

.f-pink {
  background: var(--pink-lt);
  color: #E0528A;
  --card-accent: #E0528A;
}

.f-purple {
  background: var(--purple-lt);
  color: #7C5CBF;
  --card-accent: #7C5CBF;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: .45rem;
  color: var(--dark);
}

.feature-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================
   ABOUT / WHY US SECTION (Petszone reasons grid)
   ================================================ */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-arch {
  background: var(--red-lt);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  height: 520px;
}

.about-img-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--red);
  color: white;
  padding: 1.2rem 1.8rem;
  border-radius: var(--r-lg);
  box-shadow: var(--s-red);
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
}

.about-badge strong {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-display);
}

.about-deco-circle {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: -1;
  opacity: .4;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.reason-card {
  background: var(--light-bg);
  border-radius: var(--r-md);
  padding: 1.2rem;
  border: 2px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  transition: all var(--dur) var(--bounce);
}

.reason-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--s-sm);
}

.reason-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.reason-card h4 {
  font-size: .95rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .25rem;
}

.reason-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================
   SERVICES CIRCLES — Petszone staggered row
   ================================================ */
.services-pz {
  background: var(--light-bg);
  overflow: hidden;
}

.services-circles-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.service-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  transition: all var(--dur) var(--bounce);
  cursor: pointer;
}

.service-circle-card:hover .sc-img {
  transform: translateY(-12px) scale(1.05);
}

.service-circle-card:nth-child(even) {
  margin-top: 2.5rem;
}

.sc-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .30);
  transition: transform var(--dur) var(--bounce), box-shadow var(--dur);
  border: 6px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-circle-card:hover .sc-img {
  box-shadow: 0 20px 55px rgba(0, 0, 0, .40), 0 0 0 8px rgba(255, 255, 255, .15);
}

.sc-label {
  font-weight: 900;
  font-size: 1rem;
  color: var(--dark);
  text-align: center;
}

.sc-sub {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}

/* ================================================
   STATS BAR — Full red
   ================================================ */
.stats-pz {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  display: block;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: white;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .78);
  margin-top: .45rem;
  letter-spacing: .8px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ================================================
   APPOINTMENT / CTA SECTION (Petszone green BG)
   ================================================ */
.appt-section {
  background: #fff232;
}

.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.appt-form-wrap {
  background: white;
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--s-md);
}

.appt-form-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.appt-img {
  border-radius: var(--r-xl);
  overflow: hidden;
}

.appt-img img {
  width: 100%;
  object-fit: cover;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */
.products-section {
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
  transition: all var(--dur) var(--bounce);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--s-lg);
  border-color: #FFD6D6;
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin: .75rem .75rem 0;
  border-radius: calc(var(--r-lg) - 4px);
  background: var(--light-bg);
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-label {
  position: absolute;
  top: .75rem;
  left: .75rem;
}

.product-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-body h3 {
  font-size: .98rem;
  font-weight: 900;
  margin-bottom: .4rem;
  color: var(--dark);
}

.product-card-body p {
  font-size: .84rem;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px dashed var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark);
  font-family: var(--font-display);
}

/* ================================================
   NEWS / BLOG CARDS
   ================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
  transition: all var(--dur) var(--bounce);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--s-lg);
  border-color: #FFD6D6;
}

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
  flex-wrap: wrap;
}

.news-date {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.news-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .7rem;
  line-height: 1.4;
}

.news-card p {
  font-size: .86rem;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.news-card .read-more {
  font-weight: 900;
  font-size: .86rem;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--dur);
}

.news-card:hover .read-more {
  gap: .75rem;
}

/* ================================================
   TESTIMONIALS (Petszone star card)
   ================================================ */
.testimonials-section {
  background: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
  transition: all var(--dur) var(--bounce);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-md);
  border-color: var(--yellow);
}

.test-stars {
  color: var(--yellow);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.test-text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.test-name strong {
  display: block;
  font-weight: 900;
  font-size: .92rem;
  color: var(--dark);
}

.test-name span {
  font-size: .78rem;
  color: var(--muted);
}

/* ================================================
   PAGE HEADER (interior pages)
   ================================================ */
.page-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  padding: 4.5rem 0 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero_bg.png') center/cover;
  opacity: .08;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: .75rem;
}

.page-header p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumbs {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .7);
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.breadcrumbs span {
  color: var(--yellow);
  font-weight: 800;
}

.wave-bottom {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.wave-bottom svg {
  display: block;
  width: 100%;
}

/* ================================================
   FORMS
   ================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: .82rem 1.1rem;
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: all var(--dur);
}

.form-control:focus {
  outline: none;
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 4px rgba(201, 50, 50, .10);
}

.form-control::placeholder {
  color: #bbb;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ================================================
   SERVICIOS PAGE
   ================================================ */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: white;
  border-radius: var(--r-xl);
  padding: 4rem;
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
  margin-bottom: 3rem;
  overflow: hidden;
  position: relative;
}

.service-detail-card.reverse {
  direction: rtl;
}

.service-detail-card.reverse>* {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 380px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-lg);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-body h2 {
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.service-detail-body p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.25rem 0;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 700;
}

.service-feature i {
  color: var(--red);
  font-size: .9rem;
}

/* ================================================
   CART
   ================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.cart-box {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
}

.checkout-box {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--s-md);
  border: 2px solid #FFD6D6;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 2px dashed var(--border);
}

.cart-item:last-of-type {
  border-bottom: none;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-bg);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h4 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: .25rem;
}

.cart-item-info p {
  font-size: .88rem;
  color: var(--muted);
}

.cart-item-price {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark);
  min-width: 90px;
  text-align: right;
}

.cart-remove {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur);
  color: var(--muted);
}

.cart-remove:hover {
  background: #fee2e2;
  color: var(--red);
  border-color: #fca5a5;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--dark);
  margin-top: 1rem;
}

.cart-total-label {
  font-size: 1.1rem;
  font-weight: 900;
}

.cart-total-amount {
  font-size: 2rem;
  font-weight: 400;
  color: var(--red);
  font-family: var(--font-display);
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}

.cart-empty i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: .3;
  display: block;
}

.checkout-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fecaca;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #a7f3d0;
}

.alert-info {
  background: #dbeafe;
  color: #1d4ed8;
  border: 2px solid #bfdbfe;
}

/* ================================================
   FOOTER
   ================================================ */
#site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand img {
  height: 55px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: .95rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--dur);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1rem;
  font-size: .88rem;
}

.footer-contact-item i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: .7rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: all var(--dur);
}

.social-link:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: .84rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .65);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 62px;
  height: 62px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, .5);
  transition: all var(--dur) var(--bounce);
}

.whatsapp-float:hover {
  transform: scale(1.14) rotate(-5deg);
  box-shadow: 0 16px 45px rgba(37, 211, 102, .6);
  color: white;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--wa);
  animation: pulse-ring 2.5s infinite;
  z-index: -1;
}

/* ================================================
   ADMIN PANEL (keep from V3)
   ================================================ */
.admin-body {
  background: var(--light-bg);
  padding-top: 0;
}

.admin-sidebar {
  width: 260px;
  background: var(--dark);
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 500;
}

.admin-sidebar-logo {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.admin-sidebar-logo img {
  height: 45px;
  filter: brightness(0) invert(1);
}

.admin-nav {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.25rem 0;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.5rem;
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  font-weight: 800;
  border-left: 3px solid transparent;
  transition: all var(--dur);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, .06);
  color: white;
  border-left-color: var(--red);
}

.admin-nav a.active {
  color: var(--yellow);
  border-left-color: var(--yellow);
}

.admin-nav i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.admin-nav-section {
  padding: 1.5rem 1.5rem .5rem;
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.admin-main {
  margin-left: 260px;
  padding: 2rem;
  min-height: 100vh;
}

.admin-topbar {
  background: white;
  border-radius: var(--r-lg);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
}

.admin-topbar-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
}

.admin-user {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 900;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.kpi-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--dur) var(--bounce);
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-md);
}

.kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.kpi-icon.red {
  background: rgba(201, 50, 50, .1);
  color: var(--red);
}

.kpi-icon.yellow {
  background: rgba(245, 196, 50, .15);
  color: var(--yellow-dk);
}

.kpi-icon.green {
  background: rgba(46, 197, 138, .1);
  color: var(--green);
}

.kpi-icon.dark {
  background: rgba(26, 26, 46, .08);
  color: var(--dark);
}

.kpi-info strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  font-family: var(--font-display);
}

.kpi-info span {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 800;
}

.admin-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--s-sm);
  border: 2px solid var(--border);
  overflow: hidden;
  margin-bottom: 2rem;
}

.admin-card-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-card-header h3 {
  font-size: 1rem;
  font-weight: 900;
}

.admin-card-body {
  padding: 1.75rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background: var(--light-bg);
  padding: .75rem 1rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(201, 50, 50, .02);
}

.btn-action {
  padding: .4rem .85rem;
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--dur);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.btn-edit {
  background: rgba(245, 196, 50, .15);
  color: #9a7d00;
}

.btn-edit:hover {
  background: var(--yellow);
  color: var(--dark);
}

.btn-delete {
  background: rgba(201, 50, 50, .1);
  color: var(--red);
}

.btn-delete:hover {
  background: var(--red);
  color: white;
}

.btn-save {
  background: var(--red);
  color: white;
}

.btn-save:hover {
  background: var(--red-dk);
}

.seo-score-bar {
  height: 8px;
  background: var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-top: .5rem;
}

.seo-score-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--green);
  transition: width .6s ease;
}

.seo-score-fill.poor {
  background: var(--red);
}

.seo-score-fill.medium {
  background: var(--yellow);
}

/* Admin Login */
.login-page {
  min-height: 100vh;
  display: flex;
  background: var(--dark);
  padding-top: 0;
}

.login-split-left {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 60%, #4a1515);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
}

.login-split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Imagenes/Olfatos_pasto1B.jpg') center/cover;
  opacity: .15;
}

.login-split-right {
  width: 460px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.login-content {
  width: 100%;
  max-width: 360px;
}

.login-content img {
  height: 60px;
  margin: 0 auto 2.5rem;
}

.login-content h2 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  font-family: var(--font-display);
}

.login-content p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-pz-inner {
    grid-template-columns: 1fr;
    padding-bottom: 5rem;
  }

  .hero-pz-img {
    display: none;
  }

  .hero-pz-text {
    padding-bottom: 3rem;
  }

  .about-grid,
  .appt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width:992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-sidebar {
    transform: translateX(-100%);
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .service-detail-card.reverse {
    direction: ltr;
  }

  .login-split-left {
    display: none;
  }

  .login-split-right {
    width: 100%;
  }
}

@media (max-width:768px) {
  :root {
    --section-py: 4rem;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 1rem;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-circles-row {
    gap: 1.5rem;
  }

  .sc-img {
    width: 120px;
    height: 120px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-pz-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   HERO SLIDER — arrows & dots
   ================================================ */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, .22);
  border: 2px solid rgba(255, 255, 255, .5);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(6px);
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, .4);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
  left: 1.5rem;
}

.hero-slider-next {
  right: 1.5rem;
}

.hero-slider-dots {
  position: absolute;
  bottom: 100px;
  /* above the wave */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: 2px solid rgba(255, 255, 255, .7);
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}

.hero-dot.active {
  background: #f3e731;
  border-color: #f3e731;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero-slider-prev {
    left: .75rem;
  }

  .hero-slider-next {
    right: .75rem;
  }

  .hero-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }
}