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

html { scroll-behavior: smooth; }

body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

/* ─── Header ─── */
header { transition: background-color 0.3s, box-shadow 0.3s; }
.header-scrolled { background-color: rgba(255,255,255,0.95) !important; backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.header-scrolled .logo-text { color: #1e293b !important; }
.header-scrolled .logo-icon { color: #10b981 !important; }
.header-scrolled .nav-icon { color: #1e293b !important; }
.header-scrolled .nav-icon:hover { color: #10b981 !important; }
.header-scrolled .nav-link { color: #475569 !important; }
.header-scrolled .nav-link:hover { color: #10b981 !important; }
.header-scrolled .nav-whatsapp { background: #22c55e !important; color: white !important; }

/* ─── Global Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.5); }
  60% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }
.scroll-reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Hero ─── */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(248,113,113,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(251,146,60,0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #94a3b8;
  margin-top: 1rem;
  font-weight: 400;
}
.hero-tagline {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}
.hero-ctas { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-text-top { animation: fadeUp 1s 0.2s both; }
.hero-text-title { animation: fadeUp 0.8s 0.4s both; }
.hero-text-subtitle { animation: fadeUp 0.8s 0.6s both; }
.hero-text-tagline { animation: popIn 0.6s 0.9s both; }

.hero-shipping {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1rem; padding: 0.5rem 1.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; font-size: 0.9rem; color: #cbd5e1;
  backdrop-filter: blur(4px);
}
.hero-shipping i {
  font-size: 1.1rem; color: #34d399;
  animation: truckMove 2s ease-in-out infinite;
}
.hero-shipping strong { color: #34d399; font-weight: 600; }
.hero-text-shipping { animation: fadeUp 0.8s 1.1s both; }

@keyframes truckMove {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(6px) rotate(2deg); }
  50% { transform: translateX(0) rotate(0deg); }
  75% { transform: translateX(-3px) rotate(-1deg); }
}

.hero-text-ctas { animation: fadeUp 0.8s 1.2s both; }

/* ─── Floating Hero Icons ─── */
.hero-icons {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.hero-icons i {
  position: absolute; font-size: 2.5rem;
  color: rgba(255,255,255,0.08);
  animation: heroBob 4s ease-in-out infinite;
}
.hero-icons i:nth-child(1) { top: 10%; left: 6%; font-size: 3.2rem; animation-duration: 4.2s; }
.hero-icons i:nth-child(2) { top: 55%; right: 12%; font-size: 2.2rem; animation-duration: 5.0s; animation-delay: 0.3s; }
.hero-icons i:nth-child(3) { bottom: 20%; left: 5%; font-size: 3.5rem; animation-duration: 3.8s; animation-delay: 0.6s; }
.hero-icons i:nth-child(4) { top: 30%; right: 6%; font-size: 2rem; animation-duration: 4.6s; animation-delay: 0.1s; }
.hero-icons i:nth-child(5) { bottom: 35%; right: 22%; font-size: 2.8rem; animation-duration: 5.2s; animation-delay: 0.8s; }
.hero-icons i:nth-child(6) { top: 8%; left: 32%; font-size: 2.2rem; animation-duration: 4.0s; animation-delay: 0.4s; }
.hero-icons i:nth-child(7) { bottom: 12%; left: 28%; font-size: 3rem; animation-duration: 4.8s; animation-delay: 1.0s; }
.hero-icons i:nth-child(8) { top: 42%; left: 14%; font-size: 2.4rem; animation-duration: 5.4s; animation-delay: 0.2s; }
.hero-icons i:nth-child(9) { bottom: 40%; right: 8%; font-size: 2.2rem; animation-duration: 4.4s; animation-delay: 0.7s; }
.hero-icons i:nth-child(10) { top: 52%; right: 28%; font-size: 3rem; animation-duration: 3.6s; animation-delay: 0.5s; }

@keyframes heroBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero-text-title h1 {
  display: inline-block;
  background: linear-gradient(135deg, #fff, #34d399, #fff, #94a3b8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white; transition: all 0.3s; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(16,185,129,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2); color: white;
  transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { border-color: #10b981; background: rgba(16,185,129,0.1); }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  background: #22c55e; color: white; transition: all 0.3s;
  border: none; cursor: pointer; width: 100%;
}
.btn-whatsapp:hover { background: #16a34a; transform: translateY(-1px); }

.btn-whatsapp-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #22c55e; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; text-decoration: none;
  transition: all 0.3s;
}
.btn-whatsapp-icon:hover { background: #16a34a; transform: scale(1.05); }

/* ─── Floating WhatsApp ─── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #22c55e; color: white; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 16px rgba(34,197,94,0.4);
  transition: all 0.3s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(34,197,94,0.5); }

/* ─── Categories ─── */
#categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.categoria-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.5rem 1rem; background: white; border-radius: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid #f1f5f9;
  text-decoration: none; color: inherit;
  width: 100%; max-width: 180px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); cursor: pointer; text-align: center;
  opacity: 0; transform: translateY(40px) scale(0.88);
}
.categoria-card.visible {
  opacity: 1; transform: translateY(0) scale(1);
}
.categoria-card:nth-child(1) { transition-delay: 0.00s; }
.categoria-card:nth-child(2) { transition-delay: 0.05s; }
.categoria-card:nth-child(3) { transition-delay: 0.10s; }
.categoria-card:nth-child(4) { transition-delay: 0.15s; }
.categoria-card:nth-child(5) { transition-delay: 0.20s; }
.categoria-card:nth-child(6) { transition-delay: 0.25s; }
.categoria-card:nth-child(7) { transition-delay: 0.30s; }
.categoria-card:nth-child(8) { transition-delay: 0.35s; }
.categoria-card:nth-child(9) { transition-delay: 0.40s; }
.categoria-card:nth-child(10) { transition-delay: 0.45s; }
.categoria-card:nth-child(11) { transition-delay: 0.50s; }
.categoria-card:nth-child(12) { transition-delay: 0.55s; }
.categoria-card:nth-child(13) { transition-delay: 0.60s; }
.categoria-card:nth-child(14) { transition-delay: 0.65s; }
.categoria-card:nth-child(15) { transition-delay: 0.70s; }

.categoria-card:hover {
  transform: translateY(-6px) scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: #34d399;
}
.categoria-card .categoria-icon {
  width: 60px; height: 60px; border-radius: 1rem;
  background: linear-gradient(135deg, #34d399, #10b981);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 12px rgba(16,185,129,0.2);
}
.categoria-card:hover .categoria-icon { 
  transform: scale(1.1) rotate(-5deg); 
  box-shadow: 0 6px 20px rgba(16,185,129,0.35);
}
.categoria-card h3 { font-size: 0.9rem; font-weight: 600; color: #1e293b; }
.categoria-card span { font-size: 0.75rem; color: #94a3b8; }

/* ─── Products ─── */
#productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.producto-card {
  background: white; border-radius: 1rem; overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.producto-card:hover {
  transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #34d399;
}
.producto-card .producto-img { overflow: hidden; }
.producto-card:hover .placeholder-img { transform: scale(1.05); }
.placeholder-img { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.producto-card.destacado {
  border-color: #a7f3d0;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.15);
}
.producto-card.destacado::before {
  content: '★ Destacado';
  position: absolute; top: 10px; right: 10px;
  background: #10b981; color: white;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; z-index: 2;
}

.producto-img {
  position: relative; height: 200px; overflow: hidden;
}
.producto-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.producto-card:hover .producto-img img { transform: scale(1.05); }
.placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,0.3);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.producto-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; position: relative; }
.producto-categoria {
  display: inline-block;
  background: #f1f5f9; color: #64748b;
  padding: 0.2rem 0.75rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 500; margin-bottom: 0.5rem;
  align-self: flex-start;
}
.producto-body h3 { font-size: 1.05rem; font-weight: 600; color: #1e293b; margin-bottom: 0.35rem; }
.producto-descripcion { font-size: 0.85rem; color: #64748b; flex: 1; line-height: 1.5; margin-bottom: 1rem; }
.producto-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.producto-precio { font-size: 1.3rem; font-weight: 700; color: #059669; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.precio-antes { font-size: 0.9rem; color: #94a3b8; text-decoration: line-through; font-weight: 500; }
.precio-actual { font-size: 1.3rem; font-weight: 700; color: #059669; }
.descuento-badge { font-size: 0.7rem; font-weight: 700; color: #fff; background: #dc2626; padding: 0.15rem 0.5rem; border-radius: 999px; }

.btn-agregar {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  background: #1e293b; color: white; border: none;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-agregar:hover { background: #10b981; transform: scale(1.03); }
.btn-agregar:active { transform: scale(0.95); }
.btn-agregar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
}
.btn-agregar:hover::after { transform: translateX(100%); transition: transform 0.6s; }

/* ─── Search ─── */
.buscador {
  position: relative; max-width: 480px; margin: 0 auto 2rem;
}
.buscador-icono {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: #94a3b8; font-size: 1rem; pointer-events: none;
}
#buscador-input {
  width: 100%; padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 2px solid #e2e8f0; border-radius: 999px;
  font-size: 1rem; font-family: inherit; color: #1e293b;
  background: white; transition: all 0.3s; outline: none;
}
#buscador-input:focus {
  border-color: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
#buscador-input::placeholder { color: #94a3b8; }

/* ─── Cart Sidebar ─── */
#cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#cart-overlay.active { opacity: 1; pointer-events: auto; }

#cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 101;
  width: 100%; max-width: 420px; background: white;
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
#cart-sidebar.active { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; border-bottom: 1px solid #f1f5f9;
}
.cart-header h3 { font-size: 1.25rem; font-weight: 700; }
.cart-header button {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f1f5f9; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background 0.2s;
}
.cart-header button:hover { background: #e2e8f0; }

#cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }

#cart-footer {
  padding: 1.25rem; border-top: 1px solid #f1f5f9;
  display: none;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cart-total-row span:first-child { font-size: 0.9rem; color: #64748b; }
.cart-total-row span:last-child { font-size: 1.4rem; font-weight: 700; color: #1e293b; }

/* ─── Checkout Modal ─── */
#checkout-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#checkout-overlay.active { opacity: 1; pointer-events: auto; }

.checkout-modal {
  background: white; border-radius: 1rem; padding: 2rem;
  width: 100%; max-width: 400px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.checkout-modal h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.checkout-modal p { font-size: 0.9rem; color: #64748b; margin-bottom: 1.5rem; }
.checkout-modal input {
  width: 100%; padding: 0.75rem 1rem; margin-bottom: 0.75rem;
  border: 1px solid #e2e8f0; border-radius: 0.5rem;
  font-size: 1rem; transition: border-color 0.3s;
}
.checkout-modal input:focus,
.checkout-modal select:focus { outline: none; border-color: #10b981; }
.checkout-modal select {
  width: 100%; padding: 0.75rem 1rem; margin-bottom: 0.75rem;
  border: 1px solid #e2e8f0; border-radius: 0.5rem;
  font-size: 1rem; background: #fff; color: #1e293b;
  appearance: auto; cursor: pointer;
}
.checkout-modal textarea {
  width: 100%; padding: 0.75rem 1rem; margin-bottom: 0.75rem;
  border: 1px solid #e2e8f0; border-radius: 0.5rem;
  font-size: 1rem; font-family: inherit; resize: vertical;
}
.checkout-modal textarea:focus { outline: none; border-color: #10b981; }
.checkout-modal .btn-whatsapp { margin-top: 0.5rem; }
.checkout-modal .btn-cancel {
  display: block; margin-top: 0.75rem; text-align: center;
  color: #94a3b8; cursor: pointer; font-size: 0.9rem;
  background: none; border: none; width: 100%;
}
.checkout-modal .btn-cancel:hover { color: #475569; }

/* ─── Lightbox ─── */
#lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; cursor: zoom-out;
  opacity: 0; pointer-events: none;
  transition: background 0.4s, opacity 0.4s;
}
#lightbox.active {
  background: rgba(0,0,0,0.85);
  opacity: 1; pointer-events: auto;
}
#lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
#lightbox-close:hover { opacity: 1; }
#lightbox-img {
  max-width: 95vw; max-height: 90vh;
  object-fit: contain; border-radius: 0.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  cursor: default;
  transform: scale(0.75);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#lightbox.active #lightbox-img {
  transform: scale(1);
}

/* ─── Notification ─── */
#notificacion {
  position: fixed; bottom: 90px; right: 24px; z-index: 60;
  background: #1e293b; color: white; padding: 0.75rem 1.5rem;
  border-radius: 0.5rem; font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0; transform: translateY(10px);
  transition: all 0.3s; pointer-events: none;
}
#notificacion.show { opacity: 1; transform: translateY(0); }

/* ─── Sheet Banner ─── */
#sheet-banner {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b; color: #92400e;
  padding: 1rem 1.5rem; border-radius: 0.75rem;
  margin-bottom: 1.5rem; font-size: 0.9rem;
}

/* ─── Section Styles ─── */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: #0f172a;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: #64748b; font-size: 1.1rem;
  margin-bottom: 3rem; max-width: 600px;
}

/* ─── Services ─── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.servicio-card {
  background: white; padding: 2.5rem 2rem; border-radius: 1rem;
  border: 1px solid #f1f5f9; text-align: center;
  transition: all 0.3s;
}
.servicio-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.servicio-icon {
  width: 64px; height: 64px; border-radius: 1rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white; margin: 0 auto 1rem;
}
.servicio-card h3 { font-size: 1.15rem; font-weight: 600; color: #1e293b; margin-bottom: 0.75rem; }
.servicio-card p { font-size: 0.9rem; color: #64748b; line-height: 1.6; }

/* ─── Location ─── */
.location-card {
  background: white; border-radius: 1rem; overflow: hidden;
  border: 1px solid #f1f5f9; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.location-info { padding: 2rem; }
.location-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.location-info li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0; color: #475569;
}
.location-info i { color: #10b981; width: 20px; text-align: center; }
.location-map { height: 300px; background: #f1f5f9; }

/* ─── Footer ─── */
footer {
  background: #0f172a; color: #94a3b8;
}
footer h4 { color: white; font-weight: 600; margin-bottom: 1rem; }
footer a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
footer a:hover { color: #34d399; }
footer .social-links { display: flex; gap: 0.75rem; }
footer .social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s;
}
footer .social-links a:hover { background: #10b981; color: white; }

/* ─── Responsive ─── */
@media (max-width: 640px) {
  #productos-grid {
    grid-template-columns: 1fr;
  }
  #categorias-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .categoria-card { padding: 1rem 0.75rem; max-width: none; }
  #cart-sidebar { max-width: 100%; }
  .hero-content h1 { font-size: 2.5rem; }
}
