* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      user-select: none;
    }

    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fffaf5;
      color: #d14600;
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    
    .hero {
      background: linear-gradient(135deg, #532b19 0%, #e27107 100%);
      color: white;
      position: relative;
      padding: 100px 0 140px;
      text-align: center;
    }

    .hero-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      animation: fade-up 0.9s 0.2s ease both;
      font-size: 4rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }

    .hero-sub {
      font-size: 1.25rem;
      animation: fade-up 0.9s 0.2s ease both;
      font-weight: 500;
      opacity: 0.9;
      letter-spacing: 1px;
    }

    .hero-divider {
      width: 80px;
      animation: fade-up 0.9s 0.2s ease both;
      height: 3px;
      background: #ff9500;
      margin: 24px auto 20px;
      border-radius: 4px;
    }

    .hero-desc {
      font-size: 1.1rem;
      animation: fade-up 0.9s 0.2s ease both;
      max-width: 550px;
      margin: 0 auto 32px;
      opacity: 0.85;
    }

    .btn-hero {
      display: inline-flex;
      align-items: center;
      animation: fade-up 0.9s 0.2s ease both;
      gap: 12px;
      background: #d4af7a;
      color: #2e241f;
      padding: 14px 36px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .btn-hero i {
      font-size: 1.1rem;
    }

    .btn-hero:hover {
      background: #c29b5a;
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    }

    .hero-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      line-height: 0;
    }

    .hero-wave svg {
      width: 100%;
      height: 60px;
    }

    
    .menu-section {
      padding: 80px 0 90px;
      background: #fffaf5;
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-sub {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #b48c48;
      font-weight: 600;
      display: block;
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.7rem;
      font-weight: 700;
      color: #2e241f;
      margin-bottom: 16px;
    }

    .underline {
      width: 70px;
      height: 3px;
      background: #d4af7a;
      margin: 0 auto;
      border-radius: 4px;
    }

    .gold-underline {
      background: #c9a05b;
    }

    
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 32px;
    }

    .menu-card {
      background: white;
      border-radius: 28px;
      padding: 28px 20px 32px;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
      border: 1px solid #f3e9df;
      animation: fade-up 0.9s 0.2s ease both;
    }

    @keyframes fade-up {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

    .menu-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.15);
      border-color: #e4cfb5;
    }

    .card-icon {
      font-size: 2.8rem;
      color: #b48c48;
      margin-bottom: 20px;
    }

    .menu-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.65rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: #2e241f;
    }

    .menu-card p {
      font-size: 0.95rem;
      color: #5e4b3c;
      line-height: 1.4;
      margin-bottom: 24px;
      min-height: 48px;
    }

    .menu-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

    .price {
      font-size: 1.7rem;
      font-weight: 700;
      color: #b47c2e;
      display: inline-flex;
      align-items: baseline;
      gap: 5px;
      background: #fef5ea;
      padding: 6px 16px;
      border-radius: 50px;
    }

    .price span {
      font-size: 0.85rem;
      font-weight: 500;
      color: #8b6b45;
    }

    
    .offers {
      background: #fef4ea;
      padding: 80px 0;
    }

    .offers-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      margin-top: 24px;
    }

    .offer-card {
      background: white;
      border-radius: 32px;
      padding: 32px 28px;
      flex: 1;
      min-width: 260px;
      max-width: 380px;
      text-align: center;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
      transition: 0.2s;
      border: 1px solid #eedfcb;
    }

    .offer-card i {
      font-size: 2.4rem;
      color: #c49b47;
      margin-bottom: 18px;
    }

    .offer-card h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 14px;
      color: #2e241f;
    }

    .offer-card p {
      color: #63503f;
      margin-bottom: 24px;
    }

    .offer-tag {
      display: inline-block;
      background: #f3e1cb;
      padding: 8px 20px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #7c5a34;
    }

    .friday {
      border-top: 5px solid #d9b06a;
    }
    .tuesday {
      border-top: 5px solid #bf9b60;
    }

    
    .about {
      padding: 100px 0;
      background: #fffaf5;
    }

    .about-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 60px;
      justify-content: space-between;
    }

    .about-text {
      flex: 1.5;
    }

    .about-badge {
      display: inline-block;
      background: #f0e0ce;
      color: #b47c2e;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 6px 16px;
      border-radius: 40px;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      margin-bottom: 24px;
      color: #2e241f;
    }

    .about-text p {
      font-size: 1.05rem;
      line-height: 1.55;
      color: #4c3a2c;
      margin-bottom: 32px;
      max-width: 550px;
    }

    .about-features {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }

    .about-features span {
      background: #f8ede2;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #5e3f24;
    }

    .about-features i {
      margin-right: 8px;
      color: #c49b47;
    }

    .about-decor {
      flex: 0.8;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      max-width: 100%;
      overflow: hidden;
    }

    .decor-circle {
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, #f8e6d4, #f7e1ca);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-decor i {
      font-size: 6rem;
      color: #c7a15b;
      position: absolute;
      filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
    }

    /* ========== FOOTER ========== */
    .footer {
      background: #1f1611;
      color: #e2cfbc;
      padding: 48px 0 32px;
      border-top: 1px solid #3f2d21;
    }

    .footer-flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }

    .footer-brand h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: #f3e2cf;
      margin-bottom: 6px;
    }

    .footer-brand p {
      font-size: 0.85rem;
      opacity: 0.8;
    }

    .footer-social a {
      color: #e2cfbc;
      font-size: 1.5rem;
      margin: 0 12px;
      transition: 0.2s;
      display: inline-block;
    }

    .footer-social a:hover {
      color: #d4af7a;
      transform: translateY(-2px);
    }

    .footer-copy p {
      font-size: 0.8rem;
      opacity: 0.7;
    }

    /* Responsive */
    @media (max-width: 800px) {
      .hero-title { font-size: 2.8rem; }
      .section-title { font-size: 2rem; }
      .menu-grid { gap: 20px; }
      .about-inner { flex-direction: column; text-align: center; }
      .about-text p { margin-left: auto; margin-right: auto; }
      .about-features { justify-content: center; }
      .footer-flex { flex-direction: column; text-align: center; }
    }

    @media (max-width: 550px) {
      .hero { padding: 70px 0 110px; }
      .menu-card { padding: 22px 16px; }
      .price { font-size: 1.4rem; }
    }

    .buscador-container{
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.buscador-container i{
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #b47c2e;
    font-size: 18px;
}

#buscador{
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: 2px solid #f0d7b5;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background: white;
    transition: 0.3s ease;
}

