@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --negro: #1a1008;
    --naranja: #ff7b00;
    --blanco: #ffffff;
    --rojo: #e63946;
    --amarillo: #ffbe0b;
    --naranja-suave: rgba(255,123,0,0.12);
    --borde: rgba(255,123,0,0.2);
    --texto-apagado: rgba(255,255,255,0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    background-color: var(--negro);
    color: var(--blanco);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* ─── PARTÍCULAS DE FONDO ─── */
.bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 18s infinite ease-in-out;
}
.bg-particles span:nth-child(1)  { width:6px;  height:6px;  background:#ff7b00; top:15%; left:10%; animation-delay:0s;   animation-duration:20s; }
.bg-particles span:nth-child(2)  { width:4px;  height:4px;  background:#ffbe0b; top:40%; left:80%; animation-delay:3s;   animation-duration:16s; }
.bg-particles span:nth-child(3)  { width:8px;  height:8px;  background:#ff7b0044; top:70%; left:25%; animation-delay:6s;   animation-duration:22s; }
.bg-particles span:nth-child(4)  { width:3px;  height:3px;  background:#ffbe0b; top:85%; left:60%; animation-delay:1s;   animation-duration:14s; }
.bg-particles span:nth-child(5)  { width:5px;  height:5px;  background:#ff7b00; top:25%; left:55%; animation-delay:9s;   animation-duration:18s; }
.bg-particles span:nth-child(6)  { width:6px;  height:6px;  background:#ffbe0b44; top:60%; left:90%; animation-delay:4s;   animation-duration:25s; }
.bg-particles span:nth-child(7)  { width:4px;  height:4px;  background:#ff7b00; top:5%;  left:40%; animation-delay:7s;   animation-duration:19s; }
.bg-particles span:nth-child(8)  { width:7px;  height:7px;  background:#ffbe0b; top:90%; left:15%; animation-delay:2s;   animation-duration:23s; }
.bg-particles span:nth-child(9)  { width:3px;  height:3px;  background:#ff7b00; top:50%; left:5%;  animation-delay:11s;  animation-duration:17s; }
.bg-particles span:nth-child(10) { width:5px;  height:5px;  background:#ffbe0b; top:35%; left:95%; animation-delay:5s;   animation-duration:21s; }

@keyframes float-particle {
    0%   { opacity:0; transform: translateY(0) scale(0.5); }
    15%  { opacity:0.7; }
    85%  { opacity:0.4; }
    100% { opacity:0; transform: translateY(-120px) scale(1.2); }
}

/* ─── HEADER ─── */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(15, 8, 0, 0.85);
    border-bottom: 1px solid var(--borde);
    position: sticky;
    top: 0;
    z-index: 500;
    backdrop-filter: blur(16px);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-logo h1 {
    color: var(--blanco);
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.logo-icon {
    font-size: 28px;
    color: var(--amarillo);
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
nav a {
    padding: 8px 18px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.25s ease;
}
nav a:hover {
    color: var(--amarillo);
    background: rgba(255,190,11,0.08);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    text-align: center;
    padding: 110px 20px 120px;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,123,0,0.18) 0%, transparent 70%),
                linear-gradient(160deg, #100600 0%, #1e0d00 50%, #0e0800 100%);
    overflow: hidden;
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(255,190,11,0.35);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffbe0b;
    margin-bottom: 28px;
    background: rgba(255,190,11,0.06);
    animation: fade-down 0.8s ease both;
}
@keyframes fade-down {
    from { opacity:0; transform:translateY(-16px); }
    to   { opacity:1; transform:translateY(0); }
}
.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 76px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fade-up 0.9s 0.1s ease both;
}
.hero h2 em {
    font-style: italic;
    color: var(--amarillo);
}
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 44px;
    animation: fade-up 0.9s 0.2s ease both;
}
@keyframes fade-up {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 0.9s 0.3s ease both;
}
.btn {
    display: inline-block;
    padding: 15px 38px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(255,123,0,0.4);
}
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255,123,0,0.55);
}
.btn-ghost {
    display: inline-block;
    padding: 15px 38px;
    background: transparent;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}
.btn-ghost:hover {
    border-color: rgba(255,190,11,0.4);
    color: var(--amarillo);
    transform: translateY(-4px);
    background: rgba(255,190,11,0.05);
}
.hero-decoration { position:absolute; inset:0; pointer-events:none; z-index:1; }
.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,123,0,0.1);
}
.c1 { width:500px; height:500px; top:-180px; right:-150px; animation: spin-slow 30s linear infinite; }
.c2 { width:320px; height:320px; bottom:-100px; left:-100px; animation: spin-slow 22s linear infinite reverse; border-color:rgba(255,190,11,0.08); }
.c3 { width:200px; height:200px; top:40%; left:8%; animation: spin-slow 18s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ─── STATS BAR ─── */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 36px 40px;
    background: rgba(255,123,0,0.06);
    border-top: 1px solid var(--borde);
    border-bottom: 1px solid var(--borde);
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 50px;
}
.stat-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--amarillo);
}
.stat-item span {
    font-size: 12px;
    color: var(--texto-apagado);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--borde);
}

/* ─── SECCIÓN MENÚ ─── */
.productos {
    padding: 90px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.section-header {
    margin-bottom: 56px;
}
.section-tag {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--naranja);
    margin-bottom: 12px;
}
.productos h2, .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-sub {
    font-size: 15px;
    color: var(--texto-apagado);
    font-weight: 300;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 0;
}
.card {
    background: linear-gradient(145deg, #1f1208, #170d04);
    border: 1px solid var(--borde);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: left;
}
.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,123,0,0.45);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,123,0,0.15);
}
.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    background: rgba(255,123,0,0.9);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.card-body {
    padding: 20px;
}
.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--amarillo);
    margin-bottom: 6px;
}
.card p {
    font-size: 13px;
    color: var(--texto-apagado);
    margin-bottom: 16px;
    line-height: 1.5;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--naranja);
    font-family: 'Cormorant Garamond', serif;
}
.card-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.card-btn:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, #ff8c00, #ffd000);
    box-shadow: 0 6px 18px rgba(255,123,0,0.4);
}
.menu-cta {
    margin-top: 52px;
    text-align: center;
}
.btn-ordenar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(255,123,0,0.35);
}
.btn-ordenar:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255,123,0,0.5);
}

