/* ===== SECCION PRODUCTOS ===== */
.productos_seccion {
    padding: 60px 20px;
    background-color: #f8f9fa;
text-align: center;
}

.productos_seccion h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.productos_seccion > p {
    color: #666;
    margin-bottom: 30px;
}

/* ===== BUSCADOR ===== */
.buscador-productos {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.buscador-productos input {
    width: 350px;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px 0 0 25px;
    font-size: 16px;
    outline: none;
}

.buscador-productos input:focus {
    border-color: #e94560;
}

.buscador-productos button {
    padding: 12px 20px;
    border: none;
    background: #e94560;
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

/* ===== FILTROS ===== */
.filtro-categoria {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.categoria-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cat {
    padding: 10px 25px;
    border: 2px solid #1a1a2e;
    background: transparent;
    color: #1a1a2e;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cat:hover,
.btn-cat.activo {
    background: #1a1a2e;
    color: white;
}

/* ===== LISTA DE PRODUCTOS ===== */
.productos-lista {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.producto {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 320px;
    text-align: left;
}

.producto:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.producto > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.producto-info {
    padding: 20px;
}

.producto-info h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.producto-info > p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.precio {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.precio span {
    font-size: 24px;
    font-weight: bold;
    color: #e94560;
}

.precio button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.precio button:hover {
    background: #e94560;
    transform: scale(1.05);
}

/* ===== BANNER COMPRA ===== */
.banner-prod {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 60px 20px;
}

.banner-prod h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #e94560;
}

.banner-prod p {
    max-width: 600px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.banner-prod button {
    padding: 14px 35px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-prod button:hover {
    background: #d63851;
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .productos_seccion {
        padding: 40px 15px;
    }
    .productos_seccion h2 {
        font-size: 28px;
    }
    .buscador-productos input {
        width: 280px;
    }
    .producto {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .productos_seccion {
        padding: 30px 10px;
    }
    .productos_seccion h2 {
        font-size: 24px;
    }
    .buscador-productos {
        flex-direction: column;
        align-items: center;
    }
    .buscador-productos input {
        width: 100%;
        max-width: 350px;
        border-radius: 25px;
        margin-bottom: 10px;
    }
    .buscador-productos button {
        border-radius: 25px;
        width: 100%;
        max-width: 350px;
    }
    .producto {
        width: 100%;
        max-width: 320px;
    }
    .banner-prod {
        padding: 40px 15px;
    }
    .banner-prod h2 {
        font-size: 24px;
    }
}
