/* ==================================================
   HISPASEEDS BLACK
   Archivo: assets/css/woocommerce.css
   Propósito: Hoja de estilos documentada para ajustes
   visuales más rápidos y seguros.
   ================================================== */

/* === SECCIÓN =========================================================== */
/* ======================================================
   WOOCOMMERCE / SELECTOR VISUAL DE PACKS V2
   ------------------------------------------------------
   Este archivo controla SOLO el componente de packs:
   - cabecera del bloque
   - botones de pack
   - tipografías dentro de los botones
   - input de cantidad
   - botón de añadir al carrito

   Importante:
   - No toca footer, header ni otras zonas.
   - La UI nativa de WooCommerce solo se oculta cuando el
     JS añade la clase .hs-luxe-pack-ui-ready al formulario.
   ====================================================== */


/* === SECCIÓN =========================================================== */
/* ======================================================
   CONTENEDOR GENERAL DEL SELECTOR
   ====================================================== */

.single-product .hs-luxe-pack-shell {
    margin: 16px 0 14px;
    padding: 14px;
    border: 1px solid rgba(201, 168, 102, 0.22);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    overflow: visible;
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   CABECERA
   ====================================================== */
.single-product .hs-luxe-pack-header {
    margin-bottom: 10px;
}

.single-product .hs-luxe-pack-title {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   LISTA DE PACKS
   ====================================================== */
.single-product .hs-luxe-pack-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 102, 0.6);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.01);
}

.single-product .hs-luxe-pack-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.single-product .hs-luxe-pack-card:last-child {
    border-bottom: 0;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
}

.single-product .hs-luxe-pack-card:first-child {
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}

.single-product .hs-luxe-pack-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: none;
}

.single-product .hs-luxe-pack-card.is-active {
    background: #000000;
}

.single-product .hs-luxe-pack-card:focus-visible {
    outline: 2px solid rgba(201, 168, 102, 0.7);
    outline-offset: -2px;
    z-index: 1;
}

.single-product .hs-luxe-pack-card__main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.single-product .hs-luxe-pack-card__indicator {
    position: relative;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
}

.single-product .hs-luxe-pack-card__indicator::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #111111;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.single-product .hs-luxe-pack-card.is-active .hs-luxe-pack-card__indicator {
    border-color: #c9a866;
}

.single-product .hs-luxe-pack-card.is-active .hs-luxe-pack-card__indicator::after {
    opacity: 1;
    transform: scale(1);
    background: #c9a866;
}

.single-product .hs-luxe-pack-card__qty,
.single-product .hs-luxe-pack-card__price {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.92);
}

.single-product .hs-luxe-pack-card.is-active .hs-luxe-pack-card__qty,
.single-product .hs-luxe-pack-card.is-active .hs-luxe-pack-card__price {
    color: #c9a866;
}

.single-product .hs-luxe-pack-card[data-best-value="true"] .hs-luxe-pack-card__qty {
    font-weight: 800;
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   UI NATIVA DE VARIACIONES
   ====================================================== */
.single-product form.variations_form.hs-luxe-pack-ui-ready table.variations,
.single-product form.variations_form.hs-luxe-pack-ui-ready .reset_variations,
.single-product form.variations_form.hs-luxe-pack-ui-ready .woocommerce-variation-price,
.single-product form.variations_form.hs-luxe-pack-ui-ready .single_variation {
    display: none !important;
}

.single-product form.variations_form .single_variation_wrap {
    margin-top: 0;
    padding-top: 12px;
    border-top: 0;
}

.single-product form.variations_form .woocommerce-variation-add-to-cart,
.single-product form.variations_form .hs-luxe-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    width: 100%;
    margin-top: 14px;
}

