:root {
    --luxe-bg: #0f0f0f;
    --luxe-bg-soft: #171717;
    --luxe-surface: #1d1d1d;
    --luxe-gold: #c8a15a;
    --luxe-gold-soft: #e0bf7a;
    --luxe-text: #f5f1e8;
    --luxe-text-soft: #cfc7b8;
    --luxe-border: rgba(200, 161, 90, 0.35);
    --luxe-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --luxe-radius: 10px;
    --luxe-container: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--luxe-bg);
    color: var(--luxe-text);
}

body,
button,
input,
select,
textarea {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--luxe-text);
    line-height: 1.1;
    margin-top: 0;
}

p {
    color: var(--luxe-text-soft);
}

a {
    color: var(--luxe-gold);
    text-decoration: none;
}

a:hover {
    color: var(--luxe-gold-soft);
}

.site,
.ast-site-identity,
.main-header-bar,
.ast-primary-header-bar,
.ast-desktop .main-header-menu > .menu-item > a {
    color: var(--luxe-text);
}

.luxe-container {
    width: min(100% - 32px, var(--luxe-container));
    margin-inline: auto;
}

.luxe-section {
    padding: 72px 0;
}

.luxe-section-title {
    text-align: center;
    margin-bottom: 28px;
}

.luxe-section-title__eyebrow {
    display: inline-block;
    color: var(--luxe-gold);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.luxe-section-title h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.luxe-section-title p {
    max-width: 700px;
    margin: 0 auto;
}

.luxe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid var(--luxe-gold);
    border-radius: 4px;
    background: linear-gradient(180deg, #ddb86e 0%, #b4873d 100%);
    color: #111;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--luxe-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.luxe-btn:hover {
    color: #111;
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.luxe-btn--ghost {
    background: transparent;
    color: var(--luxe-gold);
}

.luxe-btn--ghost:hover {
    color: var(--luxe-gold-soft);
}

@media (max-width: 767px) {
    .luxe-section {
        padding: 56px 0;
    }
}

/* ======================================================
   PÁGINAS INTERNAS / CONTENIDO GENERAL
   Corrige fondo blanco, alineación y lectura
   ====================================================== */

body.page:not(.woocommerce-page) {
    background: #0b0b0b;
}

body.page:not(.woocommerce-page) .site,
body.page:not(.woocommerce-page) .site-content,
body.page:not(.woocommerce-page) .content-area,
body.page:not(.woocommerce-page) .site-main,
body.page:not(.woocommerce-page) .entry-content,
body.page:not(.woocommerce-page) .ast-container,
body.page:not(.woocommerce-page) article,
body.page:not(.woocommerce-page) .post,
body.page:not(.woocommerce-page) .page {
    background: transparent;
}

body.page:not(.woocommerce-page) .entry-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 32px 72px;
    color: #e6dccb;
    line-height: 1.8;
}

body.page:not(.woocommerce-page) .entry-content > *:first-child {
    margin-top: 0;
}

body.page:not(.woocommerce-page) .entry-content h1,
body.page:not(.woocommerce-page) .entry-content h2,
body.page:not(.woocommerce-page) .entry-content h3,
body.page:not(.woocommerce-page) .entry-content h4 {
    color: #d9b45f;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
}

body.page:not(.woocommerce-page) .entry-content h1 {
    font-size: clamp(2.2rem, 4.8vw, 4rem);
}

body.page:not(.woocommerce-page) .entry-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin-top: 40px;
}

body.page:not(.woocommerce-page) .entry-content h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    margin-top: 30px;
}

body.page:not(.woocommerce-page) .entry-content p,
body.page:not(.woocommerce-page) .entry-content li {
    color: #ddd3c3;
    font-size: 1.04rem;
}

body.page:not(.woocommerce-page) .entry-content p {
    margin: 0 0 20px;
}

body.page:not(.woocommerce-page) .entry-content ul,
body.page:not(.woocommerce-page) .entry-content ol {
    margin: 0 0 24px 22px;
    padding: 0;
}

body.page:not(.woocommerce-page) .entry-content li {
    margin-bottom: 10px;
}

body.page:not(.woocommerce-page) .entry-content strong {
    color: #f0ddb0;
}

body.page:not(.woocommerce-page) .entry-content a {
    color: #d9b45f;
}

body.page:not(.woocommerce-page) .entry-content a:hover {
    color: #f0ddb0;
}