#buscador:focus{
    border-color: #d4af7a;
    box-shadow: 0 0 12px rgba(212,175,122,0.25);
}

.ver-mas-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-left: 455px;
}

#verMasBtn{
    background: linear-gradient(135deg, #e27107, #ffb347);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: bold;
}

#verMasBtn:hover{
    transform: translateY(-3px);
}


/* ══════════════════════════════════════════════════════════════
   CHOCO GOURMET — Carrito de compras
   PEGA este bloque al final de tu archivo styles2.css
═══════════════════════════════════════════════════════════════ */

/* ── Botón "Agregar" en cada tarjeta del menú ── */
.btn-add-carrito {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    width: 100%;
    padding: 11px 0;
    background: linear-gradient(135deg, #e27107, #ffb347);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 14px rgba(226, 113, 7, 0.3);
}

.btn-add-carrito:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 113, 7, 0.45);
    background: linear-gradient(135deg, #c96200, #e8a030);
}

.btn-add-carrito:active {
    transform: scale(0.97);
}

.btn-add-carrito.agregado {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.btn-add-carrito:disabled {
    background: #ccc;
    color: #888;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* ── Icono del carrito en el header ── */
#carrito-icono {
    position: relative;
    background: rgba(226, 113, 7, 0.12);
    border: 1.5px solid rgba(226, 113, 7, 0.35);
    color: #e27107;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

#carrito-icono:hover {
    background: rgba(226, 113, 7, 0.22);
    border-color: #e27107;
    transform: scale(1.06);
}

.carrito-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fffaf5;
    animation: badge-pop 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes badge-pop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

/* ── Overlay oscuro ── */
#carrito-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

#carrito-overlay.activo {
    opacity: 1;
    pointer-events: all;
}

