/* ===========================================
   HEADER Y NAVEGACIÓN - OSCARITO (ACTUALIZADO)
=========================================== */

header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.top-header {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 18px 40px;
}

/* BOTÓN MENÚ MÓVIL */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #111;
    cursor: pointer;
}

.logo a { text-decoration: none; }
.logo h1 {
    font-size: 34px;
    color: #111;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .3s;
}
.logo h1:hover { color: #e63946; }

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 650px;
}
.search-box input {
    width: 100%;
    height: 50px;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0 18px;
    font-size: 16px;
    outline: none;
    transition: .3s;
}
.search-box input:focus { border-color: #111; }
.search-box button {
    width: 65px;
    height: 50px;
    border: none;
    cursor: pointer;
    background: #111;
    color: #fff;
    border-radius: 0 12px 12px 0;
    font-size: 18px;
    transition: .3s;
}
.search-box button:hover { background: #e63946; }

.header-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-icons .icon-link, 
.header-icons .cart-btn {
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    transition: .3s;
    font-family: 'Poppins', sans-serif;
    position: relative;
}
.header-icons i { font-size: 22px; margin-bottom: 5px; }
.header-icons a:hover, 
.header-icons button:hover { color: #e63946; }

.badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: #e63946;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}

/* MENÚ DE NAVEGACIÓN */
.nav-menu {
    width: 100%;
    background: #111;
}
.nav-list {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
}
.nav-list li a {
    display: block;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}
.nav-list li a:hover, 
.nav-list li a.active {
    background: #e63946;
}

/* CONTENEDOR TIENDA (Filtros + Grid) */
.store-container {
    display: flex;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
    gap: 40px;
    align-items: flex-start;
}
.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.products-section {
    flex: 1;
}