/* ─── OFERTAS ─── */
.ofertas {
    padding: 80px 40px;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,123,0,0.15) 0%, transparent 70%),
                linear-gradient(135deg, #1e0900, #2a1000, #1a0700);
    text-align: center;
    border-top: 1px solid var(--borde);
    border-bottom: 1px solid var(--borde);
}
.ofertas-inner { max-width: 700px; margin: 0 auto; }
.ofertas h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 36px;
}
.ofertas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.oferta-card {
    background: rgba(255,123,0,0.08);
    border: 1px solid rgba(255,123,0,0.25);
    border-radius: 18px;
    padding: 28px 20px;
    transition: all 0.3s ease;
}
.oferta-card:hover {
    background: rgba(255,123,0,0.14);
    transform: translateY(-4px);
}
.oferta-card strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--amarillo);
}
.oferta-card p {
    font-size: 14px;
    color: var(--texto-apagado);
}

/* ─── AUTH SECTION ─── */
.auth-section {
    padding: 90px 40px;
    background: #1c0e00;
    position: relative;
    z-index: 1;
}
.auth-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.auth-avatar-wrap {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.auth-avatar {
    position: relative;
    width: 130px;
    height: 130px;
}
.avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(255,123,0,0.35);
    animation: girar-ring 12s linear infinite;
}
@keyframes girar-ring { to { transform: rotate(360deg); } }
.avatar-circulo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a1400, #3d1e00);
    border: 2px solid rgba(255,123,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-icono-vacio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.2);
}
.avatar-icono-vacio i { font-size: 44px; }
.avatar-iniciales-txt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffbe0b;
    display: none;
}
.avatar-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid #1c0e00;
    display: none;
}
.avatar-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.auth-divisor {
    width: 1px;
    height: 160px;
    background: linear-gradient(to bottom, transparent, rgba(255,123,0,0.4), transparent);
}
.auth-content { flex: 1; }
.auth-guest-content .auth-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 4px;
}
.auth-guest-content .auth-titulo span { color: #ffbe0b; }
.auth-guest-content .auth-subtitulo {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}
.auth-botones-grupo {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-registro-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-registro-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255,123,0,0.5);
}
.btn-login-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.18);
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-login-main:hover {
    border-color: rgba(255,190,11,0.5);
    color: #ffbe0b;
    transform: translateY(-3px);
}
.auth-logged-content {
    display: none;
    flex-direction: column;
    gap: 6px;
}
.logged-bienvenida {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff7b00;
}
.logged-nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}
.logged-nombre em { color: #ffbe0b; }
.logged-subtexto {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 22px;
}
.logged-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.logged-badge {
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,123,0,0.1);
    border: 1px solid rgba(255,123,0,0.3);
    color: #ffbe0b;
}
.btn-cerrar-sesion {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    padding: 9px 20px;
    background: transparent;
    color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}
