/* =====================================================
   NUTRIPET — Estilos v3 · Paleta Bold & Colorida
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ── Tokens ──────────────────────────────────────── */
:root {
  /* Colores principales */
  --yellow:      #FFD100;
  --yellow-dark: #E6BB00;
  --yellow-dim:  rgba(255, 209, 0, 0.12);
  --red:         #E82020;
  --red-dim:     rgba(232, 32, 32, 0.1);
  --blue:        #1A4FE8;
  --blue-dim:    rgba(26, 79, 232, 0.1);

  /* Fondos */
  --bg:          #F7F5F0;
  --bg-2:        #EDEBE5;
  --bg-white:    #FFFFFF;
  --dark:        #111111;

  /* Texto */
  --text:        #111111;
  --text-2:      #555550;
  --text-3:      #999993;

  /* Bordes */
  --border:      rgba(0,0,0,0.08);
  --border-2:    rgba(0,0,0,0.14);

  /* Radius */
  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grain sutil */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--yellow-dark); border-radius: 99px; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  /* Fondo blanco del logo se integra con el navbar claro */
  mix-blend-mode: multiply;
  transition: opacity 0.18s;
}

.nav-logo:hover img { opacity: 0.82; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color 0.18s, background 0.18s;
  letter-spacing: 0.1px;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg-2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 11px;
  color: var(--text-3);
  pointer-events: none;
}

.search-icon svg { width: 14px; height: 14px; }

.nav-search {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  padding: 8px 14px 8px 34px;
  width: 190px;
  outline: none;
  transition: all 0.22s var(--ease);
}

.nav-search:focus {
  border-color: var(--yellow-dark);
  width: 230px;
  box-shadow: 0 0 0 3px var(--yellow-dim);
}

.nav-search::placeholder { color: var(--text-3); }

.cart-btn {
  position: relative;
  background: var(--dark);
  border: none;
  border-radius: var(--r-sm);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
}

.cart-btn:hover {
  background: var(--red);
  transform: scale(1.05);
}

.cart-btn svg { width: 17px; height: 17px; }

.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--yellow);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-count.visible { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.2s;
}

/* ════════════════════════════════════════════════════
   HERO — El plato fuerte
   ════════════════════════════════════════════════════ */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Bloque superior — amarillo con texto */
.hero-top {
  background: var(--yellow);
  flex: 1;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Tachuela roja de fondo — detalle gráfico */
.hero-top::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: var(--red);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 0;
}

/* Texto hero */
.hero-content {
  padding: 72px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 52px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero-title .outline {
  /* Texto con solo contorno */
  -webkit-text-stroke: 3px var(--dark);
  color: transparent;
}

.hero-title .red { color: var(--red); -webkit-text-stroke: 0; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Nota de envio */
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-chip {
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 99px;
}

/* Foto del perro */
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.hero-dog-img {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  position: relative;
  z-index: 2;
  /* Sombra proyectada en el suelo */
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.22));
}

/* Tag flotante sobre la foto */
.hero-photo-tag {
  position: absolute;
  top: 80px;
  right: 20px;
  background: var(--dark);
  color: var(--yellow);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  z-index: 10;
  transform: rotate(-2deg);
}

/* ── Marquee ──────────────────────────────────────── */
.marquee-strip {
  background: var(--dark);
  overflow: hidden;
  padding: 14px 0;
  flex-shrink: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.7;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Botones ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  letter-spacing: 0.1px;
}

.btn-primary:hover {
  background: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,32,32,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: all 0.18s var(--ease);
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--yellow);
}

/* ════════════════════════════════════════════════════
   CATÁLOGO
   ════════════════════════════════════════════════════ */
.catalog {
  padding: 88px 0;
  background: var(--bg);
}

/* Label de sección */
.label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 6px;
  color: var(--dark);
}

.section-sub {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Category tabs */
.categories-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cat-chip {
  background: var(--bg-white);
  border: 2px solid var(--border-2);
  color: var(--text-2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.1px;
}

.cat-chip:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.cat-chip.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 18px;
}

/* Card */
.product-card {
  background: var(--bg-white);
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  animation: fadeUp 0.3s ease both;
}

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

.product-card:hover {
  border-color: var(--yellow-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 0 0 0 transparent;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-2);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--dark);
}