/* ── Panel lateral del carrito ── */
#carrito-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 95vw;
    height: 100vh;
    background: #fffaf5;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    transform: translateX(110%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

#carrito-panel.abierto {
    transform: translateX(0);
}

/* Header del panel */
.cp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 18px;
    border-bottom: 1.5px solid #f0e0cc;
    background: linear-gradient(135deg, #532b19, #e27107);
    color: #fff;
    flex-shrink: 0;
}

.cp-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cp-cerrar {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.cp-cerrar:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Área de items */
.cp-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cp-items::-webkit-scrollbar { width: 5px; }
.cp-items::-webkit-scrollbar-track { background: #fdf1e5; }
.cp-items::-webkit-scrollbar-thumb { background: #d4af7a; border-radius: 4px; }

/* Carrito vacío */
.cp-vacio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    color: #b48c48;
    text-align: center;
    padding: 40px 20px;
}

.cp-vacio i {
    font-size: 56px;
    opacity: 0.3;
}

.cp-vacio p {
    font-size: 18px;
    font-weight: 600;
    color: #5e4b3c;
    margin: 0;
}

.cp-vacio span {
    font-size: 14px;
    color: #9e816a;
}

/* Cada item del carrito */
.cp-item {
    background: #fff;
    border: 1px solid #f0e0cc;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    animation: item-slide 0.25s ease;
}

@keyframes item-slide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cp-item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.cp-item-nombre {
    font-weight: 600;
    color: #2e241f;
    font-size: 15px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.cp-item-precio {
    font-size: 12px;
    color: #9e816a;
    white-space: nowrap;
    flex-shrink: 0;
}

.cp-item-controles {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #e4cfb5;
    background: #fef5ea;
    color: #b47c2e;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    line-height: 1;
}

.cp-qty-btn:hover {
    background: #e27107;
    border-color: #e27107;
    color: #fff;
}

.cp-qty {
    font-size: 16px;
    font-weight: 700;
    color: #2e241f;
    min-width: 24px;
    text-align: center;
}

.cp-eliminar {
    margin-left: auto;
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: 0.2s;
}

.cp-eliminar:hover {
    color: #e63946;
    background: rgba(230, 57, 70, 0.08);
}

.cp-item-subtotal {
    font-size: 16px;
    font-weight: 700;
    color: #b47c2e;
    text-align: right;
    font-family: 'Playfair Display', serif;
}

/* Footer con total y botón comprar */
.cp-footer {
    flex-shrink: 0;
    border-top: 1.5px solid #f0e0cc;
    padding: 20px 20px 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cp-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    color: #5e4b3c;
    padding: 0 4px;
}

.cp-total-row strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #b47c2e;
}

.cp-btn-comprar {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #532b19, #e27107);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 24px rgba(226, 113, 7, 0.35);
}

.cp-btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(226, 113, 7, 0.5);
    background: linear-gradient(135deg, #7a3a1e, #f08020);
}

.cp-btn-comprar:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

/* ── Modal de confirmación de compra ── */
#modal-confirmacion {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
}

#modal-confirmacion.visible {
    opacity: 1;
}

.mc-box {
    background: #fffaf5;
    border-radius: 28px;
    padding: 44px 36px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    animation: mc-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
    border: 1px solid #f0d7b5;
}

@keyframes mc-pop {
    from { opacity:0; transform: scale(0.88) translateY(16px); }
    to   { opacity:1; transform: scale(1) translateY(0); }
}

.mc-icono-wrap {
    margin-bottom: 20px;
    position: fixed;
}

.mc-circulo {
    width: 72px;
    height: 72px;
    position: fixed;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(34,197,94,0.4);
}

.mc-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2e241f;
    margin-bottom: 8px;
}

.mc-sub {
    font-size: 15px;
    color: #5e4b3c;
    margin-bottom: 28px;
}

.mc-detalle {
    background: #fef5ea;
    border: 1px solid #f0d7b5;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #5e4b3c;
}

.mc-row strong {
    color: #2e241f;
    font-size: 16px;
}

.mc-total {
    color: #b47c2e !important;
    font-family: 'Playfair Display', serif;
    font-size: 22px !important;
}

