:root {
  --color-bg: #ffffff;
  --color-bg-alt: #eaf1fa;
  --color-surface: #ffffff;
  --color-dark: #04357a;
  --color-text: #1b2733;
  --color-text-muted: #667685;
  --color-border: #dbe6f2;
  --color-accent: #0055a4;
  --color-accent-dark: #023566;
  --color-accent-light: #6aa4dd;
  --color-highlight: #ffb703;
  --color-highlight-dark: #e09a00;
  --max-width: 1180px;
  --radius: 14px;
  --font-heading: 'Baloo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: var(--font-heading);
  line-height: 1.15;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section[id] {
  scroll-margin-top: 84px;
}

.eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.inline-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}

/* Cursor con forma de patita en todo lo clickeable */
a, button {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 64 64'%3E%3Cg fill='%230055a4'%3E%3Cellipse cx='32' cy='42' rx='16' ry='13'/%3E%3Cellipse cx='14' cy='20' rx='7' ry='9' transform='rotate(-20 14 20)'/%3E%3Cellipse cx='28' cy='12' rx='7' ry='9'/%3E%3Cellipse cx='42' cy='12' rx='7' ry='9'/%3E%3Cellipse cx='54' cy='20' rx='7' ry='9' transform='rotate(20 54 20)'/%3E%3C/g%3E%3C/svg%3E") 14 14, pointer;
}

/* Ícono de patita reutilizable */
.paw, .paw-icon, .btn-paw {
  fill: currentColor;
}

.btn-paw {
  color: currentColor;
  flex-shrink: 0;
}

.btn:hover .btn-paw {
  animation: pawWiggle 0.5s ease;
}

@keyframes pawWiggle {
  0% { transform: rotate(0deg); }
  30% { transform: rotate(-18deg); }
  65% { transform: rotate(14deg); }
  100% { transform: rotate(0deg); }
}

/* Decoración de patitas flotantes en el hero */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-decor .paw {
  position: absolute;
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.18);
  animation: pawFloat 6s ease-in-out infinite;
}

.paw-a { top: 18%; left: 8%; animation-delay: 0s; }
.paw-b { top: 65%; left: 14%; width: 30px; height: 30px; animation-delay: 1.4s; }
.paw-c { top: 22%; right: 10%; width: 36px; height: 36px; animation-delay: 0.7s; }
.paw-d { top: 68%; right: 16%; animation-delay: 2.1s; }

@keyframes pawFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(12deg); }
}

/* Divisor de patitas entre secciones */
.paw-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  padding: 1.5rem 0;
  background: var(--color-bg);
}

.paw-divider .paw-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  opacity: 0;
  transform: scale(0.3) translateY(10px) rotate(var(--rot, 0deg));
}

.paw-divider.is-visible .paw-icon {
  animation:
    pawPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    pawBounce 2.2s ease-in-out infinite;
}

.paw-divider.is-visible .paw-icon:nth-child(1) { animation-delay: 0s, 0.5s; }
.paw-divider.is-visible .paw-icon:nth-child(2) { animation-delay: 0.08s, 0.58s; }
.paw-divider.is-visible .paw-icon:nth-child(3) { animation-delay: 0.16s, 0.66s; }
.paw-divider.is-visible .paw-icon:nth-child(4) { animation-delay: 0.24s, 0.74s; }
.paw-divider.is-visible .paw-icon:nth-child(5) { animation-delay: 0.32s, 0.82s; }

@keyframes pawPop {
  to {
    opacity: 0.45;
    transform: scale(1) translateY(0) rotate(var(--rot, 0deg));
  }
}

@keyframes pawBounce {
  0%, 100% { transform: scale(1) translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: scale(1) translateY(-7px) rotate(var(--rot, 0deg)); }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  z-index: 200;
  transition: width 0.1s linear;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 85, 164, 0.3);
}

