﻿/* Estilos generales */
.productos-section {
    padding: 40px 20px;
    background-color: #0f0f13;
    min-height: 70vh;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #f0d586;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

    .section-title:after {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background: linear-gradient(to right, transparent, #f0d586, transparent);
        margin: 15px auto 0;
    }

/* Contenedor de productos */
.productos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tarjeta de producto */
.producto-card {
    background-color: #1a1a22;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #2a2a35;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .producto-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        border-color: #f0d586;
    }

/* Imagen del producto */
.producto-imagen-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.producto-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.producto-card:hover .producto-imagen {
    transform: scale(1.05);
}

.producto-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f0d586;
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Información del producto */
.producto-info {
    padding: 20px;
}

.producto-titulo {
    color: #f0d586;
    font-size: 1.3rem;
    margin: 0 0 10px 0;
}

.producto-descripcion {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 60px;
}

/* Precio */
.producto-precio {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.precio-moneda {
    color: #f0d586;
    font-size: 1rem;
    margin-right: 5px;
}

.precio-valor {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Botón */
.producto-boton {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #f0d586, #d4af37);
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .producto-boton:hover {
        background: linear-gradient(to right, #ffecb3, #f0d586);
        box-shadow: 0 5px 15px rgba(240, 213, 134, 0.4);
    }

/* Sin productos */
.no-productos {
    text-align: center;
    color: #777;
    grid-column: 1 / -1;
    padding: 60px 0;
}

/* Paginación */
.paginacion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.paginacion-btn {
    padding: 8px 20px;
    background-color: #1a1a22;
    color: #f0d586;
    border: 1px solid #f0d586;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 120px;
}

    .paginacion-btn:hover {
        background-color: #f0d586;
        color: #000;
    }

    .paginacion-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.paginacion-info {
    color: #fff;
    font-size: 1rem;
    min-width: 120px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .productos-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .paginacion-container {
        flex-direction: column;
        gap: 10px;
    }

    .paginacion-btn {
        width: 100%;
    }
}