.mc-nota {
    font-size: 14px;
    color: #9e816a;
    margin-bottom: 24px;
    line-height: 1.5;
}

.mc-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #532b19, #e27107);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.mc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226,113,7,0.4);
}

/* ── Toast de notificación ── */
.cg-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #2e241f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    white-space: nowrap;
    pointer-events: none;
}

.cg-toast i {
    color: #22c55e;
    font-size: 16px;
}

.cg-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 550px) {
    #carrito-panel { width: 100vw; }
    .mc-box { padding: 32px 20px 28px; }
}
/* ══════════════════════════════════════════════
   MODAL AUTH PARA COMPRAR (menu.js)
══════════════════════════════════════════════ */
#modal-auth-compra {
    position: fixed; inset: 0; z-index: 3000;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    transition: background 0.3s, backdrop-filter 0.3s;
}
#modal-auth-compra.ma-visible {
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
}

.ma-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px 36px;
    max-width: 400px; width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
    transform: scale(0.88) translateY(20px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
#modal-auth-compra.ma-visible .ma-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.ma-cerrar {
    position: absolute; top: 14px; right: 16px;
    background: #f3f3f3; border: none;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 14px; cursor: pointer; color: #666;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}
.ma-cerrar:hover { background: #e0e0e0; transform: rotate(90deg); }

.ma-icono {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(255,123,0,0.35);
}

.ma-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: #1a1a1a; text-align: center;
    margin-bottom: 6px;
}

.ma-sub {
    font-size: 13px; color: #888;
    text-align: center; margin-bottom: 24px;
    line-height: 1.5;
}

.ma-field {
    position: relative;
    margin-bottom: 14px;
}
.ma-field i:first-child {
    position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%);
    color: #bbb; font-size: 14px;
    pointer-events: none;
}
.ma-field input {
    width: 100%;
    padding: 12px 42px 12px 40px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px; color: #1a1a1a;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
}
.ma-field input:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 0 3px rgba(255,123,0,0.1);
    background: #fff;
}
.ma-toggle-pass {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%);
    color: #bbb; font-size: 14px; cursor: pointer;
    transition: color 0.2s;
}
.ma-toggle-pass:hover { color: #ff7b00; }

.ma-error {
    display: flex; align-items: center; gap: 8px;
    background: #fff5f5; border: 1px solid #fecaca;
    border-radius: 10px; padding: 10px 14px;
    font-size: 13px; color: #dc2626;
    margin-bottom: 14px;
}
.ma-error i { flex-shrink: 0; }

.ma-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    border: none; border-radius: 12px;
    color: #fff; font-size: 15px; font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: 0.25s; margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(255,123,0,0.3);
}
.ma-btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,123,0,0.4);
}
.ma-btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.ma-cambiar {
    text-align: center; font-size: 13px; color: #888; margin: 0;
}
.ma-cambiar span {
    color: #ff7b00; font-weight: 600; cursor: pointer;
    text-decoration: underline; text-underline-offset: 2px;
}
.ma-cambiar span:hover { color: #e06800; }

/* Estilos para badge de oferta y precios con descuento */
.oferta-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.menu-card {
    position: relative;
}
.precio-original {
    text-decoration: line-through;
    color: #9e816a;
    font-size: 14px;
    margin-right: 8px;
}
.precio-final {
    font-weight: 700;
    color: #b47c2e;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0d7b5;
    border-top-color: #e27107;
    border-radius: 50%;
    animation: girar 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes girar { to { transform: rotate(360deg); } }
/* ── Botón Ver Más ── */
.ver-mas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 10px;
}

#verMasBtn {
    background: linear-gradient(135deg, #532b19, #e27107);
    color: #fff;
    margin-right: 870px;
    border: none;
    padding: 14px 48px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 24px rgba(226,113,7,0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#verMasBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(226,113,7,0.45);
    background: linear-gradient(135deg, #7a3a1e, #f08020);
}

/* ── Fix bloque negro: mc-circulo e mc-icono-wrap no deben ser position:fixed ── */
.mc-icono-wrap {
    position: relative !important;
}

.mc-circulo {
    position: relative !important;
}
/* ═══════════════════════════════════════════════
   CARRITO FLOTANTE FIJO — Esquina inferior derecha
   ═══════════════════════════════════════════════ */
#carrito-flotante {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1100;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    color: #1a0a00;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(255,123,0,0.55);
    transition: transform 0.25s, box-shadow 0.25s;
    font-family: 'Inter', sans-serif;
}
#carrito-flotante:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 40px rgba(255,123,0,0.7);
}
#carrito-flotante .carrito-badge-flotante {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.carrito-mini-total {
    font-size: 13px;
    font-weight: 700;
    color: #1a0a00;
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes bounce-cart {
    0%, 100% { transform: scale(1); }
    40% { transform: scale(1.18) translateY(-4px); }
    70% { transform: scale(0.95); }
}
#carrito-flotante.bounce { animation: bounce-cart 0.5s ease; }

/* Método de pago en el carrito */
.cp-metodo-pago { margin-bottom: 14px; }
.cp-metodo-opciones {
    display: flex;
    gap: 10px;
}
.cp-metodo-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    transition: 0.2s;
    user-select: none;
}
.cp-metodo-btn input[type="radio"] { display: none; }
.cp-metodo-btn:has(input:checked) {
    border-color: #ff7b00;
    background: rgba(255,123,0,0.15);
    color: #ffbe0b;
}
.cp-metodo-btn:hover { border-color: rgba(255,123,0,0.5); }