/* ======================================================
   MÓVIL
   ====================================================== */

@media (max-width: 768px) {
    body.page:not(.woocommerce-page) .entry-content {
        padding: 26px 18px 48px;
    }

    body.page:not(.woocommerce-page) .entry-content h1 {
        font-size: clamp(1.9rem, 8.2vw, 2.8rem);
        line-height: 1.08;
    }

    body.page:not(.woocommerce-page) .entry-content h2 {
        font-size: clamp(1.45rem, 6vw, 2rem);
        margin-top: 30px;
        margin-bottom: 16px;
    }

    body.page:not(.woocommerce-page) .entry-content h3 {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
    }

    body.page:not(.woocommerce-page) .entry-content p,
    body.page:not(.woocommerce-page) .entry-content li {
        font-size: 0.98rem;
        line-height: 1.75;
    }
}

/*
======================================================
FOOTER LUXE
Añadir al final de custom.css
======================================================
*/

.luxe-footer {
    margin-top: 0;
    border-top: 1px solid var(--luxe-border, rgba(200, 161, 90, 0.35));
    background:
        radial-gradient(circle at top center, rgba(200, 161, 90, 0.08), transparent 30%),
        linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
}

.luxe-footer__top {
    padding: 46px 0 30px;
}

.luxe-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.luxe-footer__brand {
    max-width: 360px;
}

.luxe-footer__title {
    margin: 0 0 12px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--luxe-gold, #c8a15a);
}

.luxe-footer__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--luxe-text-soft, #cfc7b8);
}

.luxe-footer__heading {
    margin: 0 0 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--luxe-text, #f5f1e8);
}

.luxe-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.luxe-footer__links li + li {
    margin-top: 10px;
}

.luxe-footer__links a {
    color: #ddd4c6;
    font-size: 0.95rem;
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
}