.single-product form.variations_form .quantity {
    display: none !important;
    margin: 0 !important;
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   BOTÓN AÑADIR AL CARRITO
   ====================================================== */
.single-product form.variations_form .single_add_to_cart_button {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    min-height: 48px;
    padding: 14px 18px !important;
    border: none !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, #d6b26c 0%, #bb8f45 100%) !important;
    color: #111111 !important;
    box-shadow: none !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800 !important;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: filter 0.18s ease, transform 0.18s ease;
}

.single-product form.variations_form .single_add_to_cart_button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.single-product form.variations_form .hs-luxe-cta-stack__technical-sheet .hs-luxe-tech-sheet {
    margin-top: 0;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 767px) {
    .single-product .hs-luxe-pack-shell {
        padding: 12px;
    }

    .single-product .hs-luxe-pack-card {
        min-height: 52px;
        padding: 14px 14px;
        gap: 12px;
    }

    .single-product .hs-luxe-pack-card__main {
        gap: 10px;
    }

    .single-product .hs-luxe-pack-card__qty,
    .single-product .hs-luxe-pack-card__price {
        font-size: 13px;
    }

    .single-product div.product form.variations_form .single_add_to_cart_button {
        width: 100%;
        justify-content: center;
    }

    .single-product .hs-luxe-pack-shell {
        border-radius: 16px;
    }

    .single-product .hs-luxe-pack-grid {
        border-radius: 14px;
    }

    .single-product .hs-luxe-tech-sheet {
        padding: 16px 18px;
    }
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   SINGLE PRODUCT / FICHA TÉCNICA Y CONTENIDO EDITORIAL
   ====================================================== */
.single-product .product_meta {
    display: none !important;
}

.single-product .hs-luxe-tech-sheet {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 18px 20px;
    border: 1px solid rgba(201, 168, 102, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.single-product .hs-luxe-tech-sheet__title {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.2;
}

.single-product .hs-luxe-tech-sheet__list {
    margin: 0;
    padding-left: 22px;
}

.single-product .hs-luxe-tech-sheet__item {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.5;
}

.single-product .hs-luxe-tech-sheet__item:last-child {
    margin-bottom: 0;
}

.single-product .hs-luxe-tech-sheet__item-label {
    font-weight: 700;
}

.single-product .hs-luxe-product-content {
    margin-top: 22px;
}

.single-product .hs-luxe-product-content__inner > *:first-child {
    margin-top: 0;
}

.single-product .hs-luxe-product-content__inner > *:last-child {
    margin-bottom: 0;
}

.single-product .hs-luxe-product-content__inner h2,
.single-product .hs-luxe-product-content__inner h3,
.single-product .hs-luxe-product-content__inner h4 {
    margin-top: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.single-product .hs-luxe-product-content__inner p,
.single-product .hs-luxe-product-content__inner ul,
.single-product .hs-luxe-product-content__inner ol {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.single-product .hs-luxe-product-content__inner ul,
.single-product .hs-luxe-product-content__inner ol {
    padding-left: 20px;
}

.single-product .woocommerce-tabs,
.single-product .woocommerce-tabs.wc-tabs-wrapper {
    display: none !important;
}

.single-product div.product {
    display: flow-root;
}

.single-product div.product .summary,
.single-product div.product .woocommerce-product-gallery {
    margin-bottom: 0;
}

@media (max-width: 921px) {
    .single-product .hs-luxe-pack-card {
        padding: 15px 16px;
    }
}

@media (max-width: 767px) {
    .single-product .hs-luxe-pack-shell {
        margin: 14px 0 12px;
    }

    .single-product .hs-luxe-tech-sheet {
        margin-top: 14px;
    }

    .single-product .hs-luxe-tech-sheet__title {
        margin-bottom: 12px;
        font-size: 17px;
    }

    .single-product .hs-luxe-tech-sheet__list {
        padding-left: 20px;
    }

    .single-product .hs-luxe-tech-sheet__item {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .single-product .hs-luxe-product-content {
        margin-top: 20px;
    }

    .single-product .hs-luxe-product-content__inner h2,
    .single-product .hs-luxe-product-content__inner h3,
    .single-product .hs-luxe-product-content__inner h4 {
        margin-top: 14px;
        margin-bottom: 7px;
    }

    .single-product .hs-luxe-product-content__inner p,
    .single-product .hs-luxe-product-content__inner ul,
    .single-product .hs-luxe-product-content__inner ol {
        margin-bottom: 9px;
    }
}




/* === SECCIÓN =========================================================== */
/* ======================================================
   SINGLE PRODUCT / CTA + FICHA + GALERÍA
   ====================================================== */
.single-product div.product form.variations_form.cart,
.single-product div.product form.variations_form {
    width: 100%;
}

.single-product div.product form.variations_form .woocommerce-variation-add-to-cart > * {
    width: 100%;
}

.single-product div.product form.variations_form .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.single-product .woocommerce-product-gallery .zoom,
.single-product .woocommerce-product-gallery__trigger,
.single-product .woocommerce-product-gallery .flex-viewport + .woocommerce-product-gallery__trigger {
    display: none !important;
}

.single-product .woocommerce-product-gallery__image a {
    pointer-events: none;
    cursor: default;
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   HOTFIX V2.4 / CATÁLOGO + SINGLE
   ====================================================== */

/* Fondo oscuro estable en catálogo y ficha */
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.single-product {
    background: #050505 !important;
}

body.post-type-archive-product .site,
body.post-type-archive-product .site-content,
body.post-type-archive-product .ast-container,
body.post-type-archive-product .content-area,
body.post-type-archive-product .site-main,
body.tax-product_cat .site,
body.tax-product_cat .site-content,
body.tax-product_cat .ast-container,
body.tax-product_cat .content-area,
body.tax-product_cat .site-main,
body.tax-product_tag .site,
body.tax-product_tag .site-content,
body.tax-product_tag .ast-container,
body.tax-product_tag .content-area,
body.tax-product_tag .site-main,
body.single-product .site,
body.single-product .site-content,
body.single-product .ast-container,
body.single-product .content-area,
body.single-product .site-main,
body.single-product .entry-summary,
body.single-product .product,
body.single-product .related,
body.single-product .upsells {
    background: transparent !important;
}

body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.single-product {
    overflow-x: hidden;
}

body.post-type-archive-product .ast-container,
body.tax-product_cat .ast-container,
body.tax-product_tag .ast-container,
body.single-product .ast-container {
    max-width: 100%;
}

body.single-product #content,
body.single-product .site-content,
body.post-type-archive-product #content,
body.post-type-archive-product .site-content,
body.tax-product_cat #content,
body.tax-product_cat .site-content,
body.tax-product_tag #content,
body.tax-product_tag .site-content {
    background: transparent !important;
}

/* Selectores de packs: negro + dorado solo en activo */
.single-product .hs-luxe-pack-shell {
    background: rgba(255, 255, 255, 0.03);
}

.single-product .hs-luxe-pack-grid {
    background: #060606;
    border-color: rgba(255, 255, 255, 0.09);
}

.single-product .hs-luxe-pack-card {
    background: #060606 !important;
    color: #ffffff;
}

.single-product .hs-luxe-pack-card:hover {
    background: #101010 !important;
}

.single-product .hs-luxe-pack-card.is-active,
.single-product .hs-luxe-pack-card[aria-pressed="true"] {
    background: #000000 !important;
}

.single-product .hs-luxe-pack-card__indicator {
    border-color: rgba(255, 255, 255, 0.72);
}

.single-product .hs-luxe-pack-card__indicator::after {
    background: #c9a866;
}

.single-product .hs-luxe-pack-card.is-active .hs-luxe-pack-card__indicator,
.single-product .hs-luxe-pack-card[aria-pressed="true"] .hs-luxe-pack-card__indicator {
    border-color: #c9a866;
}

.single-product .hs-luxe-pack-card__qty,
.single-product .hs-luxe-pack-card__price {
    color: #ffffff !important;
}

.single-product .hs-luxe-pack-card.is-active .hs-luxe-pack-card__qty,
.single-product .hs-luxe-pack-card.is-active .hs-luxe-pack-card__price,
.single-product .hs-luxe-pack-card[aria-pressed="true"] .hs-luxe-pack-card__qty,
.single-product .hs-luxe-pack-card[aria-pressed="true"] .hs-luxe-pack-card__price {
    color: #c9a866 !important;
}

/* Ficha técnica justo debajo del CTA */
.single-product div.product .summary .hs-luxe-tech-sheet {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 168, 102, 0.18);
}

.single-product div.product .summary .hs-luxe-tech-sheet__title,
.single-product div.product .summary .hs-luxe-tech-sheet__item-label {
    color: #f0ddb0;
}

.single-product div.product .summary .hs-luxe-tech-sheet__item,
.single-product div.product .summary .hs-luxe-tech-sheet__item-value {
    color: #e6dccb;
}

/* Contenido inferior legible y sin velo blanco */
.single-product .hs-luxe-product-content {
    margin-top: 36px;
    padding: 0 0 12px;
}

.single-product .hs-luxe-product-content,
.single-product .hs-luxe-product-content__inner,
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .upsells.products {
    background: transparent !important;
}

.single-product .hs-luxe-product-content__inner h1,
.single-product .hs-luxe-product-content__inner h2,
.single-product .hs-luxe-product-content__inner h3,
.single-product .hs-luxe-product-content__inner h4,
.single-product .related > h2,
.single-product .upsells > h2 {
    color: #f0ddb0 !important;
}

.single-product .hs-luxe-product-content__inner p,
.single-product .hs-luxe-product-content__inner li,
.single-product .related.products .price,
.single-product .related.products .woocommerce-loop-product__title {
    color: #e6dccb !important;
}

/* Corrige anchos y piezas blancas en móvil */
@media (max-width: 921px) {
    body.single-product div.product .woocommerce-product-gallery,
    body.single-product div.product .summary {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }

    body.single-product .ast-container,
    body.post-type-archive-product .ast-container,
    body.tax-product_cat .ast-container,
    body.tax-product_tag .ast-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
    }

    body.post-type-archive-product ul.products.columns-4,
    body.tax-product_cat ul.products.columns-4,
    body.tax-product_tag ul.products.columns-4,
    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    body.post-type-archive-product ul.products li.product,
    body.tax-product_cat ul.products li.product,
    body.tax-product_tag ul.products li.product {
        width: auto !important;
        margin: 0 !important;
    }

    .single-product .hs-luxe-pack-shell {
        padding: 10px;
    }

    .single-product .hs-luxe-pack-card {
        padding: 14px 12px !important;
    }

    .single-product form.variations_form .woocommerce-variation-add-to-cart {
        gap: 12px;
    }

    .single-product form.variations_form .single_add_to_cart_button {
        width: 100%;
    }
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   AJUSTE FINO / ALINEACIÓN CTA + FICHA TÉCNICA
   ====================================================== */
.single-product form.variations_form .woocommerce-variation-add-to-cart {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr);
    align-items: start;
    column-gap: 28px;
    row-gap: 0;
    width: 100%;
}

.single-product form.variations_form .single_add_to_cart_button {
    align-self: start;
    margin-top: 0 !important;
}

.single-product form.variations_form .hs-luxe-tech-sheet {
    align-self: start;
    margin-top: 0;
    padding-top: 2px;
    max-width: 420px;
}

.single-product form.variations_form .hs-luxe-tech-sheet__title {
    margin-top: 0;
    margin-bottom: 12px;
}

.single-product form.variations_form .hs-luxe-tech-sheet__list {
    margin-top: 0;
}

@media (max-width: 767px) {
    .single-product form.variations_form .woocommerce-variation-add-to-cart {
        display: block;
    }

    .single-product form.variations_form .single_add_to_cart_button {
        width: 100%;
        justify-content: center;
    }

    .single-product form.variations_form .hs-luxe-tech-sheet {
        max-width: none;
        margin-top: 14px;
        padding-top: 0;
    }
}


/* ===== CTA y ficha técnica: en columna, no en fila ===== */
.single-product .summary form.cart,
.single-product .summary .hispaseeds-ficha-tecnica {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both !important;
    flex: 0 0 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.single-product .summary form.cart {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
}

.single-product .summary form.cart .single_add_to_cart_button,
.single-product .summary .single_add_to_cart_button,
.single-product .summary button.single_add_to_cart_button {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    border-radius: 12px !important;
    text-align: center !important;
    justify-content: center !important;
}

.single-product .summary .hispaseeds-ficha-tecnica {
    margin-top: 16px !important;
    padding: 22px !important;
    border: 1px solid rgba(212,175,55,.22) !important;
    border-radius: 18px !important;
    background: #0a0a0a !important;
}

/* ===== Selector packs: esquinas limpias y redondeadas ===== */
.single-product .summary .variations_form,
.single-product .summary .cart {
    overflow: visible !important;
}

.single-product .summary .seed-quantity-selector,
.single-product .summary .hispaseeds-pack-selector,
.single-product .summary .quantity-selector-wrap,
.single-product .summary .pack-selector-wrap {
    background: #0a0a0a !important;
    border: 1px solid rgba(212,175,55,.55) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    isolation: isolate !important;
    box-shadow: 0 0 0 1px rgba(0,0,0,.65) inset !important;
}

.single-product .summary .seed-quantity-selector > *,
.single-product .summary .hispaseeds-pack-selector > *,
.single-product .summary .quantity-selector-wrap > *,
.single-product .summary .pack-selector-wrap > * {
    border-radius: 0 !important;
    background-clip: padding-box !important;
}

.single-product .summary .seed-quantity-selector > *:first-child,
.single-product .summary .hispaseeds-pack-selector > *:first-child,
.single-product .summary .quantity-selector-wrap > *:first-child,
.single-product .summary .pack-selector-wrap > *:first-child {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.single-product .summary .seed-quantity-selector > *:last-child,
.single-product .summary .hispaseeds-pack-selector > *:last-child,
.single-product .summary .quantity-selector-wrap > *:last-child,
.single-product .summary .pack-selector-wrap > *:last-child {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
}

/* evita puntitos negros/sangrado en esquinas */
.single-product .summary .seed-quantity-selector::before,
.single-product .summary .hispaseeds-pack-selector::before,
.single-product .summary .quantity-selector-wrap::before,
.single-product .summary .pack-selector-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
}

@media (max-width: 921px) {
    .single-product .summary form.cart,
    .single-product .summary .hispaseeds-ficha-tecnica {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Botón comprar: ancho completo debajo del selector */
.single-product form.cart .single_add_to_cart_button,
.single-product .summary .single_add_to_cart_button {
	width: 100% !important;
	max-width: 100% !important;
	display: block !important;
	margin: 14px 0 0 0 !important;
	text-align: center !important;
}

/* Ficha técnica debajo del formulario */
.single-product .summary .hs-luxe-tech-sheet {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 16px 0 0 0 !important;
	clear: both !important;
}

/* Marco selector: curvas limpias */
.hs-luxe-pack-shell {
	border-radius: 16px !important;
	overflow: hidden !important;
	background: #0a0a0a !important;
}

/* Evita fallitos negros en esquinas */
.hs-luxe-pack-grid,
.hs-luxe-pack-shell * {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   SINGLE PRODUCT - LUPA / ZOOM
====================================================== */
.single-product .woocommerce-product-gallery__trigger {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   SINGLE PRODUCT - COLUMNA DERECHA LIMPIA
====================================================== */
.single-product div.product div.summary,
.single-product .product .summary {
	display: block !important;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   SELECTOR DE PACKS
====================================================== */
.single-product .hs-luxe-pack-shell {
	background: #050505 !important;
	border: 1px solid rgba(212, 175, 55, 0.38) !important;
	border-radius: 18px !important;
	padding: 14px !important;
	overflow: hidden !important;
	position: relative !important;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.single-product .hs-luxe-pack-title {
	margin: 0 0 10px 0 !important;
	font-size: 12px !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	opacity: 0.72 !important;
}

.single-product .hs-luxe-pack-grid {
	border: 1px solid rgba(212, 175, 55, 0.9) !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	background: #000 !important;
	position: relative !important;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

/* limpia artefactos en esquinas */
.single-product .hs-luxe-pack-grid::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 18px;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.9);
}

.single-product .hs-luxe-pack-grid > *:first-child {
	border-top-left-radius: 18px !important;
	border-top-right-radius: 18px !important;
}

.single-product .hs-luxe-pack-grid > *:last-child {
	border-bottom-left-radius: 18px !important;
	border-bottom-right-radius: 18px !important;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   FORMULARIO DE COMPRA
====================================================== */
.single-product form.cart {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 16px 0 0 0 !important;
	padding: 0 !important;
	clear: both !important;
	float: none !important;
}

.single-product form.cart .variations,
.single-product form.cart .single_variation_wrap,
.single-product form.cart .woocommerce-variation-add-to-cart,
.single-product form.cart .quantity,
.single-product form.cart .variations_button {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	clear: both !important;
}

/* si hay quantity nativa, la escondes si no la usas */
.single-product form.cart .quantity {
	display: none !important;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   BOTÓN COMPRAR AHORA
====================================================== */
.single-product form.cart .single_add_to_cart_button,
.single-product .summary .single_add_to_cart_button,
.single-product button.single_add_to_cart_button {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 100% !important;
	margin: 14px 0 0 0 !important;
	padding: 16px 22px !important;
	border-radius: 12px !important;
	text-align: center !important;
	float: none !important;
	clear: both !important;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   FICHA TÉCNICA DEBAJO DEL BOTÓN
====================================================== */
.single-product .hs-luxe-tech-sheet {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 16px 0 0 0 !important;
	padding: 22px !important;
	background: #0a0a0a !important;
	border: 1px solid rgba(212, 175, 55, 0.22) !important;
	border-radius: 16px !important;
	float: none !important;
	clear: both !important;
	box-sizing: border-box !important;
}

.single-product .hs-luxe-tech-sheet__title,
.single-product .hs-luxe-tech-sheet h2 {
	margin: 0 0 14px 0 !important;
	font-size: 20px !important;
	line-height: 1.2 !important;
}

.single-product .hs-luxe-tech-sheet__list,
.single-product .hs-luxe-tech-sheet ul {
	margin: 0 !important;
	padding-left: 20px !important;
}

.single-product .hs-luxe-tech-sheet__item,
.single-product .hs-luxe-tech-sheet li {
	margin-bottom: 8px !important;
}

.single-product .hs-luxe-tech-sheet__item:last-child,
.single-product .hs-luxe-tech-sheet li:last-child {
	margin-bottom: 0 !important;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   EVITAR QUE SE PONGA A LA DERECHA
====================================================== */
.single-product .summary > .hs-luxe-tech-sheet,
.single-product .summary > form.cart {
	position: relative !important;
	left: auto !important;
	right: auto !important;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 921px) {
	.single-product .hs-luxe-pack-shell,
	.single-product form.cart,
	.single-product .hs-luxe-tech-sheet,
	.single-product form.cart .single_add_to_cart_button {
		width: 100% !important;
		max-width: 100% !important;
	}
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   AVISO "AÑADIDO AL CARRITO" — ELEGANTE OSCURO
====================================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-notice,
.woocommerce-error {
	background: linear-gradient(180deg, #111111 0%, #090909 100%) !important;
	color: #f5f5f5 !important;
	border: 1px solid rgba(212, 175, 55, 0.35) !important;
	border-radius: 16px !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;
	padding: 22px 24px !important;
	margin: 18px 0 26px !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	color: #d4af37 !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
	color: #f5f5f5 !important;
	text-decoration: none !important;
}

/* Botón dentro del aviso */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
a.button.wc-forward {
	background: linear-gradient(180deg, #d8b25a 0%, #c79c3c 100%) !important;
	color: #111111 !important;
	border: 0 !important;
	border-radius: 12px !important;
	padding: 14px 22px !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover,
a.button.wc-forward:hover {
	filter: brightness(1.04) !important;
	transform: translateY(-1px);
}

/* Mobile: botón debajo y mejor respiración */
@media (max-width: 767px) {
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce-error {
		padding: 18px !important;
	}

	.woocommerce-message .button,
	.woocommerce-info .button,
	.woocommerce-error .button,
	a.button.wc-forward {
		float: none !important;
		display: inline-block !important;
		margin: 12px 0 0 0 !important;
		width: auto !important;
	}
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   PANEL / MINI CART / SIDE CART — FONDO NEGRO
====================================================== */

/* Fondo del panel */
.woocommerce-mini-cart,
.widget_shopping_cart_content,
.ast-site-header-cart .widget_shopping_cart,
.ast-site-header-cart .widget_shopping_cart_content,
.ast-woocommerce-cart-menu-wrap,
.ast-woocommerce-cart-menu-wrap .widget_shopping_cart,
.ast-woocommerce-cart-menu-wrap .widget_shopping_cart_content,
.cart-drawer,
.cart-panel,
.off-canvas-cart,
.astra-cart-drawer,
.astra-cart-drawer .widget_shopping_cart_content {
	background: #050505 !important;
	color: #f5f5f5 !important;
}

/* Contenedor interno y lista */
.woocommerce-mini-cart ul,
.woocommerce-mini-cart li,
.widget_shopping_cart_content ul,
.widget_shopping_cart_content li,
.ast-site-header-cart ul,
.ast-site-header-cart li {
	background: transparent !important;
	color: #f5f5f5 !important;
	border-color: rgba(212, 175, 55, 0.14) !important;
}

/* Textos del mini cart */
.woocommerce-mini-cart__total,
.woocommerce-mini-cart__buttons,
.woocommerce-mini-cart-item a,
.widget_shopping_cart_content a,
.ast-site-header-cart a {
	color: #f5f5f5 !important;
}

/* Botones del panel carrito */
.woocommerce-mini-cart__buttons .button,
.widget_shopping_cart_content .button,
.ast-site-header-cart .button {
	background: linear-gradient(180deg, #d8b25a 0%, #c79c3c 100%) !important;
	color: #111111 !important;
	border: 0 !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
}

/* Botón secundario */
.woocommerce-mini-cart__buttons .button.checkout,
.widget_shopping_cart_content .button.checkout {
	background: #111111 !important;
	color: #f5f5f5 !important;
	border: 1px solid rgba(212, 175, 55, 0.35) !important;
}

/* Cantidades, precios, subtotales */
.woocommerce-mini-cart__total strong,
.woocommerce-mini-cart__total .amount,
.woocommerce-mini-cart-item .quantity,
.woocommerce-mini-cart-item .amount,
.widget_shopping_cart_content .quantity,
.widget_shopping_cart_content .amount {
	color: #d9d9d9 !important;
}

/* Separadores */
.woocommerce-mini-cart li,
.widget_shopping_cart_content li {
	border-bottom: 1px solid rgba(212, 175, 55, 0.12) !important;
	padding-bottom: 12px !important;
	margin-bottom: 12px !important;
}

/* Cerrar / iconos */
.woocommerce-mini-cart .remove,
.widget_shopping_cart_content .remove,
.ast-site-header-cart .remove {
	color: #d4af37 !important;
}

/* Dropdown del carrito en header */
.ast-site-header-cart .widget_shopping_cart,
.ast-site-header-cart .widget_shopping_cart_content {
	border: 1px solid rgba(212, 175, 55, 0.18) !important;
	border-radius: 16px !important;
	box-shadow: 0 18px 40px rgba(0,0,0,0.42) !important;
}

/* Overlay y panel lateral oscuros */
.ast-site-header-cart .widget_shopping_cart,
.ast-site-header-cart .widget_shopping_cart_content,
.woocommerce .widget_shopping_cart,
.woocommerce .widget_shopping_cart_content,
.astra-cart-drawer,
.cart-drawer,
.off-canvas-cart {
	background-color: #050505 !important;
}

/* Si Astra mete cabecera blanca dentro del drawer */
.astra-cart-drawer-header,
.cart-drawer-header,
.off-canvas-cart__header {
	background: #0b0b0b !important;
	color: #f5f5f5 !important;
	border-bottom: 1px solid rgba(212, 175, 55, 0.14) !important;
}


/* Ajuste icono aviso carrito */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	position: relative;
	padding-left: 48px !important;
}

/* Icono */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	position: absolute !important;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px !important;
	line-height: 1;
}

/* Texto alineado */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

/* =========================
   MINI CART CTA PRO
========================= */

.woocommerce-mini-cart__buttons,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Base botones */
.woocommerce-mini-cart__buttons .button,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
	width: 100% !important;
	text-align: center !important;
	border-radius: 14px !important;
	padding: 16px 18px !important;
	font-weight: 800 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	margin: 0 !important;
	transition: all 0.2s ease;
}

/* 🟡 CTA PRINCIPAL — FINALIZAR COMPRA (ARRIBA) */
.woocommerce-mini-cart__buttons .button.checkout,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout {
	order: 1;
	background: linear-gradient(180deg, #d8b25a 0%, #c79c3c 100%) !important;
	color: #111111 !important;
	border: 0 !important;
	box-shadow: 0 12px 28px rgba(199, 156, 60, 0.25) !important;
}

/* Hover CTA */
.woocommerce-mini-cart__buttons .button.checkout:hover,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: 0 16px 34px rgba(199, 156, 60, 0.35) !important;
}

/* ⚫ SECUNDARIO — VER CARRITO (ABAJO) */
.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout),
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
	order: 2;
	background: #0b0b0b !important;
	color: #f5f5f5 !important;
	border: 1px solid rgba(212, 175, 55, 0.25) !important;
	box-shadow: none !important;
}

/* Hover secundario */
.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
	background: #111111 !important;
	border-color: rgba(212, 175, 55, 0.5) !important;
}




/* === SECCIÓN =========================================================== */
/* ======================================================
   SINGLE PRODUCT PRO 2.1
   ====================================================== */

body.hs-single-product-pro .single-product div.product {
    display: grid;
    gap: 28px;
}

@media (min-width: 922px) {
    body.hs-single-product-pro .single-product div.product {
        align-items: start;
    }

    body.hs-single-product-pro .single-product div.product .summary {
        position: sticky;
        top: 110px;
    }
}

.hs-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.hs-single-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(201, 168, 102, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: #f3efe6;
    font-size: 12px;
    line-height: 1.2;
}

.hs-product-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 8px;
}

.hs-product-highlights__item {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(201, 168, 102, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.hs-product-highlights__eyebrow {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.hs-product-highlights__value {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
}

.hs-product-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 0;
}

.hs-product-trust__item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201, 168, 102, 0.14);
}

.hs-product-trust__item strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 14px;
}

.hs-product-trust__item span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.45;
}

.single-product .summary .price {
    margin-bottom: 12px;
}

.single-product .summary .woocommerce-product-details__short-description {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.82);
}

.single-product .summary .single_add_to_cart_button {
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.single-product .summary .single_add_to_cart_button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.single-product .summary .single_add_to_cart_button.is-processing {
    opacity: 0.88;
}

.single-product .summary .single_add_to_cart_button.is-added::after {
    content: '✓';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-weight: 800;
}

.single-product .hs-luxe-tech-sheet,
.single-product .hs-luxe-product-content {
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(201, 168, 102, 0.16);
    background: rgba(255,255,255,0.02);
}

.single-product .hs-luxe-tech-sheet__title {
    margin-bottom: 16px;
}

.single-product .related.products {
    margin-top: 34px;
}

.single-product .related.products > h2 {
    margin-bottom: 18px;
}

@media (max-width: 921px) {
    .hs-product-trust,
    .hs-product-highlights {
        grid-template-columns: 1fr;
    }
}


/* === SECCIÓN =========================================================== */
/* ======================================================
   PRODUCT PAGE PRO V2.2
   ====================================================== */

.hs-section-kicker,
.single-product .hs-section-kicker,
.woocommerce-cart .hs-section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 168, 102, 0.82);
}

.single-product div.product .summary {
    position: sticky;
    top: 110px;
}

.single-product .product_title {
    margin-bottom: 12px;
    line-height: 1.02;
}

.single-product .hs-product-intro {
    margin: 0 0 18px;
    max-width: 56ch;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.single-product .hs-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.single-product .hs-single-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1px solid rgba(201, 168, 102, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    line-height: 1.3;
    color: #f4ead7;
}

.single-product .hs-product-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 24px;
}

.single-product .hs-product-highlights__item,
.single-product .hs-product-experience__card,
.single-product .hs-product-faq__item,
.woocommerce-cart .hs-cart-trust__item,
.woocommerce-cart .hs-cart-intro,
.woocommerce-cart .cart_totals {
    border: 1px solid rgba(201, 168, 102, 0.18);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.single-product .hs-product-highlights__item {
    padding: 16px 18px;
}

.single-product .hs-product-highlights__eyebrow {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.48);
}

.single-product .hs-product-highlights__value {
    display: block;
    color: #f4ead7;
    font-size: 18px;
    line-height: 1.4;
}

.single-product .hs-product-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.single-product .hs-product-trust__item {
    padding: 18px 18px 16px;
    border: 1px solid rgba(201, 168, 102, 0.16);
    border-radius: 20px;
    background: rgba(255,255,255,0.025);
}

.single-product .hs-product-trust__item strong {
    display: block;
    margin-bottom: 6px;
    color: #f4ead7;
}

.single-product .hs-product-trust__item span {
    display: block;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
}

.single-product .hs-product-experience,
.single-product .hs-product-faq,
.single-product .hs-luxe-product-content {
    margin-top: 52px;
}

.single-product .hs-product-experience__header h2,
.single-product .hs-product-faq__header h2,
.single-product .hs-luxe-product-content h2 {
    margin: 0 0 18px;
    color: #f4ead7;
}

.single-product .hs-product-experience__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.single-product .hs-product-experience__card {
    padding: 24px;
}

.single-product .hs-product-experience__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(201, 168, 102, 0.82);
}

.single-product .hs-product-experience__card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: #f4ead7;
}

.single-product .hs-product-experience__card p,
.single-product .hs-product-faq__answer p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
}

.single-product .hs-product-faq__item {
    margin-bottom: 14px;
    overflow: hidden;
}

.single-product .hs-product-faq__item summary {
    position: relative;
    padding: 22px 58px 22px 22px;
    list-style: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #f4ead7;
}

.single-product .hs-product-faq__item summary::-webkit-details-marker {
    display: none;
}

.single-product .hs-product-faq__item summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    font-size: 28px;
    line-height: 1;
    color: rgba(201, 168, 102, 0.88);
}

.single-product .hs-product-faq__item[open] summary::after {
    content: '−';
}

.single-product .hs-product-faq__answer {
    padding: 0 22px 22px;
}

.single-product .related.products {
    margin-top: 56px;
}

.single-product .related.products > h2 {
    margin-bottom: 18px;
    color: #f4ead7;
}

/* === SECCIÓN =========================================================== */
/* ======================================================
   CART PAGE PRO V2.2
   ====================================================== */

.woocommerce-cart .site-content,
.woocommerce-cart .content-area,
.woocommerce-cart #primary {
    background: transparent;
}

.woocommerce-cart .entry-header,
.woocommerce-cart .woocommerce {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-cart .entry-title {
    margin-bottom: 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
}

.woocommerce-cart .woocommerce-notices-wrapper {
    margin-bottom: 18px;
}

.woocommerce-cart .hs-cart-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 20px;
    padding: 26px 28px;
    margin: 0 0 28px;
}

.woocommerce-cart .hs-cart-intro__copy h2 {
    margin: 0 0 10px;
    color: #f4ead7;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
}

.woocommerce-cart .hs-cart-intro__copy p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.woocommerce-cart .hs-cart-intro__badges {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
}

.woocommerce-cart .hs-cart-intro__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 102, 0.2);
    background: rgba(255,255,255,0.03);
    color: #f4ead7;
    font-size: 13px;
    font-weight: 600;
}

.woocommerce-cart form.woocommerce-cart-form {
    margin-bottom: 28px;
}

.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 102, 0.16);
    border-radius: 28px;
    background: rgba(255,255,255,0.02);
}

.woocommerce-cart table.shop_table thead th {
    padding: 22px 20px;
    border: 0;
    background: rgba(255,255,255,0.92);
    color: #a78132;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.woocommerce-cart table.shop_table tbody td {
    padding: 18px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    vertical-align: middle;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 84px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.woocommerce-cart table.shop_table td.product-name a {
    color: #d9b25c;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.woocommerce-cart table.shop_table td.product-remove a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.74) !important;
    transition: all 0.2s ease;
}

.woocommerce-cart table.shop_table td.product-remove a.remove:hover {
    background: rgba(201, 168, 102, 0.16);
    color: #d9b25c !important;
}

.woocommerce-cart .quantity .qty {
    min-width: 84px;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 102, 0.28);
    background: rgba(255,255,255,0.96);
    color: #111111;
    font-weight: 700;
}

.woocommerce-cart td.actions {
    padding: 22px 20px 24px !important;
}

.woocommerce-cart td.actions .coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.woocommerce-cart td.actions .coupon #coupon_code {
    min-width: 220px;
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 102, 0.18);
    background: rgba(255,255,255,0.96);
    color: #111111;
}