.btn-cerrar-sesion:hover {
    background: rgba(220,50,50,0.08);
    border-color: rgba(220,80,80,0.35);
    color: #ff7070;
}
.auth-avatar-wrap.logueado .avatar-icono-vacio { display: none; }
.auth-avatar-wrap.logueado .avatar-iniciales-txt { display: block; }
.auth-avatar-wrap.logueado .avatar-dot { display: block; }
.auth-avatar-wrap.logueado .avatar-label { color: rgba(255,190,11,0.5); }
.auth-logged-content.entrando {
    animation: entrar-contenido 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes entrar-contenido {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ─── FOOTER ─── */
.footer {
    background: #0e0700;
    color: #e2cfbc;
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255,123,0,0.15);
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0 40px;
}
.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f3e2cf;
}
.footer-social a {
    color: #e2cfbc;
    font-size: 1.5rem;
    margin: 0 12px;
    transition: 0.25s;
}
.footer-social a:hover {
    color: var(--amarillo);
    transform: translateY(-3px);
}
.footer-copy p { font-size: 0.8rem; opacity: 0.7; }

/* ─── MODALES LOGIN/REGISTRO ─── */
.login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-login-box {
    max-width: 95%;
    width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 28px;
    background: #1e1000;
    margin: 0 auto;
}
.modal-login-header {
    background: linear-gradient(135deg, #2a1200 0%, #1a0900 100%);
    border-bottom: 1px solid rgba(255,123,0,0.15);
    padding: 36px 36px 28px;
    text-align: center;
    position: relative;
}
.modal-login-icono {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,123,0,0.4);
}
.modal-login-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}
.modal-login-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}
.cerrar, .cerrar-login {
    color: rgba(255,255,255,0.4);
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 24px;
    transition: color 0.2s, transform 0.2s;
}
.cerrar:hover, .cerrar-login:hover {
    color: #ff7b00;
    transform: rotate(90deg);
}
.modal-login-form {
    padding: 28px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ml-input-box {
    position: relative;
    margin-bottom: 16px;
}
.modal-login-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    outline: none;
    padding: 10px 38px 10px 38px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
}
.modal-login-form input:focus {
    border-bottom: 2px solid #ffa931;
}
.modal-login-form input::placeholder {
    color: rgba(255,255,255,0.35);
}
.ml-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 15px;
}
.ml-toggle-pass {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.25);
    cursor: pointer;
}
.ml-error-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 50, 50, 0.1);
    border: 1px solid rgba(220, 50, 50, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ff7070;
    font-size: 14px;
    margin-bottom: 4px;
}
.ml-btn-entrar {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}
.ml-btn-entrar:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(255,123,0,0.5); }
.ml-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.2);
    font-size: 12px;
    margin: 8px 0;
}
.ml-divider::before, .ml-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.btn-google, .ml-btn-google {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-google:hover, .ml-btn-google:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.cambiar-modo, .ml-cambiar {
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.cambiar-modo span, .ml-cambiar span {
    color: #ffa931;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}
/* Overlay blur */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
body.blur-activo::before { opacity: 1; pointer-events: all; }

/* ========== ESTILOS DEL CARRITO (unificados) ========== */
.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, #ff7b00, #ffbe0b);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 14px rgba(255,123,0,0.3);
}
.btn-add-carrito:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,123,0,0.45);
}
#carrito-icono {
    position: relative;
    background: rgba(255,123,0,0.12);
    border: 1.5px solid rgba(255,123,0,0.35);
    color: #ff7b00;
    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;
}
.carrito-badge, .carrito-badge-flotante {
    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;
}
#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;
}
#carrito-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 95vw;
    height: 100vh;
    background: #1c1000;
    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); }
