/*
Theme Name:   Hello Elementor Child
Theme URI:    https://drogueriadisney.com
Description:  Tema hijo de Droguería Disney
Author:       Fundecopi Webmaster
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-elementor-child
*/

/* ═══════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════ */
:root {
  --rojo:       #CC0000;
  --rojo-dark:  #A30000;
  --rojo-light: #FF1A1A;
  --verde:      #1A7A1A;
  --verde-dark: #0F5C0F;
  --verde-light:#22A022;
  --blanco:     #FFFFFF;
  --gris:       #EEEEEE;
  --gris-med:   #CCCCCC;
  --gris-dark:  #888888;
  --texto:      #1A1A1A;
  --sombra-sm:  0 2px 8px rgba(0,0,0,0.10);
  --sombra-md:  0 4px 20px rgba(0,0,0,0.13);
  --sombra-lg:  0 8px 32px rgba(0,0,0,0.16);
  --radio:      6px;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--texto); background: #f7f7f7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════
   TIPOGRAFÍAS — Google Fonts
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════
   BARRA SUPERIOR — TICKER ANIMADO
═══════════════════════════════════════════════════ */
#barra-top {
  background: var(--verde);
  color: #fff;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  gap: 8px;
}
.ticker-item .dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   HEADER PRINCIPAL
═══════════════════════════════════════════════════ */
#header-main {
  background: #fff;
  box-shadow: var(--sombra-md);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo CSS */
.dd-logo {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  line-height: 1;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.dd-logo .logo-r { color: var(--rojo); }
.dd-logo .logo-g { color: var(--verde); }
.dd-logo .logo-space { width: 7px; }

/* Buscador */
.header-search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  border: 2px solid var(--gris-med);
  border-radius: var(--radio);
  overflow: hidden;
  transition: border-color 0.2s;
}
.header-search:focus-within { border-color: var(--rojo); }
.header-search input {
  flex: 1;
  height: 44px;
  border: none;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: transparent;
}
.header-search button {
  height: 44px;
  width: 52px;
  background: var(--rojo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.header-search button:hover { background: var(--rojo-dark); }

/* Acciones header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.btn-accion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--texto);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding: 4px 6px;
  text-decoration: none;
}
.btn-accion:hover { color: var(--rojo); }
.btn-accion svg { width: 26px; height: 26px; }
.cart-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--rojo);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa:hover { background: #1ebe5a; transform: scale(1.03); color: #fff; }

/* Hamburguesa */
.btn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-hamburger span {
  display: block;
  width: 24px; height: 3px;
  background: var(--rojo);
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; }
.btn-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
  background: var(--verde);
  position: sticky;
  top: 72px;
  z-index: 899;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
#navbar ul { display: flex; align-items: center; }
#navbar ul li a {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 18px;
  transition: background 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
#navbar ul li a:hover,
#navbar ul li.activo a { background: rgba(0,0,0,0.15); }
#navbar ul li.ofertas a { color: #FFE566; font-weight: 800; }

/* Menú móvil */
#mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: #fff;
  z-index: 1000;
  box-shadow: var(--sombra-lg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#mobile-nav.open { display: block; animation: slideDown 0.22s ease; }
#mobile-nav ul { list-style: none; margin: 0; padding: 0; }
#mobile-nav ul li a {
  display: block;
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gris);
  color: var(--texto);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
#mobile-nav ul li a:hover { background: var(--gris); color: var(--rojo); }
#mobile-nav ul li.ofertas a { color: var(--rojo); }
.mobile-search { padding: 14px 24px; border-bottom: 1px solid var(--gris); }
.mobile-search input {
  width: 100%; height: 44px;
  border: 2px solid var(--gris-med);
  border-radius: var(--radio);
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
#mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
}
#mobile-overlay.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   SLIDER HERO
═══════════════════════════════════════════════════ */
#slider-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #111;
}
.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
.slide-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}
.slide-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.5;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rojo);
  color: #fff;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radio);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.slide-cta:hover { background: var(--rojo-dark); transform: translateY(-2px); color: #fff; }