.woocommerce-cart .actions .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.single-product .single_add_to_cart_button,
.single-product .reset_variations {
    min-height: 56px;
    border: 0 !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #dcb75d 0%, #bb8f35 100%) !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    text-transform: none !important;
    box-shadow: 0 16px 38px rgba(188, 143, 53, 0.26);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.woocommerce-cart .actions .button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.single-product .single_add_to_cart_button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(188, 143, 53, 0.36);
    filter: brightness(1.02);
}

.woocommerce-cart .actions > button[name="update_cart"] {
    float: right;
}

.woocommerce-cart .cart-collaterals {
    margin-top: 24px;
}

.woocommerce-cart .cart_totals {
    width: min(100%, 520px);
    padding: 0;
    overflow: hidden;
}

.woocommerce-cart .cart_totals h2 {
    margin: 0;
    padding: 26px 28px;
    background: rgba(255,255,255,0.94);
    color: #c79d45;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.woocommerce-cart .cart_totals table.shop_table {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    padding: 18px 28px;
    background: transparent;
    color: rgba(255,255,255,0.9);
}

.woocommerce-cart .wc-proceed-to-checkout {
    padding: 6px 20px 22px;
    margin: 0;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    margin: 0;
}

.woocommerce-cart .hs-cart-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.woocommerce-cart .hs-cart-trust__item {
    padding: 22px;
}

