/* ═══════════════════════════════════════════════════════════════
   base.css — Reset, variables y layout raíz
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    /* Colores */
    --color-primario:    #2563eb;
    --color-primario-h:  #1d4ed8;
    --color-fondo:       #f9fafb;
    --color-fondo-card:  #ffffff;
    --color-fondo-alt:   #f3f4f6;
    --color-texto:       #111827;
    --color-texto-2:     #374151;
    --color-texto-muted: #6b7280;
    --color-borde:       #e5e7eb;
    --color-borde-dark:  #d1d5db;
    --color-peligro:     #dc2626;

    /* Forma */
    --radio:     0.5rem;
    --radio-lg:  0.75rem;

    /* Sombras */
    --sombra-xs: 0 1px 2px rgba(0,0,0,.05);
    --sombra-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --sombra-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);

    /* Layout */
    --navbar-h:      4.25rem;
    --contenido-max: 1280px;

    /* Tipografía */
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font);
    background: var(--color-fondo);
    color: var(--color-texto);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Etiqueta de producto (compartida: tarjeta + detalle) ──────── */
.prod-etiqueta {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 3;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    pointer-events: none;
}

.prod-etiqueta--nuevo   { background: #dbeafe; color: #1d4ed8; }
.prod-etiqueta--agotado { background: #fee2e2; color: #991b1b; }
.prod-etiqueta--combo   { background: #ede9fe; color: #6d28d9; }
.prod-etiqueta--promo   { background: #fef9c3; color: #854d0e; }
.prod-etiqueta--oferta  { background: #dcfce7; color: #166534; }

.pagina {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: var(--contenido-max);
    margin: 0 auto;
    padding: 0.5rem 0.5rem 0.5rem;
    width: 100%;
}

[x-cloak] { display: none !important; }