.cp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 18px;
    border-bottom: 1.5px solid rgba(255,123,0,0.2);
    background: linear-gradient(135deg, #2a1200, #1a0900);
    color: #fff;
    flex-shrink: 0;
}
.cp-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    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;
}
.cp-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cp-vacio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #b48c48;
    text-align: center;
    padding: 40px 20px;
}
.cp-item {
    background: #2a1a0a;
    border: 1px solid rgba(255,123,0,0.2);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cp-item-info {
    display: flex;
    justify-content: space-between;
}
.cp-item-nombre {
    font-weight: 600;
    color: var(--amarillo);
    font-family: 'Cormorant Garamond', serif;
}
.cp-item-precio { font-size: 12px; color: var(--texto-apagado); }
.cp-item-controles {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cp-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,123,0,0.4);
    background: rgba(255,123,0,0.1);
    color: #ffbe0b;
    cursor: pointer;
}
.cp-qty { font-size: 16px; font-weight: 700; color: #fff; min-width: 24px; text-align: center; }
.cp-eliminar {
    margin-left: auto;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
}
.cp-item-subtotal {
    font-size: 16px;
    font-weight: 700;
    color: #ffbe0b;
    text-align: right;
}
.cp-footer {
    flex-shrink: 0;
    border-top: 1.5px solid rgba(255,123,0,0.2);
    padding: 20px 20px 28px;
    background: #1c1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cp-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    color: rgba(255,255,255,0.7);
}
.cp-total-row strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #ffbe0b;
}
.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.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: 0.2s;
}
.cp-metodo-btn input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0;
    position: relative;
}
.cp-metodo-btn input[type="radio"]:checked {
    border-color: #ffbe0b;
    background: #ffbe0b;
    box-shadow: inset 0 0 0 3px #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.4);
}
.cp-btn-comprar {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    color: #1a0a00;
    border: none;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#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);
}
.carrito-mini-total {
    font-size: 13px;
    font-weight: 700;
}
.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;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.35s;
    pointer-events: none;
}
.cg-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* Tabs de categorías y badges de horario */
.cats-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    justify-content: center;
}
.cat-tab {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1.5px solid rgba(255,190,11,0.3);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    cursor: pointer;
}
.cat-tab.activa {
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    border-color: transparent;
    color: #1a0a00;
}
.horario-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.horario-badge.disponible {
    background: rgba(34,197,94,0.18);
    color: #22c55e;
}
.horario-badge.no-disponible {
    background: rgba(255,68,68,0.15);
    color: #ff8888;
}
.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: white;
}
.menu-card-cat {
    font-size: 11px;
    font-weight: 600;
    color: #ff7b00;
    text-transform: uppercase;
    margin-bottom: 4px;
    margin-top: 10px;
}
/* Modal de confirmación */
#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;
}
#modal-confirmacion.visible { opacity: 1; }
.mc-box {
    background: #1c1000;
    border-radius: 28px;
    padding: 44px 36px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255,123,0,0.3);
}
.mc-circulo {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
}
.mc-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--amarillo);
}
.mc-detalle {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 18px 20px;
    margin: 20px 0;
}
.mc-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.7);
}
.mc-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff7b00, #ffbe0b);
    border: none;
    border-radius: 40px;
    color: #1a0a00;
    font-weight: 700;
    cursor: pointer;
}
/* Responsive */
@media (max-width: 768px) {
    header { padding: 14px 20px; }
    .hero { padding: 80px 20px 90px; }
    .stats-bar { flex-direction: column; gap: 20px; }
    .stat-divider { display: none; }
    .productos { padding: 60px 20px; }
    .grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .ofertas-grid { grid-template-columns: 1fr; }
    .auth-wrapper { flex-direction: column; gap: 30px; text-align: center; }
    .auth-divisor { width: 120px; height: 1px; }
    .footer-flex { flex-direction: column; text-align: center; }
    #carrito-panel { width: 100vw; }
}
@media (max-width: 480px) {
    .grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════
   TRACKER DE PEDIDO EN VIVO (index)
══════════════════════════════════════ */

.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;
}
.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;
}
.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);
    box-shadow: none;
    transition: background 0.5s, border-color 0.5s;
}
.mc-top-texto { flex: 1; text-align: left; }
.mc-box--tracker .mc-titulo {
    font-size: 22px;
    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;
}
.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; }
.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); }
.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); }
.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;
}
.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;
    transition: 0.2s;
    display: block;
    margin: 0 auto;
}
.mc-box--tracker .mc-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
@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; }
}