.woocommerce-cart .hs-cart-trust__item strong {
    display: block;
    margin-bottom: 8px;
    color: #f4ead7;
}

.woocommerce-cart .hs-cart-trust__item p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.woocommerce-cart .return-to-shop .button {
    min-height: 54px;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .single-product div.product .summary {
        position: static;
    }

    .single-product .hs-product-trust,
    .single-product .hs-product-experience__grid,
    .woocommerce-cart .hs-cart-trust,
    .woocommerce-cart .hs-cart-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .single-product .hs-product-highlights {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart table.shop_table thead {
        display: none;
    }

    .woocommerce-cart table.shop_table tr.cart_item {
        display: grid;
        grid-template-columns: 48px 84px minmax(0, 1fr);
        gap: 12px;
        padding: 18px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .woocommerce-cart table.shop_table tbody td {
        padding: 0;
        border: 0;
    }

    .woocommerce-cart table.shop_table td.product-remove,
    .woocommerce-cart table.shop_table td.product-thumbnail {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .woocommerce-cart table.shop_table td.product-name {
        display: grid;
        gap: 10px;
    }

    .woocommerce-cart table.shop_table td.product-price,
    .woocommerce-cart table.shop_table td.product-quantity,
    .woocommerce-cart table.shop_table td.product-subtotal {
        grid-column: 3 / 4;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        color: rgba(255,255,255,0.75);
    }

    .woocommerce-cart table.shop_table td.product-price::before,
    .woocommerce-cart table.shop_table td.product-quantity::before,
    .woocommerce-cart table.shop_table td.product-subtotal::before {
        font-weight: 700;
        color: #f4ead7;
    }

    .woocommerce-cart table.shop_table td.product-price::before { content: 'Precio'; }
    .woocommerce-cart table.shop_table td.product-quantity::before { content: 'Cantidad'; }
    .woocommerce-cart table.shop_table td.product-subtotal::before { content: 'Subtotal'; }

    .woocommerce-cart td.actions .coupon {
        margin-bottom: 14px;
    }

    .woocommerce-cart .actions > button[name="update_cart"] {
        float: none;
        width: 100%;
    }

    .woocommerce-cart .cart_totals {
        width: 100%;
    }
}



/* === SECCIÓN =========================================================== */
/* ======================================================
   FIX 2.2.1 · STICKY / OVERFLOW CORREGIDO
   ------------------------------------------------------
   El summary vuelve a formar parte del flujo normal
   de la página. Sin scroll interno, sin solapamientos.
   ====================================================== */

.single-product div.product .summary,
.single-product .summary.entry-summary,
.single-product .site-main div.product .summary {
    position: static !important;
    top: auto !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

.single-product div.product,
.single-product div.product .images,
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .woocommerce-product-gallery__wrapper,
.single-product .product.type-product {
    overflow: visible !important;
}

@media (min-width: 1024px) {
    .single-product div.product {
        align-items: flex-start;
    }
}

/* Por seguridad, anulamos posibles variantes previas de sticky */
@supports (position: sticky) {
    .single-product div.product .summary {
        position: static !important;
    }
}

/* ==========================================
   CATÁLOGO OSCURO PRO · FIX FILTROS
   ========================================== */

.hs-shop-archive {
	background: #050505;
	color: #f1ead7;
}

.hs-shop-hero {
	background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
	border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.hs-shop-hero .page-title {
	color: #f3e7c2;
}

.hs-shop-hero__description,
.hs-shop-hero__description p {
	color: #d8cfb8;
}

.hs-shop-hero__badges span {
	background: #111;
	border: 1px solid rgba(212, 175, 55, 0.16);
	color: #f0dfb0;
	box-shadow: none;
}

.hs-shop-toolbar {
	padding: 0 0 24px;
}

.hs-shop-toolbar .woocommerce-result-count {
	color: #cfc4a6;
}

.hs-shop-toolbar .orderby {
	background: #111;
	border: 1px solid rgba(212, 175, 55, 0.14);
	color: #f3ead2;
	box-shadow: none;
}

.hs-shop-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.hs-shop-sidebar__inner {
	position: sticky;
	top: 118px;
	padding: 22px;
	border-radius: 22px;
	background: #0d0d0d;
	border: 1px solid rgba(212, 175, 55, 0.12);
	box-shadow: none;
}

.hs-shop-sidebar__title {
	color: #f3e7c2;
}

.hs-shop-sidebar .widget,
.hs-shop-sidebar .wp-block-group,
.hs-shop-sidebar .wc-block-product-categories,
.hs-shop-sidebar .wc-block-attribute-filter,
.hs-shop-sidebar .wc-block-price-filter {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hs-shop-sidebar .widget-title,
.hs-shop-sidebar h2,
.hs-shop-sidebar h3 {
	color: #f3e7c2;
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 12px;
}

.hs-shop-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hs-shop-sidebar li {
	margin: 0 0 10px;
}

.hs-shop-sidebar a {
	color: #d9cfb2;
	text-decoration: none;
}

.hs-shop-sidebar a:hover {
	color: #ffd978;
}

.hs-shop-sidebar label,
.hs-shop-sidebar .wc-block-components-checkbox__label,
.hs-shop-sidebar .wc-block-components-filter-reset-button,
.hs-shop-sidebar .wc-layered-nav-term,
.hs-shop-sidebar .count {
	color: #d9cfb2 !important;
	font-size: 14px;
}

.hs-shop-sidebar input,
.hs-shop-sidebar select {
	background: #111;
	border: 1px solid rgba(212, 175, 55, 0.14);
	color: #f3ead2;
	border-radius: 12px;
}

.hs-shop-sidebar button,
.hs-shop-sidebar .button,
.hs-shop-sidebar .wc-block-components-button {
	background: #d4af37;
	color: #111 !important;
	border: none;
	border-radius: 999px;
	font-weight: 700;
}

.hs-shop-sidebar button:hover,
.hs-shop-sidebar .button:hover,
.hs-shop-sidebar .wc-block-components-button:hover {
	background: #f0c85b;
	color: #111 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: #0b0b0b;
	border: 1px solid rgba(212, 175, 55, 0.12);
	box-shadow: none;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.3);
	box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	color: #f3ead2;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
	color: #f0c85b;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
	background: #d4af37;
	color: #111 !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
	background: #f0c85b;
	color: #111 !important;
}

/* Ocultar bloque superior feo si existe */
.hs-shop-filters-bar,
.hs-shop-top-search,
.hs-shop-top-filters,
.hs-shop-archive .wcpf-filter-form,
.hs-shop-archive .prdctfltr_wc {
	margin-bottom: 24px;
}

/* Si quieres ocultar ese bloque custom raro completamente, activa esto:
.hs-shop-top-search,
.hs-shop-top-filters {
	display: none !important;
}
*/

@media (max-width: 1024px) {
	.hs-shop-layout {
		grid-template-columns: 1fr;
	}

	.hs-shop-sidebar__inner {
		position: static;
	}
}





/* ==========================================
   v3.1.3 · Product copy/FAQ/trust fixes from video
   ========================================== */
.single-product .hs-product-trust {
    gap: 16px;
    margin-top: 22px;
}

.single-product .hs-product-trust__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 18px 16px;
    border: 1px solid rgba(201, 168, 102, 0.18);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}

.single-product .hs-product-trust__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(201, 168, 102, 0.08);
    border: 1px solid rgba(201, 168, 102, 0.18);
    color: #d8b36a;
}

.single-product .hs-product-trust__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.single-product .hs-product-trust__content {
    min-width: 0;
}

.single-product .hs-product-trust__item strong {
    display: block;
    margin: 0 0 6px;
    color: #f4ead7;
    font-size: 15px;
    line-height: 1.3;
}

.single-product .hs-product-trust__item span {
    display: block;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1.55;
}

.single-product .hs-product-experience {
    display: none !important;
}

.single-product .hs-product-faq {
    margin-top: 64px;
}

.single-product .hs-product-faq__header h2 {
    max-width: 18ch;
}

.single-product .hs-product-faq__item summary {
    font-weight: 700;
}

.single-product .hs-product-faq__answer p {
    color: rgba(255,255,255,0.82);
}

@media (max-width: 921px) {
    .single-product .hs-product-trust {
        grid-template-columns: 1fr;
    }

    .single-product .hs-product-trust__item {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 16px;
        border-radius: 18px;
    }

    .single-product .hs-product-faq {
        margin-top: 50px;
    }
}



/* === SECCIÓN =========================================================== */
/* ======================================================
   HOTFIX 3.1.9 — FILTROS Y CARRITO FLOTANTE
   ====================================================== */

/* Filtros catálogo: sin botón "Aplicar filtros" */
.luxe-filter-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.luxe-filter-actions--single .luxe-btn {
    min-width: 132px;
}

@media (max-width: 767px) {
    .luxe-filter-actions {
        width: 100%;
        justify-content: stretch;
        margin-left: 0;
    }

    .luxe-filter-actions--single .luxe-btn {
        width: 100%;
    }
}

/* Drawer / carrito flotante con look HispaSeeds */
.ast-site-header-cart .widget_shopping_cart,
.ast-site-header-cart .widget_shopping_cart_content,
.ast-woocommerce-cart-menu-wrap,
.ast-woocommerce-cart-menu-wrap .widget_shopping_cart,
.ast-woocommerce-cart-menu-wrap .widget_shopping_cart_content,
.astra-cart-drawer,
.astra-cart-drawer .widget_shopping_cart_content,
.astra-cart-drawer .woocommerce-mini-cart,
.astra-cart-drawer .woocommerce-mini-cart__total,
.astra-cart-drawer .woocommerce-mini-cart__buttons,
.cart-drawer,
.cart-panel,
.off-canvas-cart,
.off-canvas-cart__content,
.off-canvas-cart__inner,
.astra-off-canvas-cart-wrapper,
.astra-off-canvas-cart-wrapper .widget_shopping_cart_content,
.astra-off-canvas-cart-wrapper .woocommerce-mini-cart,
.woocommerce.widget_shopping_cart,
.woocommerce .widget_shopping_cart_content {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(5, 5, 5, 0.99) 100%) !important;
    color: #f5f1e8 !important;
}

.ast-site-header-cart .widget_shopping_cart,
.ast-site-header-cart .widget_shopping_cart_content,
.ast-woocommerce-cart-menu-wrap .widget_shopping_cart,
.ast-woocommerce-cart-menu-wrap .widget_shopping_cart_content,
.astra-cart-drawer,
.cart-drawer,
.cart-panel,
.off-canvas-cart,
.astra-off-canvas-cart-wrapper,
.woocommerce .widget_shopping_cart_content {
    border-left: 1px solid rgba(200, 161, 90, 0.18) !important;
    box-shadow: -16px 0 42px rgba(0, 0, 0, 0.46) !important;
}

.astra-cart-drawer-header,
.cart-drawer-header,
.off-canvas-cart__header,
.astra-off-canvas-cart-wrapper .widget_shopping_cart_heading,
.ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
    background: transparent !important;
    color: #f5f1e8 !important;
    border-bottom: 1px solid rgba(200, 161, 90, 0.14) !important;
}

.woocommerce-mini-cart,
.widget_shopping_cart_content,
.woocommerce-mini-cart ul,
.widget_shopping_cart_content ul,
.woocommerce-mini-cart li,
.widget_shopping_cart_content li {
    background: transparent !important;
}

.woocommerce-mini-cart li,
.widget_shopping_cart_content li {
    border-bottom: 1px solid rgba(200, 161, 90, 0.10) !important;
    padding: 0 0 14px !important;
    margin: 0 0 14px !important;
}

.woocommerce-mini-cart-item a,
.widget_shopping_cart_content a,
.woocommerce-mini-cart__total,
.woocommerce-mini-cart__total strong,
.woocommerce-mini-cart__total .amount,
.widget_shopping_cart_content .total,
.widget_shopping_cart_content .total strong,
.widget_shopping_cart_content .amount,
.widget_shopping_cart_content .quantity {
    color: #f5f1e8 !important;
}

.woocommerce-mini-cart-item .quantity,
.widget_shopping_cart_content .quantity {
    color: #cfc7b8 !important;
}

.woocommerce-mini-cart__buttons,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 18px !important;
}

