/*
Theme Name: Golden Phoenix V118 ESTILOS FORZADOS
Theme URI: https://agenciaredlab.com
Author: Agencia RedLab
Description: V118 - MINIMAL DEBUG FORZADO: Añadido wp_enqueue_style para asegurar carga correcta del CSS. 43 módulos funcionando + Logging activo + Constantes definidas + Theme Builder desactivado.
Version: 118.0.0
Text Domain: golden-phoenix-v110
Tags: luxury, jewelry, css-fixed, fully-functional
*/

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
    font-family: 'Lato', 'Arial', sans-serif;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #B8941F;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   LAYOUT PRINCIPAL
   ============================================ */
.site-header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2rem;
    color: #D4AF37;
    font-weight: 700;
}

.site-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 60vh;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.main-navigation {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.main-navigation a:hover,
.main-navigation a.current {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

/* ============================================
   BOTONES
   ============================================ */
.btn, .button {
    display: inline-block;
    padding: 12px 30px;
    background: #D4AF37;
    color: #1a1a1a !important;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover, .button:hover {
    background: #B8941F;
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ============================================
   PRODUCTOS WOOCOMMERCE
   ============================================ */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #D4AF37;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.woocommerce ul.products li.product .price {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
}