/* ═══════════════════════════════════════════════
   TABS DE CATEGORÍAS
   ═══════════════════════════════════════════════ */
/* ========== FILTROS DE CATEGORÍA (TABS) ========== */
.cats-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}
.cat-tab {
    padding: 10px 24px;
    border-radius: 40px;
    border: 1.5px solid rgba(255,190,11,0.4);
    background: transparent;
    color: rgba(0, 0, 0, 0.342);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.3px;
}
.cat-tab:hover {
    border-color: #ff7b00;
    color: #ff7b00;
    transform: translateY(-2px);
}
.cat-tab.activa {
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    border-color: transparent;
    color: #1a0a00;
    box-shadow: 0 6px 16px rgba(255,123,0,0.4);
}

/* ========== MÉTODO DE PAGO EN CARRITO (estilo gourmet) ========== */
.cp-metodo-opciones {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.cp-metodo-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.781);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.877);
    transition: 0.2s;
}
.cp-metodo-btn input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
}
.cp-metodo-btn input[type="radio"]:checked {
    border-color: #ffbe0b;
    background: #ffbe0b;
    box-shadow: inset 0 0 0 4px #1c1000;
}
.cp-metodo-btn:has(input:checked) {
    background: rgba(255,190,11,0.15);
    border-color: #ffbe0b;
    color: #ffbe0b;
}
.cp-metodo-btn:hover {
    background: rgba(255,123,0,0.1);
    border-color: rgba(255,123,0,0.5);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   BADGES DE HORARIO EN PRODUCTOS
   ═══════════════════════════════════════════════ */
.horario-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}
.horario-badge.disponible {
    background: rgba(34,197,94,0.18);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
}
.horario-badge.no-disponible {
    background: rgba(255,68,68,0.15);
    color: #ff8888;
    border: 1px solid rgba(255,68,68,0.25);
}
.no-disp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    border-radius: 14px 14px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
}
.no-disp-overlay i { font-size: 28px; color: #ffbe0b; }

/* Etiqueta de categoría en card */
.menu-card-cat {
    font-size: 11px;
    font-weight: 600;
    color: #ff7b00;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 4px;
    margin-top: 10px;
}

/* Botón bloqueado */
.btn-add-carrito.btn-bloqueado {
    background: rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.35) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}
@keyframes btn-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.btn-add-carrito.btn-pulse { animation: btn-pulse 0.4s ease; }


/* ══════════════════════════════════════
   TRACKER DE PEDIDO EN VIVO
══════════════════════════════════════ */

.mc-box--tracker {
    background: #1a0d00;
    border: 1px solid rgba(255,123,0,0.3);
    color: #fff;
    max-width: 500px;
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
}

