/*
===========================================================
WOMAN AMAZON – PREMIUM STYLE (SIN VARIABLES / SIN ERRORES)
Diseño exclusivo para la página WOMAN (page-woman.php)
=========================================================== */

/* Paleta básica por clases (sin variables) */
.woman-primary     { color: #C2478C; }
.woman-secondary   { color: #663399; }
.woman-light-bg    { background: #F3E7F7; }
.woman-dark-text   { color: #111111; }

/* ======================================
   TOP BAR PREMIUM
   ====================================== */
.woman-topbar {
    background: #F3E7F7;
    border-bottom: 2px solid #C2478C;
    padding: 14px 25px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.woman-topbar-logo {
    font-size: 26px;
    font-weight: 500;
    color: #C2478C;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Search Bar Premium */
.woman-searchbar input[type="search"] {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #C2478C;
    border-radius: 50px;
    background: #ffffff;
    font-size: 15px;
    transition: 0.3s ease;
}

.woman-searchbar input[type="search"]:focus {
    border-color: #663399;
    box-shadow: 0 0 10px rgba(194, 71, 140, 0.3);
}

/* TOPBAR LINKS */
.woman-topbar-links a {
    font-weight: 700;
    font-size: 14px;
    color: #111111;
    transition: 0.3s;
}

.woman-topbar-links a:hover {
    color: #C2478C;
}

/* ======================================
   CATEGORY STRIP
   ====================================== */
.woman-catstrip {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 25px;
    display: flex;
    gap: 35px;
    overflow-x: auto;
}

.woman-catstrip a {
    font-weight: 700;
    font-size: 15px;
    color: #111111;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
    white-space: nowrap;
}

.woman-catstrip a:hover {
    border-bottom-color: #C2478C;
    color: #C2478C;
}

/* ======================================
   HERO BANNER
   ====================================== */
.woman-hero {
    margin: 40px auto;
    max-width: 1500px;
    padding: 0 20px;
}

.woman-hero img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Títulos HERO */
.woman-hero h1 {
    margin-top: 20px;
    font-size: 38px;
    color: #111111;
    font-weight: 900;
}

.woman-hero p {
    margin-top: 10px;
    font-size: 18px;
    color: #444444;
}

/* ======================================
   SECCIONES
   ====================================== */
.woman-section {
    max-width: 1500px;
    margin: 40px auto;
    padding: 0 20px;
}

.woman-section-title {
    font-size: 26px;
    font-weight: 900;
    color: #C2478C;
    margin-bottom: 8px;
}

.woman-section-sub {
    font-size: 15px;
    color: #555555;
    margin-bottom: 20px;
}

/* ======================================
   PRODUCTOS – ESTILO AMAZON PREMIUM
   ====================================== */

/* Contenedor de la lista que genera [products] */
.woman-products-row ul.products {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 22px;
}

/* Tarjeta de producto */
.woman-products-row ul.products li.product {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 14px 14px 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;

    /* anular floats/anchos del tema padre SOLO dentro de WOMAN */
    float: none;
    width: auto;
    margin: 0;
}

/* Imagen grande y limpia */
.woman-products-row ul.products li.product a.woocommerce-LoopProduct-link img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin: 0 0 12px 0;
    transition: transform 0.25s ease;
}

/* Hover suave en imagen */
.woman-products-row ul.products li.product:hover a.woocommerce-LoopProduct-link img {
    transform: scale(1.05);
}

/* TÍTULO DEL PRODUCTO */
.woman-products-row ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
    margin: 0 0 8px 0;
    max-height: 3em;   /* ~2 líneas */
    overflow: hidden;
}

/* RATING (estrellas) */
.woman-products-row ul.products li.product .star-rating {
    margin: 0 0 6px 0;
    font-size: 12px;
}

/* PRECIO – DESTACADO */
.woman-products-row ul.products li.product .price {
    color: #663399;
    font-weight: 900;
    font-size: 16px;
    margin: 4px 0 10px 0;
}

/* Rango de precio / tachado más suave */
.woman-products-row ul.products li.product .price .from,
.woman-products-row ul.products li.product .price del {
    color: #777777;
    font-weight: 400;
    font-size: 12px;
}

/* Botón al fondo de la tarjeta */
.woman-products-row ul.products li.product .button {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    background: #C2478C;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 999px;
    padding: 8px 16px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.woman-products-row ul.products li.product .button:hover {
    background: #663399;
    transform: translateY(-1px);
}

/* Ajuste responsive en móviles */
@media (max-width: 600px) {
    .woman-products-row ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .woman-products-row ul.products li.product a.woocommerce-LoopProduct-link img {
        height: 180px;
    }
}

/* ======================================
   TRUST BLOCK
   ====================================== */
.woman-trust {
    background: #F3E7F7;
    padding: 50px 30px;
    margin-top: 60px;
    border-top: 3px solid #C2478C;
}

.woman-trust-item h3 {
    color: #C2478C;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.woman-trust-item p {
    color: #444444;
    font-size: 15px;
}
