.hero-header { 
    background: linear-gradient(135deg, #1a1e21 0%, #212529 100%); 
    color: white; 
    padding: 50px 0; 
    border-bottom: 4px solid var(--primary-color); 
    text-align: center; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.store-card { 
    border: none; 
    border-radius: 18px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    background: white; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    position: relative;
}

.store-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.08); 
}

.store-img-wrapper { 
    position: relative; 
    overflow: hidden; 
    background-color: #1a1e21;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-img { 
    height: 100%; 
    width: 100%; 
    object-fit: fill; 
    position: relative;
    z-index: 2;
    transition: filter 0.4s ease, transform 0.4s ease; 
}

.store-card.closed-store .store-img {
    filter: grayscale(100%) brightness(0.85);
}

.store-card.closed-store {
    background-color: #fcfcfc;
}

.store-status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

.status-badge-open { background-color: rgba(25, 135, 84, 0.92); color: white; }
.status-badge-closed { background-color: rgba(108, 117, 125, 0.92); color: white; }
.status-badge-closing { background-color: rgba(255, 193, 7, 0.95); color: #212529; }

.store-banner {
    width: 100%;
    height: 220px;
    object-fit: fill !important;
    background-color: #1a1e21;
}

@media (max-width: 768px) {
    .store-banner { height: 160px; max-height: 160px; }
}

.categorias-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 4px 12px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.categorias-scroll::-webkit-scrollbar { display: none; }

.btn-categoria {
    background: white;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.btn-categoria.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
}

.product-card { 
    border: 1px solid rgba(0,0,0,0.04); 
    border-radius: 16px; 
    transition: all 0.25s ease; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.02); 
    background: white; 
    padding: 16px;
    height: 100%;
}

.product-img { height: 100px; width: 100px; object-fit: cover; border-radius: 12px; }

.cart-float-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: white;
    padding: 16px 24px;
    z-index: 1040;
    box-shadow: 0 -6px 25px rgba(220, 53, 69, 0.25);
    backdrop-filter: blur(8px);
}