.luxe-footer__links a:hover {
    color: var(--luxe-gold-soft, #e0bf7a);
}

.luxe-footer__bottom {
    border-top: 1px solid rgba(200, 161, 90, 0.18);
    padding: 14px 0;
}

.luxe-footer__bottom-inner {
    display: flex;
    gap: 16px 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.luxe-footer__meta {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(245, 241, 232, 0.72);
}

.luxe-footer__meta--right {
    text-align: right;
}

@media (max-width: 921px) {
    .luxe-footer__top {
        padding: 38px 0 24px;
    }

    .luxe-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
    }

    .luxe-footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .luxe-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .luxe-footer__meta--right {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .luxe-footer__top {
        padding: 32px 0 18px;
    }

    .luxe-footer__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .luxe-footer__heading {
        margin-bottom: 10px;
    }

    .luxe-footer__links li + li {
        margin-top: 8px;
    }

    .luxe-footer__links a,
    .luxe-footer__text {
        font-size: 0.92rem;
    }

    .luxe-footer__bottom {
        padding: 12px 0;
    }

    .luxe-footer__meta {
        font-size: 0.76rem;
    }
}

/* ======================================================
   MENÚ MÓVIL - separa bloque de navegación del header
   ====================================================== */

.ast-header-break-point .main-header-menu {
    padding-top: 14px !important;
}

/* ======================================================
   BLOG / PÁGINA DE ENTRADAS
   ====================================================== */

body.blog,
body.home.blog,
body.archive.category,
body.archive.tag {
    background: #0b0b0b;
}

.luxe-blog {
    background: #0b0b0b;
    padding: 48px 0 72px;
}

.luxe-blog__header {
    margin-bottom: 28px;
}

.luxe-blog__title {
    margin: 0;
    color: #f5f1e8;
}

.luxe-blog__grid {
    display: grid;
    gap: 24px;
}

.luxe-blog__item {
    padding: 24px;
    border: 1px solid rgba(200, 161, 90, 0.18);
    background: #111;
}

.luxe-blog__item-title,
.luxe-blog__item-title a {
    color: #f5f1e8;
}

.luxe-blog__excerpt,
.luxe-blog__excerpt p {
    color: #cfc7b8;
}

.luxe-blog__item,
.luxe-blog__item.post,
.luxe-blog__item.type-post {
    background: #111 !important;
    border: 1px solid rgba(200, 161, 90, 0.18);
}

.luxe-blog__item .entry-content,
.luxe-blog__item .post-content,
.luxe-blog__item .entry-summary,
.luxe-blog__item .ast-blog-single-element,
.luxe-blog__item p,
.luxe-blog__item div {
    background: transparent !important;
    color: #cfc7b8;
}

.luxe-blog__item a {
    color: #f5f1e8;
}

/* ======================================================
   SINGLE POST / ARTÍCULO INDIVIDUAL
   ====================================================== */

body.single-post {
    background: #0b0b0b;
}

body.single-post .site,
body.single-post .site-content,
body.single-post .content-area,
body.single-post .site-main,
body.single-post .ast-container,
body.single-post article,
body.single-post .post,
body.single-post .entry-content {
    background: transparent !important;
}

body.single-post .ast-container {
    padding-top: 32px;
    padding-bottom: 56px;
}

body.single-post article {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}

body.single-post .entry-title,
body.single-post h1,
body.single-post h2,
body.single-post h3,
body.single-post h4 {
    color: #f5f1e8;
}

body.single-post .entry-content,
body.single-post .entry-content p,
body.single-post .entry-content li {
    color: #d8cfbf;
}

body.single-post .entry-meta,
body.single-post .posted-on,
body.single-post .byline {
    color: #b9ae99;
}

body.single-post .entry-content a {
    color: #d9b45f;
}

body.single-post .entry-content strong {
    color: #f0ddb0;
}

/* ======================================================
   SINGLE POST - ocultar meta (autor, fecha, etc)
   ====================================================== */

body.single-post .entry-meta,
body.single-post .posted-on,
body.single-post .byline,
body.single-post .cat-links,
body.single-post .tags-links {
    display: none !important;
}

/* ======================================================
   FORMULARIOS - texto visible en fondo oscuro
   ====================================================== */

body .wpforms-container .wpforms-field-label,
body .wpforms-container label,
body .wpforms-container legend,
body .wpforms-container input::placeholder,
body .wpforms-container textarea::placeholder {
    color: #d8cfbf !important;
}

body .wpforms-container input,
body .wpforms-container textarea,
body .wpforms-container select {
    background: #111 !important;
    color: #f5f1e8 !important;
    border: 1px solid rgba(200, 161, 90, 0.25) !important;
}

body .wpforms-container input:focus,
body .wpforms-container textarea:focus,
body .wpforms-container select:focus {
    border-color: #c8a15a !important;
    box-shadow: 0 0 0 1px rgba(200, 161, 90, 0.18) !important;
}

body .wpforms-container .wpforms-field-sublabel {
    color: #9f978a !important;
}

/* ======================================================
   BOTÓN FORMULARIO (WPForms)
   ====================================================== */

body .wpforms-container .wpforms-submit {
    background: linear-gradient(180deg, #ddb86e 0%, #b4873d 100%) !important;
    color: #111 !important;
    border: 1px solid #c8a15a !important;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body .wpforms-container .wpforms-submit:hover {
    background: linear-gradient(180deg, #e6c57a 0%, #c79a4d 100%) !important;
    color: #111 !important;
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* ======================================================
   BOTONES GLOBALES - estilo luxe
   WooCommerce + Astra + formularios
   ====================================================== */

button,
input[type="button"],
input[type="submit"],
.ast-button,
.button,
a.button,
a.ast-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.added_to_cart,
body .wpforms-container .wpforms-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #c8a15a !important;
    border-radius: 4px;
    background: linear-gradient(180deg, #ddb86e 0%, #b4873d 100%) !important;
    color: #111 !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.ast-button:hover,
.button:hover,
a.button:hover,
a.ast-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.added_to_cart:hover,
body .wpforms-container .wpforms-submit:hover {
    background: linear-gradient(180deg, #e6c57a 0%, #c79a4d 100%) !important;
    color: #111 !important;
    transform: translateY(-1px);
    filter: brightness(1.03);
}

button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
.ast-button:focus,
.button:focus,
a.button:focus,
a.ast-button:focus,
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.woocommerce #respond input#submit:focus,
body .wpforms-container .wpforms-submit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(200, 161, 90, 0.22);
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
.ast-button:disabled,
.button:disabled,
.woocommerce button.button:disabled,
.woocommerce input.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ======================================================
   FOOTER - forzar ancho completo y salida de layouts
   ====================================================== */

#colophon.luxe-footer,
.site-footer.luxe-footer {
    display: block;
    width: 100%;
    clear: both;
    flex: 0 0 100%;
    align-self: stretch;
}

/* ======================================================
   FILTROS GENÉTICAS - compactar + subir bloque
   ====================================================== */

/* Contenedor general de la página */
body.page .site-main {
    padding-top: 24px !important; /* reduce espacio bajo header */
}

/* Panel de filtros */
.luxe-filters,
.genetics-filters,
.filters-bar {
    padding: 18px 20px !important; /* antes muy alto */
    margin-bottom: 18px !important; /* menos aire antes de productos */
}

/* Grupos (Tipo, THC, Efecto) */
.luxe-filters__group,
.filters-group {
    margin-bottom: 12px !important;
}

/* Labels (TIPO, POTENCIA, EFECTO) */
.luxe-filters__label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    opacity: 0.7;
}

/* Chips / botones */
.luxe-filters__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* antes muy separados */
}

.luxe-filters__options button,
.luxe-filters__options .filter-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-height: auto;
}



/* Grupos internos */
.page-id-871 .luxe-filters__group,
.page-id-871 .filters-group,
.page-id-871 .taxonomy-filters__group {
    margin-bottom: 8px !important;
}

/* Si existe un wrapper encima del grid, apretarlo */
.page-id-871 .products,
.page-id-871 .woocommerce ul.products,
.page-id-871 .genetics-grid,
.page-id-871 .archive-products {
    margin-top: 8px !important;
}

/* ======================================================
   CATÁLOGO / FILTROS GENÉTICAS - compactación real
   ====================================================== */

.luxe-catalog-filters {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
}

.luxe-catalog-filters .luxe-container {
    width: min(100% - 20px, var(--luxe-container)) !important;
}

.luxe-catalog-filters__inner {
    padding: 14px 16px !important;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px 24px !important;
}

.luxe-filter-group {
    margin: 0 !important;
}

.luxe-filter-label {
    display: block;
    margin-bottom: 6px !important;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    opacity: 0.72;
}

.luxe-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px !important;
}

.luxe-filter-item {
    min-height: 34px;
    padding: 7px 12px !important;
    font-size: 0.78rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .luxe-catalog-filters {
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }

    .luxe-catalog-filters__inner {
        padding: 12px 12px !important;
        gap: 12px !important;
    }

    .luxe-filter-label {
        margin-bottom: 5px !important;
        font-size: 0.68rem;
    }

    .luxe-filter-options {
        gap: 6px !important;
    }

    .luxe-filter-item {
        min-height: 30px;
        padding: 6px 10px !important;
        font-size: 0.72rem;
    }
}


/* ======================================================
   GENÉTICAS - compactar filtros sin romper desktop
   ====================================================== */

.luxe-catalog-filters {
    margin-bottom: 10px !important;
}

.luxe-catalog-filters__inner {
    padding: 10px 14px !important;
    gap: 10px 18px !important;
}

.luxe-filter-group {
    margin: 0 !important;
}

.luxe-filter-label {
    margin-bottom: 4px !important;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

.luxe-filter-options {
    gap: 6px !important;
}

.luxe-filter-item {
    min-height: 28px;
    padding: 5px 10px !important;
    font-size: 0.72rem;
}

@media (min-width: 1024px) {
    .luxe-catalog-filters__inner {
        flex-wrap: nowrap;
        align-items: flex-end;
    }
}


/* ======================================================
   CATÁLOGO / BUSCADOR PREMIUM
   Oculta filtros secundarios y mejora el buscador
   ====================================================== */

.luxe-catalog-filters {
    margin: 8px 0 18px;
}

.luxe-catalog-filters .luxe-container {
    width: min(100% - 32px, 980px);
    margin-inline: auto;
}

.luxe-catalog-filters__inner {
    padding: 18px 20px;
    border: 1px solid rgba(200, 161, 90, 0.18);
    border-radius: 12px;
    background:
        radial-gradient(circle at top center, rgba(200, 161, 90, 0.06), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

/* Ocultar bloque de botones por ahora */
.luxe-filter-group {
    display: none;
}

/* Buscador */
.luxe-catalog-search {
    display: block;
    width: 100%;
    margin: 0;
}

.luxe-catalog-search__box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.luxe-catalog-search__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #c8a15a;
    font-size: 0.95rem;
    line-height: 1;
    pointer-events: none;
    opacity: 0.9;
}

.luxe-catalog-search__input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px 0 44px;
    border: 1px solid rgba(200, 161, 90, 0.28);
    border-radius: 8px;
    background: #121212 !important;
    color: #f5f1e8 !important;
    font-size: 0.98rem;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.luxe-catalog-search__input::placeholder {
    color: #9d9486;
    opacity: 1;
}

.luxe-catalog-search__input:focus {
    outline: none;
    border-color: rgba(200, 161, 90, 0.62);
    box-shadow: 0 0 0 3px rgba(200, 161, 90, 0.12);
    background: #141414 !important;
}

/* Ajuste fino para pantallas grandes */
@media (min-width: 1024px) {
    .luxe-catalog-filters {
        margin: 6px 0 16px;
    }

    .luxe-catalog-filters__inner {
        padding: 16px 18px;
    }

    .luxe-catalog-search__input {
        min-height: 52px;
    }
}

/* Móvil */
@media (max-width: 767px) {
    .luxe-catalog-filters {
        margin: 4px 0 14px;
    }

    .luxe-catalog-filters .luxe-container {
        width: min(100% - 20px, 100%);
    }

    .luxe-catalog-filters__inner {
        padding: 14px;
        border-radius: 10px;
    }

    .luxe-catalog-search__icon {
        left: 14px;
        font-size: 0.9rem;
    }

    .luxe-catalog-search__input {
        min-height: 48px;
        padding-left: 40px;
        font-size: 0.94rem;
    }
}

/* ======================================================
   PRODUCT CARDS - LUXE UPGRADE (FASE 1)
   Mejora visual sin tocar estructura
   ====================================================== */

.woocommerce ul.products li.product {
    background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
    border: 1px solid rgba(200, 161, 90, 0.14);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Hover elegante */
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 161, 90, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

/* Imagen */
.woocommerce ul.products li.product img {
    border-bottom: 1px solid rgba(200, 161, 90, 0.08);
}

/* Contenido */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f5f1e8;
    margin: 14px 12px 6px;
}

/* Precio */
.woocommerce ul.products li.product .price {
    margin: 0 12px 12px;
    font-size: 0.95rem;
    color: #c8a15a;
    font-weight: 600;
}

/* Botón */
.woocommerce ul.products li.product .button {
    display: block;
    width: calc(100% - 24px);
    margin: 0 12px 14px;
    min-height: 44px;
    border-radius: 6px;
    border: 1px solid var(--luxe-gold);
    background: linear-gradient(180deg, #ddb86e 0%, #b4873d 100%);
    color: #111 !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s ease;
}

/* Hover botón */
.woocommerce ul.products li.product .button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* Badge tipo */
.luxe-product-badge.tipo {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(200,161,90,0.35);
    color: var(--luxe-gold);
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Asegurar posición relativa */
.woocommerce ul.products li.product {
    position: relative;
}


/* ======================================================
   PRODUCT CARDS - REFINADO BOTÓN Y JERARQUÍA
   Ajuste visual más premium y menos pesado
   ====================================================== */

.woocommerce ul.products li.product {
    padding-bottom: 14px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 10px 16px 6px;
    font-size: 1rem;
    line-height: 1.28;
}

.woocommerce ul.products li.product .price {
    margin: 0 16px 10px;
    font-size: 0.92rem;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .added_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 38px;
    margin: 8px 16px 0;
    padding: 0 18px;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: none;
}

.woocommerce ul.products li.product .added_to_cart {
    margin-left: 8px;
}

@media (max-width: 767px) {
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        margin: 9px 12px 5px;
        font-size: 0.95rem;
    }

    .woocommerce ul.products li.product .price {
        margin: 0 12px 8px;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.button,
    .woocommerce ul.products li.product .added_to_cart {
        margin: 8px 12px 0;
        min-height: 36px;
        padding: 0 16px;
        font-size: 0.7rem;
    }
}

/* ======================================================
   PRODUCT BUTTON - FULL WIDTH PREMIUM
   ====================================================== */

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    display: flex;
    width: calc(100% - 24px);
    margin: 10px 12px 14px;
    justify-content: center;
    align-items: center;

    min-height: 42px;
    padding: 0 16px;

    border-radius: 6px;
    border: 1px solid var(--luxe-gold);

    background: linear-gradient(180deg, #ddb86e 0%, #b4873d 100%);
    color: #111 !important;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: all 0.2s ease;
}

/* Hover */
.woocommerce ul.products li.product .button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

