/* ===== RESET Y BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
	touch-action: manipulation; 
	font-size: 16px;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f0f4f8;
    color: #1a2332;
    padding: 0 0 70px 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== SCROLL ===== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #e8edf3; }
::-webkit-scrollbar-thumb { background: #1976d3; border-radius: 4px; }

/* ===== HEADER (SOLO ESTRUCTURA BÁSICA) ===== */
#top-ad-bar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d3 100%);
    /* background-color: #1976d3; */
    color: white;
    padding: 0;
    z-index: 101;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    max-width: 480px;
    margin: 0 auto;
}
#header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 8px;
    /* color: black; */
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.btn-menu {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 8px;
    line-height: 1;
}
.btn-header-action {
    background: #25d366;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.btn-header-action:active {
    transform: scale(0.95);
}
#header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
.logo-text { font-size: 0.85rem; font-weight: 600; }
.logo-text a { color: #ffd54f; text-decoration: none; }
.logo-text-tienda { font-size: 1rem; font-weight: 600; }
#header-by {
    font-size: 0.65rem;
    opacity: 0.7;
    white-space: nowrap;
}
#header-by a { color: #ffd54f; text-decoration: none; }


/* ===== HEADER PARA LISTA-TIENDA (VERDE) ===== */
#top-ad-bar.tienda {
    /* background-color: #006d06; */
    /* background: linear-gradient(135deg, #27812e 0%, #4dac52 100%); */
	background: linear-gradient(135deg, #1976d3 0%, #0d47a1 100%);
}

#top-ad-bar.tienda .btn-menu {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

#top-ad-bar.tienda .btn-menu:active {
    background: rgba(255,255,255,0.3);
}

/* ===== FOOTER PARA LISTA-TIENDA (VERDE) ===== */
#footer-totales.tienda {
    /* background: linear-gradient(135deg, #27812e 0%, #4dac52 100%); */
	background: linear-gradient(135deg, #1976d3 0%, #0d47a1 100%);
}

#footer-totales.tienda #total-lista-items,
#footer-totales.tienda #total-lista-monto,
#footer-totales.tienda #total-carrito-items,
#footer-totales.tienda #total-carrito-monto
{
    color: #acf0af;
    
}

#btn-abrir-form.tienda {
    /* background: linear-gradient(135deg, #27812e 0%, #4dac52 100%); */
	background: linear-gradient(135deg, #1976d3 0%, #0d47a1 100%);
}