.woocommerce-mini-cart__buttons .button,
.widget_shopping_cart_content .button,
.ast-site-header-cart .button,
.astra-cart-drawer .button,
.off-canvas-cart .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 24px !important;
    border-radius: 6px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin: 0 !important;
    box-shadow: var(--luxe-shadow) !important;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease !important;
}

.woocommerce-mini-cart__buttons .button.checkout,
.widget_shopping_cart_content .button.checkout,
.ast-site-header-cart .button.checkout,
.astra-cart-drawer .button.checkout,
.off-canvas-cart .button.checkout {
    order: 2 !important;
    background: linear-gradient(180deg, #ddb86e 0%, #b4873d 100%) !important;
    color: #111111 !important;
    border: 1px solid #c8a15a !important;
}

.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout),
.widget_shopping_cart_content .button.wc-forward:not(.checkout),
.ast-site-header-cart .button.wc-forward:not(.checkout),
.astra-cart-drawer .button.wc-forward:not(.checkout),
.off-canvas-cart .button.wc-forward:not(.checkout) {
    order: 1 !important;
    background: transparent !important;
    color: #c8a15a !important;
    border: 1px solid #c8a15a !important;
    box-shadow: none !important;
}

.woocommerce-mini-cart__buttons .button:hover,
.widget_shopping_cart_content .button:hover,
.ast-site-header-cart .button:hover,
.astra-cart-drawer .button:hover,
.off-canvas-cart .button:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.05) !important;
}

.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover,
.widget_shopping_cart_content .button.wc-forward:not(.checkout):hover {
    color: #e0bf7a !important;
    border-color: #e0bf7a !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.woocommerce-mini-cart .remove,
.widget_shopping_cart_content .remove,
.ast-site-header-cart .remove,
.astra-cart-drawer .remove {
    color: #c8a15a !important;
    opacity: 1 !important;
}

.woocommerce-mini-cart .remove:hover,
.widget_shopping_cart_content .remove:hover,
.ast-site-header-cart .remove:hover,
.astra-cart-drawer .remove:hover {
    color: #e0bf7a !important;
    background: transparent !important;
}

@media (max-width: 767px) {
    .woocommerce-mini-cart__buttons .button,
    .widget_shopping_cart_content .button,
    .ast-site-header-cart .button,
    .astra-cart-drawer .button,
    .off-canvas-cart .button {
        min-height: 50px !important;
        font-size: 13px !important;
    }
}