.product-badge.oferta { background: var(--red); color: #fff; }
.product-badge.nuevo  { background: var(--blue); color: #fff; }

.product-info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 0.68rem;
  color: var(--text-3);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.product-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.81rem;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1.5px solid var(--border);
}

.product-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.product-price sup {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  vertical-align: super;
  margin-right: 2px;
  letter-spacing: 0;
}

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--yellow);
  border: none;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.add-btn:hover {
  background: var(--dark);
  color: var(--yellow);
  transform: scale(1.03);
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-3);
  font-size: 0.9rem;
  display: none;
}

/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about {
  padding: 88px 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Acento rojo grande de fondo */
.about::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--red);
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  display: block;
}

.about-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 24px;
  color: #fff;
}

.about-title em {
  font-style: italic;
  color: var(--yellow);
}

.about-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Pillars — sobre fondo oscuro */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.pillar:last-child { border-bottom: none; }
.pillar:hover { background: rgba(255,255,255,0.04); }

.pillar-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.5;
  flex-shrink: 0;
  padding-top: 1px;
}

.pillar-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}

.pillar-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Visual lado rojo */
.about-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-main {
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
}

.about-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: filter 0.35s;
}

.about-photo-main:hover img { filter: brightness(0.95) saturate(1.1); }

.about-photo-secondary {
  position: absolute;
  bottom: -16px;
  left: -24px;
  width: 48%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.about-photo-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0a;
  border-top: 1.5px solid rgba(255,255,255,0.06);
  padding: 52px 0 24px;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.footer-brand-name span { color: var(--yellow); }

.footer-logo {
  width: min(100%, 280px);
  height: auto;
  margin-bottom: 18px;
  display: block;
  filter: none;
  opacity: 1;
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.social-links { display: flex; gap: 8px; }

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.18s;
}

.social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 10px;
}

/* ════════════════════════════════════════════════════
   CART DRAWER
   ════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
  backdrop-filter: blur(3px);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-white);
  border-left: 2px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1.5px solid var(--border);
}

.cart-header h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--dark);
}

.cart-close {
  background: var(--bg-2);
  border: none;
  color: var(--text-2);
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
}

.cart-close:hover { background: var(--dark); color: #fff; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-3);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cart-empty-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }

.cart-item {
  display: flex;
  gap: 12px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  align-items: center;
}

.cart-item-img {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  color: var(--dark);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
}

.qty-btn {
  width: 24px; height: 24px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-2);
  color: var(--text);
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-weight: 700;
}

.qty-btn:hover { border-color: var(--dark); background: var(--dark); color: #fff; }
.qty-num { font-size: 0.85rem; font-weight: 800; min-width: 18px; text-align: center; }

.cart-item-del {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 14px;
  transition: color 0.15s;
  padding: 4px;
}

.cart-item-del:hover { color: var(--red); }

.cart-footer {
  padding: 18px 22px;
  border-top: 1.5px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.cart-total-label { font-size: 0.85rem; color: var(--text-2); font-weight: 600; }

.cart-total-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 15px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.2px;
}

.btn-whatsapp:hover {
  background: #1fba59;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* ════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── Toast ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 94px;
  right: 28px;
  background: var(--dark);
  color: var(--yellow);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  z-index: 9999;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.25s var(--ease);
  pointer-events: none;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about::before { display: none; }
  .about-visual { height: 360px; max-width: 480px; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: flex; align-items: flex-end; max-height: 340px; overflow: hidden; }
  .hero-dog-img { max-width: 100%; }
  .hero-title { font-size: clamp(2.6rem, 8vw, 4rem); }
  .catalog-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-search { display: none; }
  .hero-top::before { height: 20%; }
  .categories-bar { gap: 5px; }
  .cat-chip { font-size: 0.78rem; padding: 6px 12px; }
  .whatsapp-float { bottom: 18px; right: 18px; }
}
