body { font-family: sans-serif; margin: 0; background-color: #fafafa; color: #333; }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-weight: bold; font-size: 24px; letter-spacing: 2px; cursor: pointer; }

.categorias-nav { display: flex; gap: 10px; }

.btn-cat {
    background-color: transparent;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase; 
    letter-spacing: 1.5px;     
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cat:hover, .btn-active {
    background-color: #333;
    color: white;
    border-color: #333;
}

.btn-cart {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

#ciudad-usuario {
    color: black !important;
    font-weight: bold;
    text-transform: uppercase;
}

.hero { text-align: center; padding: 50px; background: #f0ede8; }

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}


.producto {
    background: white;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    overflow: hidden; 
    position: relative;
}


.producto:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}


.producto img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: transform 0.6s ease; 
}


.producto:hover img {
    transform: scale(1.05); 
}


.producto:hover .btn-cat {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.selector-talla {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #000;
    background: white;
    font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
}

.talla-carrito {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

#carrito-panel { 
    position: fixed; 
    right: 0; 
    top: 0; 
    width: 320px; 
    height: 100%; 
    background: white; 
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
    padding: 25px; 
    display: none; 
    z-index: 2000; 
}

.btn-cerrar {
    background: #333;
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}


.container { display: flex; max-width: 1100px; margin: 50px auto; gap: 50px; padding: 20px; }
.foto-grande { width: 50%; height: auto; object-fit: cover; border-radius: 4px; }
.info { width: 50%; }
.btn-volver { cursor: pointer; background: none; border: 1px solid #333; padding: 10px 20px; margin-bottom: 20px; }
.precio { font-size: 28px; font-weight: bold; margin: 15px 0; }


.footer-zoro {
    background-color: #000; 
    color: #fff;
    padding: 60px 40px 20px 40px;
    margin-top: 80px; 
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 40px;
}

.footer-section h3.logo-footer {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section h4 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #888; 
}

.footer-section p {
    line-height: 1.6;
    color: #bbb;
    font-size: 14px;
    max-width: 300px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #888;
}

.social-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222; 
    text-align: center;
    font-size: 11px;
    color: #555;
    letter-spacing: 1px;
}


@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}