/* Fondo decorativo sutil */
.mc-box--tracker::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,123,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Fila superior: ícono + texto */
.mc-top-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.mc-box--tracker .mc-circulo {
    position: static;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    background: radial-gradient(circle, rgba(156,163,175,0.2) 0%, rgba(156,163,175,0.05) 100%);
    border: 2px solid rgba(156,163,175,0.3);
    transition: background 0.5s, border-color 0.5s;
    box-shadow: none;
}

.mc-top-texto { flex: 1; text-align: left; }
.mc-box--tracker .mc-titulo {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 4px;
    transition: color 0.4s;
}
.mc-box--tracker .mc-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
    transition: color 0.4s;
}

/* Info del pedido */
.mc-factura-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,123,0,0.15);
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.mc-fact-id strong  { color: #ffbe0b; }
.mc-fact-total .mc-total { color: #4ade80; }
.mc-factura-info span { display: flex; align-items: center; gap: 6px; }

/* ── TRACKER de pasos ── */
.mc-tracker {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
    padding: 0 4px;
}

.mct-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    opacity: 0.4;
    transition: opacity 0.4s, transform 0.4s;
}
.mct-step.mct-completado { opacity: 0.8; }
.mct-step.mct-activo     { opacity: 1; transform: scale(1.05); }

.mct-dot {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    transition: all 0.4s;
}
.mct-step.mct-completado .mct-dot {
    background: rgba(255,123,0,0.2);
    border-color: rgba(255,123,0,0.5);
    color: #ff7b00;
}
.mct-step.mct-activo .mct-dot {
    background: rgba(255,190,11,0.18);
    border-color: #ffbe0b;
    color: #ffbe0b;
    box-shadow: 0 0 18px rgba(255,190,11,0.4);
    animation: mct-pulse 1.8s infinite;
}
@keyframes mct-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,190,11,0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(255,190,11,0); }
}

.mct-label {
    font-size: 10px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.3px;
    transition: color 0.4s;
}
.mct-step.mct-activo .mct-label  { color: #ffbe0b; font-weight: 700; }
.mct-step.mct-completado .mct-label { color: rgba(255,123,0,0.8); }

/* Línea entre pasos */
.mct-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 28px;
    transition: background 0.5s;
    border-radius: 2px;
}
.mct-line--activa {
    background: linear-gradient(90deg, #ff7b00, #ffbe0b);
}

/* Banner de estado */
.mc-estado-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    transition: background 0.4s, color 0.4s;
}
.mc-banner--esperando {
    background: rgba(255,190,11,0.08);
    border: 1px solid rgba(255,190,11,0.2);
    color: rgba(255,255,255,0.65);
}
.mc-banner--delivery {
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.35);
    color: #60a5fa;
    font-size: 15px;
}

.mc-box--tracker .mc-nota {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mc-box--tracker .mc-btn {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 40px;
    padding: 11px 32px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
    display: block;
    margin: 0 auto;
}
.mc-box--tracker .mc-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
    .mc-box--tracker { padding: 28px 18px 22px; }
    .mc-top-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .mct-label { font-size: 9px; max-width: 56px; }
    .mct-dot { width: 36px; height: 36px; font-size: 14px; }
}

/* ── BOTÓN FLOTANTE MI PEDIDO (Menu.html) ── */
#btn-seg-menu {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1a0800, #2e1200);
    border: 1px solid rgba(255,190,11,0.35);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
    animation: seg-btn-in 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
#btn-seg-menu:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6);
}
#btn-seg-menu i { font-size: 16px; color: #ffbe0b; }
@keyframes seg-btn-in {
    from { opacity:0; transform: scale(0.8) translateY(20px); }
    to   { opacity:1; transform: scale(1) translateY(0); }
}
.seg-float-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #9ca3af;
    display: inline-block;
    animation: dot-blink 1.6s infinite;
    flex-shrink: 0;
    transition: background 0.4s;
}
@keyframes dot-blink {
    0%,100% { opacity:1; }
    50%      { opacity:0.3; }
}
@media (max-width: 600px) {
    #btn-seg-menu { bottom: 90px; right: 14px; padding: 10px 14px; font-size: 12px; }
}