/* Flechas slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sombra-md);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-arrow svg { width: 20px; height: 20px; color: #1A1A1A; }

/* Dots slider */
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.25s, transform 0.25s;
}
.dot.active { background: #fff; transform: scale(1.3); }
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  background: rgba(255,255,255,0.2);
  width: 100%;
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  background: var(--rojo);
  width: 0%;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════
   CATEGORÍAS
═══════════════════════════════════════════════════ */
#categorias {
  background: #fff;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--gris);
}
.sec-titulo {
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 0 24px;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--texto);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-titulo::after {
  content: '';
  flex: 1;
  height: 3px;
  background: var(--gris);
  border-radius: 2px;
}
.sec-titulo span.acc { color: var(--rojo); }
.cats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 8px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: var(--gris);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--texto);
}
.cat-item:hover {
  border-color: var(--rojo);
  background: #fff;
  box-shadow: var(--sombra-sm);
  transform: translateY(-3px);
}
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  overflow: hidden;
}
.cat-icon img { width: 100%; height: 100%; object-fit: contain; }
.cat-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.cat-1 .cat-icon { background: #FFF0F0; }
.cat-2 .cat-icon { background: #F0FFF0; }
.cat-3 .cat-icon { background: #FFF8F0; }
.cat-4 .cat-icon { background: #F0F8FF; }
.cat-5 .cat-icon { background: #FFF0FF; }
.cat-6 .cat-icon { background: #F5F5FF; }
.cat-7 .cat-icon { background: #FFFFF0; }
.cat-8 .cat-icon { background: #FFF0F0; }

/* ═══════════════════════════════════════════════════
   BANNER DOMICILIOS
═══════════════════════════════════════════════════ */
#banner-domicilio {
  background: linear-gradient(135deg, var(--rojo) 0%, #E80000 100%);
  padding: 28px 24px;
}
.banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-txt h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-txt p { color: rgba(255,255,255,0.88); font-size: 15px; margin-top: 6px; }
.banner-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.banner-badge {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner-cta {
  background: #fff;
  color: var(--rojo);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radio);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.banner-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.28); color: var(--rojo); }

/* ═══════════════════════════════════════════════════
   PRODUCTOS — TARJETAS
═══════════════════════════════════════════════════ */
#destacados { background: #f7f7f7; padding: 36px 0; }
#ofertas { background: #fff; padding: 36px 0; border-top: 4px solid var(--rojo); }
.sec-header {
  max-width: 1280px;
  margin: 0 auto 24px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ver-todos {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rojo);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap 0.2s;
}
.ver-todos:hover { gap: 8px; }
.productos-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.prod-card:hover { box-shadow: var(--sombra-md); transform: translateY(-4px); }
.prod-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--rojo);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
}
.prod-badge.verde { background: var(--verde); }
.prod-img {
  height: 200px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gris);
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 5px;
  font-family: var(--font-head);
}
.prod-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--texto);
  line-height: 1.25;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.prod-desc {
  font-size: 12px;
  color: var(--gris-dark);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}
.prod-precio-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.prod-precio {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--rojo);
}
.prod-precio-antes {
  font-size: 14px;
  color: var(--gris-dark);
  text-decoration: line-through;
}
.btn-carrito {
  width: 100%;
  background: var(--verde);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: var(--radio);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-carrito:hover { background: var(--verde-dark); transform: scale(1.02); }

/* ═══════════════════════════════════════════════════
   BANNER VERDE — BENEFICIOS
═══════════════════════════════════════════════════ */
#banner-verde {
  background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde) 100%);
  padding: 36px 24px;
}
.banner-verde-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bv-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
}
.bv-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bv-icon img { width: 100%; height: 100%; object-fit: contain; }
.bv-txt h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bv-txt p { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.5; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer { background: #0D3D0D; color: #fff; padding: 48px 0 0; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo .fr { color: var(--rojo); }
.footer-logo .fg { color: #4CAF50; }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-redes { display: flex; gap: 10px; }
.red-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
  text-decoration: none;
}
.red-btn:hover { background: rgba(255,255,255,0.22); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a::before {
  content: '›';
  color: var(--rojo);
  font-weight: 700;
  font-size: 16px;
}
.suc-item { margin-bottom: 16px; }
.suc-item strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.suc-item span {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.5;
}
.horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
}
.horario-item .dia { color: rgba(255,255,255,0.65); }
.horario-item .hora { color: #fff; font-weight: 600; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 24px;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
═══════════════════════════════════════════════════ */
#wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.5s ease infinite;
  text-decoration: none;
}
#wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE — INTEGRACIONES BASE
═══════════════════════════════════════════════════ */
.woocommerce-notices-wrapper { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .productos-grid { grid-template-columns: repeat(3, 1fr); }
  #ofertas .productos-grid { grid-template-columns: repeat(3, 1fr); }
  .banner-verde-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .header-search { display: none; }
  .btn-hamburger { display: flex; }
  #navbar { display: none; }
  .btn-wa span { display: none; }
  .btn-wa { padding: 8px 10px; }
  .slide { height: 340px; }
  .slide-content { padding: 0 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .banner-verde-inner { grid-template-columns: 1fr; gap: 16px; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  #ofertas .productos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  #barra-top { height: 32px; }
  .ticker-track { font-size: 12px; }
  .header-inner { height: 62px; padding: 0 16px; gap: 10px; }
  .dd-logo { font-size: 20px; }
  #mobile-nav { top: 62px; height: calc(100vh - 62px); }
  .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cat-item { padding: 12px 4px; gap: 6px; }
  .cat-icon { width: 44px; height: 44px; font-size: 20px; }
  .cat-name { font-size: 10px; }
  .slide { height: 220px; }
  .slide-title { font-size: 26px; }
  .slide-sub { font-size: 12px; margin-bottom: 16px; }
  .slide-cta { font-size: 13px; padding: 10px 18px; }
  .slide-content { padding: 0 46px; }
  .slide-tag { font-size: 11px; }
  .slider-arrow { width: 36px; height: 36px; }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .sec-titulo { font-size: 20px; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 14px; }
  .prod-img { height: 150px; }
  .prod-name { font-size: 13px; }
  .prod-desc { font-size: 11px; }
  .prod-precio { font-size: 18px; }
  .btn-carrito { font-size: 12px; padding: 9px 10px; }
  .banner-txt h3 { font-size: 22px; }
  .banner-badges { flex-direction: column; gap: 8px; }
  .banner-cta { width: 100%; justify-content: center; }
  .banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 380px) {
  .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 5px; }
  .header-inner { padding: 0 12px; gap: 8px; }
  .dd-logo { font-size: 17px; }
  .slide { height: 190px; }
  .slide-title { font-size: 22px; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 12px; }
  .prod-img { height: 130px; }
}