.btn-ghost {
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-catalog {
  background: var(--color-highlight);
  color: #1b2733;
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

.btn-catalog:hover {
  background: var(--color-highlight-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.5);
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-media[data-reveal] { transform: translateX(-48px); }
.about-content[data-reveal] { transform: translateX(48px); }
.about-media[data-reveal].is-visible,
.about-content[data-reveal].is-visible { transform: translateX(0); }

.contact-info[data-reveal] { transform: translateX(-48px); }
.contact-hours[data-reveal] { transform: translateX(48px); }
.contact-info[data-reveal].is-visible,
.contact-hours[data-reveal].is-visible { transform: translateX(0); }

.cards-grid .card:nth-child(1) { transition-delay: 0s; }
.cards-grid .card:nth-child(2) { transition-delay: 0.08s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.16s; }
.cards-grid .card:nth-child(4) { transition-delay: 0.24s; }
.cards-grid .card:nth-child(5) { transition-delay: 0.32s; }
.cards-grid .card:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg {
    transform: none !important;
  }

  .hero-decor .paw,
  .whatsapp-float,
  .card:hover .card-icon,
  .btn:hover .btn-paw,
  .paw-divider.is-visible .paw-icon {
    animation: none !important;
  }

  .paw-divider .paw-icon {
    opacity: 0.45;
    transform: none !important;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-text);
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.logo span {
  color: var(--color-accent);
}

.nav ul {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  background: var(--color-dark);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(0, 85, 164, 0.55), transparent 50%);
  z-index: 0;
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.hero .eyebrow {
  color: var(--color-accent-light);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

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

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 5.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
}

.hero-brand-name span {
  color: var(--color-accent-light);
}

.hero-brand-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.3rem;
}

.hero-brand-logo {
  width: clamp(48px, 8vw, 76px);
  height: clamp(48px, 8vw, 76px);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero .btn-primary {
  background: #fff;
  color: var(--color-accent-dark);
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.feature-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Sections generic */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--color-text-muted);
}

/* Sobre nosotros */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 85, 164, 0.15);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  color: var(--color-accent);
  font-size: 1.05rem;
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badges li {
  background: var(--color-bg-alt);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
}

/* Cards / categorías */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 85, 164, 0.4);
  box-shadow: 0 20px 40px rgba(0, 85, 164, 0.14);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 85, 164, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  animation: iconWiggle 0.55s ease;
}

@keyframes iconWiggle {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.18) rotate(-16deg); }
  60% { transform: scale(1.18) rotate(12deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* Carrusel de alimentos */
.food-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.food-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.5rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
}

.food-carousel::-webkit-scrollbar {
  height: 6px;
}

.food-carousel::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 999px;
}

.food-card {
  flex: 0 0 260px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 85, 164, 0.14);
}

.food-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.food-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.food-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.carousel-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-dark), var(--color-accent-dark));
  box-shadow: 0 20px 40px rgba(4, 53, 122, 0.2);
}

.catalog-cta-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.catalog-cta-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.btn-catalog-lg {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Ubicación */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.location-address {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.map-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 85, 164, 0.15);
}

/* Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.whatsapp-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #0e0f12;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  margin-bottom: 0;
  transition: transform 0.2s ease;
}

.whatsapp-link:hover {
  transform: translateY(-2px);
}

.whatsapp-link-alt {
  background: transparent;
  border: 2px solid #25D366;
  color: #128c4a;
}

.contact-detail {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-detail:last-of-type {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--color-accent);
}

.contact-hours {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.contact-hours h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.contact-hours li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-hours li:last-child {
  border-bottom: none;
}

.contact-hours strong {
  color: var(--color-text);
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .logo {
  color: #fff;
}

.site-footer .logo span {
  color: var(--color-accent-light);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-accent-light);
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  order: 3;
}

.footer-inner p.footer-credit {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  margin-top: 0.35rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #0e0f12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  animation: pulse 2.5s ease-in-out infinite, tailWag 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

@keyframes tailWag {
  0%, 88%, 100% { transform: rotate(0deg); }
  90% { transform: rotate(-14deg); }
  93% { transform: rotate(11deg); }
  96% { transform: rotate(-6deg); }
  98% { transform: rotate(0deg); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .site-header.nav-open .nav ul {
    flex-direction: column;
    gap: 1.25rem;
  }

  .site-header.nav-open .nav-cta {
    display: inline-flex;
    margin: 1rem 1.5rem 0;
  }

  .site-header.nav-open .header-inner {
    flex-wrap: wrap;
  }

  .badges {
    grid-template-columns: 1fr;
  }

  .food-carousel-wrap {
    padding: 0 1rem;
  }

  .carousel-btn {
    display: none;
  }
}

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

  .food-card {
    flex-basis: 220px;
  }

  .catalog-cta {
    flex-direction: column;
    text-align: center;
  }
}
