/*
Theme Name: Ana Maria Velez Sorza Theme
Description: Tema personalizado para tienda de Alta Costura con acabados en dorado champán.
Author: Ana Maria
Version: 1.1
*/

body {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Letras Doradas de los títulos principales */
.gold-text {
    background: linear-gradient(to bottom, #CF995F, #F1DEAD, #D4AF37, #8A6E2F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/* Cabecera */
.site-header {
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid #333;
}

.site-title a {
    font-size: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Selector de Idiomas (Polylang) */
.lang-switcher {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin-top: 20px;
}

/* Descripción central */
.site-description {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
    font-size: 22px;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
    padding: 0 20px;
}

/* --- Galerías en Horizontal (3 Columnas) --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.gallery-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
}

.gallery-column h2 {
    font-size: 28px;
    margin-bottom: 30px;
    border-bottom: 2px solid #E5D2A0; /* Línea en dorado claro */
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- ESTILOS DE PRODUCTOS (Elimina el azul y pone Dorado Claro) --- */

/* Títulos de los productos - Dorado Champán Claro */
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product a {
    color: #E5D2A0 !important; 
    text-decoration: none !important;
    font-weight: 300;
}

/* Color al pasar el ratón por el título */
.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title {
    color: #ffffff !important;
}

/* Precios en Blanco */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price bdi {
    color: #ffffff !important;
    font-weight: 400;
}

/* Botón "Leer más" - Minimalista Dorado Claro */
.woocommerce ul.products li.product .button {
    background-color: transparent !important;
    color: #E5D2A0 !important;
    border: 1px solid #E5D2A0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    border-radius: 0; /* Bordes rectos más elegantes */
}

.woocommerce ul.products li.product .button:hover {
    background-color: #E5D2A0 !important;
    color: #111111 !important;
}

/* --- Ajustes Finales --- */

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #333;
    margin-top: 60px;
    font-size: 14px;
    color: #888;
}