    :root {
      --primary: #9333ea;
      --primary-hover: #7e22ce;
      --secondary: #ec4899;
      --accent: #f59e0b;
      --whatsapp: #10b981;
      --whatsapp-hover: #059669;
      --dark: #0f172a;
      --card-bg: #ffffff;
      --bg: #f8fafc;
      --text: #1e293b;
      --text-muted: #64748b;
      --border: #e2e8f0;
      --radius: 16px;
    }
   
/* Footer */
.site-footer{
  background: var(--surface, #0d0d0d);
  color: var(--muted, #ddd);
  padding: 14px 16px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
}
.site-footer .footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  align-items:center;
}
.site-footer a{
  color: var(--accent, #ffd166);
  text-decoration: none;
}
.site-footer a:hover{
  text-decoration: underline;
}
@media (max-width:600px){
  .site-footer .footer-inner{
    flex-direction:column;
  }
}
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.5;
      padding-bottom: 70px;
    }

    /* Banner Superior */
    .top-banner {
      background: linear-gradient(90deg, #7e22ce, #db2777, #d97706);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      text-align: center;
      padding: 8px 12px;
    }

    .top-banner span {
      background: rgba(255, 255, 255, 0.2);
      padding: 2px 8px;
      border-radius: 9999px;
      text-transform: uppercase;
      font-size: 0.7rem;
      margin-right: 6px;
    }

    /* Encabezado */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      text-decoration: none;
    }

    .brand img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 2px solid var(--primary);
      object-fit: cover;
      background: #fff;
      box-shadow: 0 6px 18px rgba(16,24,40,0.12);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .brand:hover img {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 18px 36px rgba(2,6,23,0.22);
    }

    .brand-text h1 {
      font-size: 1.25rem;
      font-weight: 900;
      letter-spacing: -0.5px;
      background: linear-gradient(90deg, #7e22ce, #db2777, #d97706);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.1;
    }

    .brand-text p {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    nav {
      display: flex;
      gap: 8px;
    }

    .nav-btn {
      background: none;
      border: none;
      padding: 8px 16px;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-muted);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .nav-btn.active {
      background: #f3e8ff;
      color: var(--primary);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ig-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: #fdf2f8;
      color: #db2777;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      border-radius: 12px;
    }

    /* Botón específico para Whatsapp */
    .whatsapp-btn {
      background: #25D366; /* verde Whatsapp */
      color: #ffffff; /* texto blanco */
    }
    .cart-btn {
      position: relative;
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 8px 14px;
      font-size: 0.8rem;
      font-weight: 700;
      border-radius: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .cart-badge {
      background: var(--accent);
      color: var(--dark);
      font-size: 0.7rem;
      font-weight: 900;
      padding: 2px 6px;
      border-radius: 9999px;
    }

    /* Contenedor Principal */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 16px;
    }

    .section-view {
      display: none;
    }

    .section-view.active {
      display: block;
    }

    /* Hero */
    .hero-banner {
      background: linear-gradient(135deg, #4c1d95, #1e1b4b, #0f172a);
      color: #fff;
      padding: 32px 24px;
      border-radius: 24px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 28px;
    }

    @media (min-width: 768px) {
      .hero-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px 48px;
      }
    }

    .hero-content {
      max-width: 550px;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.15);
      color: #fef08a;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 9999px;
      margin-bottom: 12px;
    }

    .hero-content h2 {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .hero-content p {
      font-size: 0.9rem;
      color: #cbd5e1;
      margin-bottom: 20px;
    }

    .btn-ws-hero {
      display: inline-block;
      background: var(--whatsapp);
      color: #fff;
      text-decoration: none;
      padding: 12px 24px;
      font-size: 0.85rem;
      font-weight: 800;
      border-radius: 14px;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .hero-logo-box {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-logo-box img {
      width: clamp(120px, 22vw, 180px);
      height: auto;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background: #fff;
      margin-bottom: 8px;
      object-fit: cover;
      border: 4px solid rgba(255,255,255,0.7);
      box-shadow: 0 10px 24px rgba(2,6,23,0.18);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .hero-logo-box img:hover {
      transform: scale(1.04);
      box-shadow: 0 24px 46px rgba(2,6,23,0.26);
    }

    .hero-logo-box p {
      font-size: 0.8rem;
      font-weight: 700;
      color: #fef08a;
    }

    /* Buscador y Filtros */
    .filter-panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 16px;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .search-bar input {
      width: 100%;
      padding: 12px 16px;
      font-size: 0.9rem;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: #f8fafc;
      outline: none;
    }

    .search-bar input:focus {
      border-color: var(--primary);
      background: #fff;
    }

    .filter-group {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }

    .filter-label {
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-right: 4px;
      width: 100%;
    }

    @media (min-width: 600px) {
      .filter-label {
        width: auto;
      }
    }

    .chip-btn {
      background: #f1f5f9;
      border: none;
      padding: 6px 14px;
      border-radius: 10px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-muted);
      cursor: pointer;
    }

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

    .chip-btn.age-chip.active {
      background: var(--accent);
      color: var(--dark);
    }

    /* Grilla de Productos */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
    }

    .product-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .img-box {
      position: relative;
      aspect-ratio: 4/3;
      background: #e2e8f0;
      overflow: hidden;
    }

    .img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .badge-tag {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(255, 255, 255, 0.9);
      color: var(--primary);
      font-size: 0.65rem;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 9999px;
    }

    .age-tag {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(15, 23, 42, 0.8);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 6px;
    }

    .product-info {
      padding: 16px;
    }

    .product-category {
      font-size: 0.7rem;
      color: var(--text-muted);
      font-weight: 700;
      text-transform: uppercase;
    }

    .product-name {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--dark);
      margin: 4px 0;
    }

    .product-desc {
      font-size: 0.75rem;
      color: var(--text-muted);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 12px;
    }

    .product-footer {
      padding: 0 16px 16px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      border-top: 1px solid #f1f5f9;
      padding-top: 8px;
      margin-bottom: 10px;
    }

    .price-val {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--dark);
    }

    .btn-add {
      width: 100%;
      background: var(--dark);
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 12px;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-add:hover {
      background: var(--primary);
    }

    /* Ubicación */
    .location-box {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px 24px;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .location-box img {
      width: clamp(64px, 10vw, 90px);
      height: auto;
      aspect-ratio: 1/1;
      border-radius: 50%;
      margin-bottom: 12px;
      object-fit: cover;
      border: 3px solid rgba(0,0,0,0.06);
      box-shadow: 0 6px 14px rgba(2,6,23,0.12);
    }

    /* Ajustes para pantallas pequeñas */
    @media (max-width: 600px) {
      .brand img {
        width: 48px;
        height: 48px;
      }

      .hero-logo-box {
        padding: 14px;
      }

      .hero-logo-box img {
        width: 110px;
      }
    }

    @media (max-width: 900px) {
      .brand img {
        width: 64px;
        height: 64px;
      }
    }

    .location-card {
      background: #f8fafc;
      border: 1px solid var(--border);
      padding: 16px;
      border-radius: 16px;
      text-align: left;
      margin: 16px 0;
      font-size: 0.85rem;
    }

    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      text-align: left;
      margin-bottom: 20px;
    }

    .delivery-item {
      background: #f3e8ff;
      padding: 12px;
      border-radius: 12px;
      font-size: 0.75rem;
    }

    .delivery-item strong {
      display: block;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .btn-ws-full {
      display: block;
      width: 100%;
      background: var(--whatsapp);
      color: #fff;
      text-decoration: none;
      padding: 14px;
      border-radius: 14px;
      font-size: 0.9rem;
      font-weight: 800;
    }

    /* Drawer de Carrito */
    .cart-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 380px;
      height: 100%;
      background: #fff;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
      z-index: 50;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: right 0.3s ease;
      padding: 20px;
    }

    .cart-drawer.open {
      right: 0;
    }

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

    .close-btn {
      background: none;
      border: none;
      font-size: 1.2rem;
      font-weight: bold;
      cursor: pointer;
    }

    .cart-list {
      flex: 1;
      overflow-y: auto;
      padding: 16px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #f8fafc;
      padding: 10px;
      border-radius: 12px;
      font-size: 0.8rem;
    }

    .cart-qty-ctrl {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      padding: 2px 6px;
      border-radius: 6px;
      border: 1px solid var(--border);
    }

    .cart-qty-ctrl button {
      background: none;
      border: none;
      font-weight: bold;
      cursor: pointer;
      padding: 2px 4px;
    }

    .cart-footer {
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      font-size: 1.1rem;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .btn-checkout {
      width: 100%;
      background: var(--whatsapp);
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 14px;
      font-size: 0.85rem;
      font-weight: 800;
      cursor: pointer;
    }

    .backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 45;
      display: none;
    }

    .backdrop.open {
      display: block;
    }

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