/* Estilos adicionales para corregir las miniaturas en subcategorias.php y otras páginas */

/* Ajuste de tamaño y formato para miniaturas de producto */
.item-producto.polaroid {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 18px 0 rgba(70,70,90,0.12), 0 7px 34px #ff660010;
    width: 264px;
    height: 344px;
    margin: 12px;
    padding: 15px 15px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 1.5px solid #f3f3f3;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}

.item-producto.polaroid:hover {
    box-shadow: 0 14px 36px rgba(0,0,0,0.15);
    transform: translateY(-5px) rotate(-0.5deg);
}

/* Ajuste para las imágenes */
.item-producto.polaroid img {
    width: 230px;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    background: #f6f6f7;
    margin: 0 0 12px 0;
    box-shadow: 0 2px 7px #e8e8e8;
    border: 2px solid #fff;
    display: block;
}

/* Ajuste para el texto del nombre de producto */
.item-producto.polaroid .nombre-producto {
    font-size: 1.05em;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.01em;
    text-align: center;
    background: none;
    margin: 0;
    padding: 8px 5px;
    min-height: 20px;
    max-width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.2;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .galeria-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
    }
    
    .item-producto.polaroid {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1.2;
        padding: 10px 10px 18px;
        margin: 0;
    }
    
    .item-producto.polaroid img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        margin-bottom: 8px;
    }
    
    .item-producto.polaroid .nombre-producto {
        font-size: 0.9em;
        padding: 5px 2px;
    }
}

/* Ajuste para la visualización específica en subcategorias.php */
body .galeria-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}