/**
 * Estilos públicos para Artes Galería NN
 * 
 * Desarrollado por Nuglas web
 * Web: nuglas.website
 * WhatsApp: +57 3207800393
 */

/* Estilos para la galería de arte - Diseño Profesional Masonry */
.artes-galeria-container {
    column-count: 3;
    column-gap: 20px;
    margin-bottom: 50px;
    padding: 0 10px;
}

/* Configuración de columnas para masonry */
.artes-galeria-container.columnas-1 {
    column-count: 1;
}

.artes-galeria-container.columnas-2 {
    column-count: 2;
}

.artes-galeria-container.columnas-3 {
    column-count: 3;
}

.artes-galeria-container.columnas-4 {
    column-count: 4;
}

/* Wrapper para WooCommerce */
.artes-woocommerce-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Estilos para cada item - Diseño profesional */
.arte-item {
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    display: inline-block;
    width: 100%;
}

.arte-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Imagen - Mantener proporción original */
.arte-imagen {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.arte-imagen img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.arte-item:hover .arte-imagen img {
    transform: scale(1.05);
}

/* Información del producto */
.arte-info {
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

/* Título del producto */
.arte-titulo {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    color: #000;
    font-family: 'Arial', sans-serif;
}

.arte-titulo a {
    color: #000!important;
    text-decoration: none!important;
    transition: color 0.2s ease;
}

.arte-titulo a:hover {
    color: #333;
}

/* Precio del producto */
.arte-precio {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Autor del producto */
.arte-autor {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

/* Contenedor del botón */
.arte-enlace {
    text-align: center;
    margin-top: 15px;
}

/* Botón - Diseño profesional */
.boton-ver-mas {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: #fff !important;
    text-decoration: none!important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #000;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
}

.boton-ver-mas:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.boton-ver-mas:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive Design - Masonry adaptable */
@media screen and (max-width: 1200px) {
    .artes-galeria-container.columnas-4 {
        column-count: 3;
    }
}

@media screen and (max-width: 992px) {
    .artes-galeria-container.columnas-4,
    .artes-galeria-container.columnas-3 {
        column-count: 2;
    }
    
    .arte-titulo {
        font-size: 16px;
    }
    
    .arte-precio {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .artes-galeria-container {
        column-gap: 15px;
        padding: 0 5px;
    }
    
    .arte-item {
        margin-bottom: 15px;
    }
    
    .arte-info {
        padding: 15px;
    }
}

@media screen and (max-width: 576px) {
    .artes-galeria-container.columnas-4,
    .artes-galeria-container.columnas-3,
    .artes-galeria-container.columnas-2 {
        column-count: 1;
    }
    
    .artes-woocommerce-wrapper {
        padding: 0 10px;
    }
    
    .arte-titulo {
        font-size: 16px;
    }
    
    .arte-precio {
        font-size: 18px;
    }
    
    .boton-ver-mas {
        padding: 14px 20px;
        font-size: 13px;
        color: #fff!important;
    }
}

/* Animaciones profesionales */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.arte-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Retraso escalonado para efecto masonry profesional */
.arte-item:nth-child(1) { animation-delay: 0.1s; }
.arte-item:nth-child(2) { animation-delay: 0.15s; }
.arte-item:nth-child(3) { animation-delay: 0.2s; }
.arte-item:nth-child(4) { animation-delay: 0.25s; }
.arte-item:nth-child(5) { animation-delay: 0.3s; }
.arte-item:nth-child(6) { animation-delay: 0.35s; }
.arte-item:nth-child(7) { animation-delay: 0.4s; }
.arte-item:nth-child(8) { animation-delay: 0.45s; }
.arte-item:nth-child(9) { animation-delay: 0.5s; }
.arte-item:nth-child(10) { animation-delay: 0.55s; }

/* Estilos para el botón de cargar más */
.artes-woocommerce-load-more-container {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
}

.artes-woocommerce-load-more {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.artes-woocommerce-load-more:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.artes-woocommerce-load-more:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.artes-woocommerce-load-more.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.artes-woocommerce-load-more.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading-spinner 1s linear infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Mejoras adicionales para diseño profesional */
.arte-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arte-item:hover::before {
    opacity: 1;
}

/* Estilos para mejorar la legibilidad */
.arte-titulo,
.arte-precio,
.arte-autor {
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Asegurar que las imágenes se vean completas */
.arte-imagen {
    background-color: #f8f8f8;
}

.arte-imagen img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}