body {
  font-family: Arial, sans-serif;
}

/* ── No scroll (cuando sidebar abierto) ── */
body.no-scroll {
  overflow: hidden;
}

/* ── Header ── */

.header-height {
  height: 70px;
}

.glass-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1050;
}

.logo {
  color: #e23670;
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  margin: 0;
}

.icon {
  cursor: pointer;
  font-size: 28px;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -10px;
  background: #e23670;
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}
 
.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

/* ── Sidebar ── */

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1070;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.sidebar-menu {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

.sidebar-menu li {
  margin: 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.sidebar-link:hover {
  background: #fdf2f5;
  color: #e23670;
}

.sidebar-link.active {
  color: #e23670;
  background: #fdf2f5;
  font-weight: 600;
}

.sidebar-link .material-symbols-outlined {
  font-size: 22px;
}

/* ── Bottom Navigation ── */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  z-index: 1040;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #999;
  font-size: 11px;
  gap: 2px;
  transition: color 0.2s;
}

.bottom-nav-item .material-symbols-outlined {
  font-size: 24px;
}

.bottom-nav-item.active {
  color: #e23670;
}

.bottom-nav-item:hover {
  color: #e23670;
}

/* Espacio inferior para que el contenido no quede detrás del bottom nav */
.bottom-nav-spacer {
  height: 70px;
}

/*-catalogo-*/
.btn-filtro {
    flex-shrink: 0; padding: 6px 16px;
    border-radius: 999px; border: 1.5px solid #e0e0e0;
    background: #fff; font-size: .8rem; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: all .2s;
  }
  .btn-filtro.active, .btn-filtro:hover {
    background: #e23670; border-color: #e23670; color: #fff;
  }

  /*-contacto-*/
  .contacto-hero {
      background: linear-gradient(135deg, rgba(226,54,112,.08) 0%, rgba(226,54,112,.03) 100%);
      border-bottom: 1px solid rgba(226,54,112,.12);
      padding: 32px 20px 24px;
      text-align: left;
    }
    .contacto-hero h1 {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 2.6rem;
      color: #e23670;
      margin-bottom: 6px;
    }
    .contacto-hero p {
      color: #888;
      font-size: .9rem;
      margin: 0;
    }

    /* Tarjetas de info */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 20px 16px 8px;
    }
    @media (min-width: 768px) { .info-grid { grid-template-columns: repeat(4,1fr); } }

    .info-card {
      background: #fff;
      border-radius: 16px;
      padding: 18px 14px;
      text-align: center;
      border: 1.5px solid rgba(226,54,112,.1);
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }
    .info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(226,54,112,.12);
      border-color: rgba(226,54,112,.3);
    }
    .info-card .ic {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(226,54,112,.08);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 10px;
      font-size: 1.2rem; color: #e23670;
    }
    .info-card .titulo {
      font-size: .65rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: #aaa; margin-bottom: 4px;
    }
    .info-card .valor {
      font-size: .82rem; font-weight: 600;
      color: #2d2d2d; line-height: 1.4;
    }
    .info-card a { color: #e23670; text-decoration: none; }

    /* Formulario */
    .form-wrap {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      margin: 16px;
      border: 1.5px solid rgba(226,54,112,.1);
      box-shadow: 0 4px 20px rgba(0,0,0,.05);
    }
    .form-wrap .titulo-form {
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 20px; color: #2d2d2d;
      display: flex; align-items: center; gap: 8px;
    }
    .form-wrap .titulo-form span {
      font-size: 1.2rem; color: #e23670;
    }
    .form-control {
      border-radius: 10px;
      border: 1.5px solid #efefef;
      font-size: .9rem; padding: 10px 14px;
      transition: border-color .2s, box-shadow .2s;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .form-control:focus {
      border-color: #e23670;
      box-shadow: 0 0 0 3px rgba(226,54,112,.1);
    }
    .form-label {
      font-size: .82rem; font-weight: 600;
      color: #555; margin-bottom: 5px;
    }
    .btn-enviar {
      background: #e23670; color: #fff; border: none;
      border-radius: 50px; padding: 13px 32px;
      font-weight: 700; font-size: .95rem;
      width: 100%; cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 6px 20px rgba(226,54,112,.3);
    }
    .btn-enviar:hover { background: #c42d60; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(226,54,112,.35); }
    .btn-enviar:active { transform: translateY(0); }
    .btn-enviar:disabled { opacity: .6; cursor: not-allowed; transform: none; }

    /* Toast de éxito */
    .toast-exito {
      display: none;
      background: #fff;
      border: 1.5px solid rgba(226,54,112,.2);
      border-radius: 16px;
      padding: 20px 24px;
      margin: 0 16px 16px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(226,54,112,.1);
      animation: slideIn .4s ease;
    }
    .toast-exito.visible { display: block; }
    .toast-exito .check {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(226,54,112,.1);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px;
      font-size: 1.6rem; color: #e23670;
    }
    .toast-exito h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .toast-exito p  { font-size: .85rem; color: #888; margin: 0; }
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(-10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* FAQ */
    .faq-wrap {
      margin: 0 16px 24px;
      border-radius: 20px;
      overflow: hidden;
      border: 1.5px solid rgba(226,54,112,.1);
      background: #fff;
    }
    .faq-header {
      padding: 18px 22px;
      background: linear-gradient(135deg, rgba(226,54,112,.06), rgba(226,54,112,.02));
      border-bottom: 1px solid rgba(226,54,112,.1);
      font-weight: 700; font-size: .9rem; color: #2d2d2d;
      display: flex; align-items: center; gap: 8px;
    }
    .faq-item {
      padding: 16px 22px;
      border-bottom: 1px solid #f5f5f5;
      cursor: pointer;
      transition: background .2s;
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-item:hover { background: rgba(226,54,112,.03); }
    .faq-pregunta {
      font-weight: 600; font-size: .88rem;
      color: #2d2d2d; margin: 0;
      display: flex; justify-content: space-between; align-items: center;
    }
    .faq-pregunta i { color: #e23670; font-size: .8rem; transition: transform .2s; flex-shrink: 0; margin-left: 8px; }
    .faq-respuesta {
      font-size: .83rem; color: #888;
      line-height: 1.6; margin: 8px 0 0;
      display: none;
    }
    .faq-item.open .faq-pregunta i { transform: rotate(180deg); }
    .faq-item.open .faq-respuesta { display: block; }


/*-Nosotros-*/
.nosotros-hero {
      background: linear-gradient(135deg, rgba(255,182,193,.18) 0%, rgba(255,182,193,.08) 100%);
      border-bottom: 1px solid rgba(255,182,193,.25);
      padding: 40px 24px 32px;
      text-align: center;
    }
    .nosotros-hero .badge-hero {
      display: inline-block;
      background: rgba(255,182,193,.25);
      color: #d94c7b;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 50px;
      margin-bottom: 14px;
    }
    .nosotros-hero h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 800; color: #1a1a2e;
      margin-bottom: 12px; line-height: 1.2;
    }
    .nosotros-hero h1 span { color: #d94c7b; }
    .nosotros-hero p {
      color: #777; font-size: .92rem;
      max-width: 420px; margin: 0 auto;
      line-height: 1.7;
    }

    /* ── Historia ───────────────────────────────────── */
    .historia-wrap {
      margin: 20px 16px;
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      border: 1.5px solid rgba(255,182,193,.2);
      box-shadow: 0 4px 20px rgba(0,0,0,.04);
    }
    .historia-wrap .seccion-label {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: #d94c7b; margin-bottom: 8px;
    }
    .historia-wrap h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem; font-weight: 800;
      color: #1a1a2e; margin-bottom: 14px;
    }
    .historia-wrap p {
      font-size: .9rem; color: #666;
      line-height: 1.8; margin: 0;
    }

    /* ── Valores ───────────────────────────────────── */
    .valores-titulo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      color: #1a1a2e;
      padding: 8px 16px 12px;
    }
    .valor-card {
      background: #fff;
      border-radius: 20px;
      padding: 24px 20px;
      border: 1.5px solid rgba(255,182,193,.2);
      text-align: center;
      transition: transform .2s, box-shadow .2s;
      height: 100%;
    }
    .valor-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(255,182,193,.25);
    }
    .valor-icono-wrap {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(255,182,193,.2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      font-size: 1.4rem;
      color: #d94c7b;
    }
    .valor-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .95rem; font-weight: 700;
      color: #1a1a2e; margin-bottom: 8px;
    }
    .valor-card p {
      font-size: .83rem; color: #777;
      line-height: 1.6; margin: 0;
    }

    /* ── Misión ─────────────────────────────────────── */
    .mision-wrap {
      margin: 8px 16px 24px;
      background: linear-gradient(135deg, #f8d7e1 0%, #f3c1d3 100%);
      border-radius: 20px;
      padding: 28px 24px;
      color: #4a2c36;
    }
    .mision-wrap .seccion-label {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: #d94c7b; margin-bottom: 8px;
    }
    .mision-wrap h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem; font-weight: 800;
      margin-bottom: 12px;
    }
    .mision-wrap p {
      font-size: .88rem;
      line-height: 1.8; margin: 0;
    }

    /* ── CTA ────────────────────────────────────────── */
    .cta-wrap {
      margin: 0 16px 32px;
      background: rgba(255,182,193,.15);
      border: 1.5px solid rgba(255,182,193,.3);
      border-radius: 20px;
      padding: 28px 24px;
      text-align: center;
    }
    .cta-wrap h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem; font-weight: 800;
      color: #1a1a2e; margin-bottom: 8px;
    }
    .cta-wrap p {
      font-size: .87rem; color: #666;
      margin-bottom: 18px; line-height: 1.6;
    }
    .btn-cta {
      display: inline-block;
      background: #d94c7b; color: #fff;
      border-radius: 50px; padding: 12px 28px;
      font-weight: 700; font-size: .9rem;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(217,76,123,.25);
      transition: .2s;
      margin: 4px;
    }
    .btn-cta:hover { background: #c13f6c; color: #fff; }
    .btn-cta-outline {
      display: inline-block;
      background: transparent; color: #d94c7b;
      border: 2px solid #d94c7b;
      border-radius: 50px; padding: 10px 26px;
      font-weight: 700; font-size: .9rem;
      text-decoration: none;
      transition: .2s;
      margin: 4px;
    }
    .btn-cta-outline:hover { background: #d94c7b; color: #fff; }

/*-favoritos-*/
.fav-hero {
      background: linear-gradient(135deg, rgba(226,54,112,.08), rgba(226,54,112,.03));
      border-bottom: 1px solid rgba(226,54,112,.12);
      padding: 28px 20px 20px; text-align: center;
    }
    .fav-hero h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.6rem; font-weight: 800; color: #1a1a2e; margin-bottom: 4px;
    }
    .fav-hero p { font-size: .88rem; color: #999; margin: 0; }

    .empty-fav {
      text-align: center; padding: 60px 24px;
    }
    .empty-fav .ic {
      font-size: 3.5rem; color: #f0c0d0; margin-bottom: 16px;
    }
    .empty-fav h3 {
      font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px;
    }
    .empty-fav p { font-size: .88rem; color: #999; margin-bottom: 20px; }

    .producto-card {
      background: #fff; border-radius: 16px; overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
      border: 1.5px solid rgba(226,54,112,.08);
      transition: transform .25s, box-shadow .25s;
    }
    .producto-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(226,54,112,.14);
    }
    .card-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; }
    .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .producto-card:hover .card-img-wrap img { transform: scale(1.05); }

    .btn-quitar {
      position: absolute; top: 8px; right: 8px;
      background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
      border: none; border-radius: 50%; width: 34px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      color: #e23670; font-size: 1rem; cursor: pointer;
      transition: background .2s;
    }
    .btn-quitar:hover { background: #e23670; color: #fff; }

    .card-body-custom { padding: 12px 14px 14px; }
    .card-body-custom .nombre { font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
    .card-body-custom .desc { font-size: .75rem; color: #999; margin-bottom: 10px; }
    .precio { color: #e23670; font-weight: 700; font-size: .95rem; }

    .btn-agregar {
      background: #e23670; color: #fff; border: none;
      border-radius: 8px; width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; cursor: pointer; transition: background .2s;
    }
    .btn-agregar:hover { background: #c42d60; }
/* ── Footer ── */

.footer {
  background: var(--text-dark);
  color: white;
  padding: 2rem;
  text-align: center;
  padding-bottom: 80px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}