/* ══════════════════════════════════════
   SECCIÓN SEGUIMIENTO DE PEDIDO
══════════════════════════════════════ */

.seguimiento-section {
    padding: 80px 20px;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,123,0,0.06) 0%, transparent 70%);
    border-top: 1px solid rgba(255,123,0,0.12);
}

.seg-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.seg-header {
    text-align: center;
    margin-bottom: 36px;
}
.seg-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.seg-header h2 {
    font-size: clamp(28px, 5vw, 44px);
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    margin-bottom: 8px;
}
.seg-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
}

/* Card */
.seg-card {
    background: rgba(28,16,0,0.9);
    border: 1px solid rgba(255,123,0,0.2);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.seg-card::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,123,0,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Top row */
.seg-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}
.seg-icon-wrap {
    width: 66px; height: 66px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156,163,175,0.2) 0%, transparent 70%);
    border: 2px solid rgba(156,163,175,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: background 0.5s, border-color 0.5s;
}
.seg-card-info { flex: 1; }
.seg-estado-label {
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color 0.4s;
}
.seg-estado-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}
.seg-pedido-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.seg-pedido-meta span:last-child { color: #4ade80; font-weight: 600; }

/* Tracker steps */
.seg-tracker {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 4px;
}
.seg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    opacity: 0.35;
    transition: opacity 0.4s, transform 0.3s;
}
.seg-step--done    { opacity: 0.75; }
.seg-step--activo  { opacity: 1; transform: scale(1.06); }

.seg-step-dot {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: rgba(255,255,255,0.35);
    transition: all 0.4s;
}
.seg-step--done .seg-step-dot {
    background: rgba(255,123,0,0.18);
    border-color: rgba(255,123,0,0.45);
    color: #ff7b00;
}
.seg-step--activo .seg-step-dot {
    background: rgba(255,190,11,0.16);
    border-color: #ffbe0b;
    color: #ffbe0b;
    box-shadow: 0 0 20px rgba(255,190,11,0.35);
    animation: seg-pulse 1.8s infinite;
}
@keyframes seg-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,190,11,0.4); }
    50%      { box-shadow: 0 0 0 9px rgba(255,190,11,0); }
}
.seg-step span {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    transition: color 0.4s;
    letter-spacing: 0.3px;
}
.seg-step--activo span { color: #ffbe0b; font-weight: 700; }
.seg-step--done  span  { color: rgba(255,123,0,0.75); }

.seg-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 30px;
    border-radius: 2px;
    transition: background 0.5s;
}
.seg-line--activa { background: linear-gradient(90deg, #ff7b00, #ffbe0b); }

/* Banner */
.seg-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s;
}
.seg-banner--vivo {
    background: rgba(255,190,11,0.07);
    border: 1px solid rgba(255,190,11,0.18);
    color: rgba(255,255,255,0.55);
}
.seg-banner--delivery {
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.35);
    color: #60a5fa;
    font-size: 16px;
}

/* ── BOTÓN FLOTANTE MI PEDIDO ── */
#btn-seguimiento-flotante,
#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, #1a0d00, #2a1800);
    border: 1px solid rgba(255,123,0,0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,123,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'DM Sans', sans-serif;
    animation: seg-btn-in 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
#btn-seguimiento-flotante:hover,
#btn-seg-menu:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,123,0,0.25);
}
#btn-seguimiento-flotante i,
#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; }
}

/* Nav link Mi Pedido */
#nav-seguimiento {
    color: #ffbe0b !important;
    font-weight: 600;
}
#nav-seguimiento i { margin-right: 4px; }

@media (max-width: 600px) {
    .seg-card { padding: 22px 16px; }
    .seg-card-top { flex-direction: column; align-items: flex-start; gap: 14px; }
    .seg-step span { font-size: 9px; max-width: 54px; overflow: hidden; text-overflow: ellipsis; }
    .seg-step-dot { width: 36px; height: 36px; font-size: 14px; }
    #btn-seguimiento-flotante, #btn-seg-menu { bottom: 90px; right: 14px; padding: 10px 16px; font-size: 13px; }
}