/*
Theme Name:        Noor Esencias
Theme URI:         https://nooresponcias.com
Description:       Child Theme para Blocksy. Marca de perfumería de nicho: elegante, lujosa y minimalista.
Author:            Noor Esencias
Author URI:        https://nooresponcias.com
Template:          blocksy
Version:           1.0.0
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       noor-esencias-blocksy
*/

/* Google Fonts ── Playfair Display (serif) + Montserrat (sans) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN TOKENS — NOOR ESENCIAS
   ========================================================================== */
:root {
    /* ==========================================================================
       BLOCKSY GLOBAL PALETTE OVERRIDES (Eliminador total de Azules de fábrica)
       ========================================================================== */
    --paletteColor1: #c9a96e !important;
    --paletteColor2: #e0c890 !important;
    --paletteColor3: #ffffff !important;
    --paletteColor4: #f5f0eb !important;
    --paletteColor5: rgba(201, 169, 110, 0.30) !important;
    --theme-palette-color-1: #c9a96e !important;
    --theme-palette-color-2: #e0c890 !important;
    --wp--preset--color--primary: #c9a96e !important;
    --theme-link-initial-color: #c9a96e !important;
    --theme-link-hover-color: #e0c890 !important;
    --theme-button-background-initial: #c9a96e !important;
    --theme-button-background-hover: #e0c890 !important;
    --theme-form-focus-color: #c9a96e !important;

    /* Fondos */
    --ne-bg-deep: #0a0a0a;
    --ne-bg-dark: #111111;
    --ne-bg-mid: #1a1a1a;
    --ne-bg-surface: #232323;

    /* Blancos / Neutros */
    --ne-white: #ffffff;
    --ne-white-soft: #f5f0eb;
    --ne-white-muted: #c9c2b8;
    --ne-white-faint: #6e6660;

    /* Dorado (acento principal) */
    --ne-gold: #c9a96e;
    --ne-gold-light: #e0c890;
    --ne-gold-dark: #a07d45;
    --ne-gold-muted: #7a5e35;

    /* Bronce (acento secundario) */
    --ne-bronze: #8c6a45;
    --ne-bronze-light: #b08860;

    /* Bordes */
    --ne-border-subtle: rgba(201, 169, 110, 0.12);
    --ne-border-light: rgba(255, 255, 255, 0.08);
    --ne-border-mid: rgba(201, 169, 110, 0.30);

    /* Sombras */
    --ne-shadow-sm: 0 2px 8px rgba(0, 0, 0, .50);
    --ne-shadow-md: 0 6px 24px rgba(0, 0, 0, .60);
    --ne-shadow-lg: 0 12px 48px rgba(0, 0, 0, .75);
    --ne-shadow-gold: 0 4px 20px rgba(201, 169, 110, .20);

    /* Tipografía */
    --ne-font-serif: 'Playfair Display', Georgia, serif;
    --ne-font-sans: 'Montserrat', system-ui, sans-serif;

    /* Transiciones */
    --ne-t-fast: 150ms ease;
    --ne-t-base: 300ms ease;
    --ne-t-slow: 600ms cubic-bezier(.4, 0, .2, 1);

    /* Z-index */
    --ne-z-base: 1;
    --ne-z-raised: 10;
    --ne-z-overlay: 300;
    --ne-z-modal: 400;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
.ne-front-page *,
.ne-front-page *::before,
.ne-front-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Override Blocksy spacing on the home page */
body.home .site-main,
body.home #main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.home {
    background-color: var(--ne-bg-deep);
    color: var(--ne-white-soft);
    font-family: var(--ne-font-sans);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes ne-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ne-scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.ne-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
    transition-delay: var(--ne-delay, 0ms);
}

.ne-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.ne-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section header */
.ne-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ne-section-label {
    display: block;
    font-family: var(--ne-font-sans);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--ne-gold);
    margin-bottom: 1.25rem;
}

.ne-section-label--center {
    text-align: center;
}

.ne-section-title {
    font-family: var(--ne-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ne-white);
    letter-spacing: -.02em;
}

.ne-section-subtitle {
    font-size: .95rem;
    color: var(--ne-white-muted);
    max-width: 500px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

.ne-section-footer {
    text-align: center;
    margin-top: 3.5rem;
}

/* Divider line */
.ne-divider-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}

/* ── H1 SEO oculto visualmente pero indexable por Google ── */
.ne-seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    font-size: 1px;
    line-height: 0;
    color: transparent;
    pointer-events: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.ne-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ne-font-sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    transition: all var(--ne-t-base);
}

.ne-btn--gold {
    background: var(--ne-gold);
    color: #0a0a0a;
    border-color: var(--ne-gold);
}

.ne-btn--gold:hover {
    background: var(--ne-gold-light);
    border-color: var(--ne-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, .35);
    color: #0a0a0a;
}

.ne-btn--ghost {
    background: transparent;
    color: var(--ne-white-soft);
    border-color: rgba(255, 255, 255, .2);
}

.ne-btn--ghost:hover {
    border-color: var(--ne-gold);
    color: var(--ne-gold);
}

.ne-btn--outline-gold {
    background: transparent;
    color: var(--ne-gold);
    border-color: var(--ne-gold-muted);
}

.ne-btn--outline-gold:hover {
    background: var(--ne-gold);
    color: #0a0a0a;
    border-color: var(--ne-gold);
}

.ne-btn__arrow {
    transition: transform var(--ne-t-base);
}

.ne-btn:hover .ne-btn__arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.ne-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, #1a1409 0%, #0a0a0a 60%),
        linear-gradient(135deg, #0f0e0a 0%, #0a0a0a 100%);
}

/* Subtle grid texture */
.ne-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(201, 169, 110, .025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(201, 169, 110, .025) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* Golden glow bottom */
.ne-hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 80% 25%, rgba(201, 169, 110, .08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 120%, rgba(201, 169, 110, .14) 0%, transparent 55%);
}

.ne-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 940px;
}

.ne-hero__eyebrow {
    display: inline-block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: var(--ne-gold);
    margin-bottom: 2rem;
}

.ne-hero__eyebrow::before,
.ne-hero__eyebrow::after {
    content: ' ─── ';
    color: var(--ne-gold-muted);
    font-size: .55rem;
    vertical-align: middle;
}

.ne-hero__title {
    font-family: var(--ne-font-serif);
    font-size: clamp(3rem, 8.5vw, 7.5rem);
    font-weight: 400;
    line-height: 1.04;
    color: var(--ne-white);
    letter-spacing: -.03em;
    margin-bottom: 1.75rem;
}

.ne-hero__title em {
    font-style: italic;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px var(--ne-gold-light);
}

.ne-hero__subtitle {
    font-size: clamp(.85rem, 1.4vw, 1rem);
    font-weight: 300;
    color: var(--ne-white-muted);
    line-height: 1.9;
    letter-spacing: .05em;
    margin-bottom: 3rem;
}

.ne-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Scroll hint line */
.ne-hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ne-hero__scroll-hint span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--ne-gold));
    margin: 0 auto;
    animation: ne-scroll-bounce 2.2s ease-in-out infinite;
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.ne-categories {
    padding: 8rem 0;
    background: var(--ne-bg-dark);
    position: relative;
}

.ne-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}

.ne-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ne-cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.ne-cat-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--ne-bg-mid);
    transition: transform .8s cubic-bezier(.4, 0, .2, 1);
}

.ne-cat-card:hover .ne-cat-card__img {
    transform: scale(1.06);
}

.ne-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .40) 45%, rgba(0, 0, 0, .10) 100%);
    transition: background var(--ne-t-base);
}

.ne-cat-card:hover .ne-cat-card__overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .58) 55%, rgba(0, 0, 0, .25) 100%);
}

.ne-cat-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    z-index: 2;
}

.ne-cat-card__title {
    font-family: var(--ne-font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--ne-white);
    margin-bottom: .5rem;
}

.ne-cat-card__desc {
    font-size: .8rem;
    color: var(--ne-white-muted);
    margin-bottom: 1.25rem;
    letter-spacing: .03em;
}

.ne-cat-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ne-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--ne-gold-muted);
    padding-bottom: .2rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--ne-t-base), transform var(--ne-t-base), color var(--ne-t-base);
}

.ne-cat-card:hover .ne-cat-card__link {
    opacity: 1;
    transform: translateY(0);
}

.ne-cat-card__link span {
    transition: transform var(--ne-t-base);
}

.ne-cat-card__link:hover span {
    transform: translateX(5px);
}

/* ==========================================================================
   FEATURED PRODUCTS (WooCommerce overrides)
   ========================================================================== */
.ne-featured {
    padding: 8rem 0;
    background: var(--ne-bg-deep);
    position: relative;
}

.ne-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}

/* WooCommerce grid reset */
.ne-products-wrap ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ne-products-wrap ul.products li.product {
    background: var(--ne-bg-dark) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform .4s ease, box-shadow .4s ease !important;
}

.ne-products-wrap ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(201, 169, 110, .15) !important;
}

/* Product image */
.ne-products-wrap ul.products li.product img {
    width: 100% !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform .6s ease, filter .4s ease !important;
    filter: brightness(.9) !important;
}

.ne-products-wrap ul.products li.product:hover img {
    transform: scale(1.05) !important;
    filter: brightness(1) !important;
}

/* Product title */
.ne-products-wrap ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ne-font-serif) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: var(--ne-white-soft) !important;
    padding: 1.25rem 1.25rem .4rem !important;
}

/* Price */
.ne-products-wrap ul.products li.product .price {
    font-family: var(--ne-font-sans) !important;
    font-size: .85rem !important;
    font-weight: 500 !important;
    color: var(--ne-gold) !important;
    padding: 0 1.25rem 1.4rem !important;
    display: block !important;
}

.ne-products-wrap ul.products li.product .price del {
    color: var(--ne-white-faint) !important;
    margin-right: .4rem !important;
}

/* Add to cart — hidden, revealed on hover */
.ne-products-wrap ul.products li.product .button,
.ne-products-wrap ul.products li.product .add_to_cart_button {
    position: absolute !important;
    inset: auto 0 0 0 !important;
    width: 100% !important;
    background: var(--ne-gold) !important;
    color: #0a0a0a !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: var(--ne-font-sans) !important;
    font-size: .68rem !important;
    font-weight: 700 !important;
    letter-spacing: .2em !important;
    text-transform: uppercase !important;
    padding: .9rem 1rem !important;
    text-align: center !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
    transition: opacity .35s ease, transform .35s ease, background .25s ease !important;
    cursor: pointer !important;
}

.ne-products-wrap ul.products li.product:hover .button,
.ne-products-wrap ul.products li.product:hover .add_to_cart_button {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.ne-products-wrap ul.products li.product .button:hover,
.ne-products-wrap ul.products li.product .add_to_cart_button:hover {
    background: var(--ne-gold-light) !important;
}

.ne-woo-notice {
    text-align: center;
    color: var(--ne-white-muted);
    font-family: var(--ne-font-sans);
    padding: 4rem 0;
}

/* ==========================================================================
   BRAND STORY
   ========================================================================== */
.ne-story {
    padding: 10rem 0;
    background: var(--ne-bg-dark);
    position: relative;
    overflow: hidden;
}

.ne-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}

/* Giant decorative watermark */
.ne-story::after {
    content: 'NOOR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ne-font-serif);
    font-size: 28vw;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 169, 110, .04);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.ne-story__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, .05) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(140, 106, 69, .04) 0%, transparent 45%);
}

.ne-story__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.ne-story__title {
    font-family: var(--ne-font-serif);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--ne-white);
    margin-bottom: 2.5rem;
}

.ne-story__title em {
    font-style: italic;
    color: var(--ne-gold);
}

.ne-story__text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ne-white-muted);
    line-height: 1.95;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.ne-story__stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid var(--ne-border-subtle);
}

.ne-story__stat {
    text-align: center;
}

.ne-story__stat-num {
    display: block;
    font-family: var(--ne-font-serif);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--ne-gold);
    line-height: 1;
    margin-bottom: .5rem;
}

.ne-story__stat-label {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ne-white-faint);
}

/* ==========================================================================
   NEWSLETTER / CLUB VIP
   ========================================================================== */
.ne-newsletter {
    padding: 8rem 0;
    background: var(--ne-bg-deep);
    position: relative;
    border-top: 1px solid var(--ne-border-light);
}

.ne-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}

.ne-newsletter__inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.ne-newsletter__eyebrow {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--ne-gold);
    margin-bottom: 1.5rem;
}

.ne-newsletter__title {
    font-family: var(--ne-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ne-white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.ne-newsletter__subtitle {
    font-size: .9rem;
    font-weight: 300;
    color: var(--ne-white-muted);
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

/* Form fields */
.ne-nl-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.ne-nl-field {
    position: relative;
}

.ne-nl-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: var(--ne-white-soft);
    font-family: var(--ne-font-sans);
    font-size: .9rem;
    font-weight: 300;
    padding: 1rem 0;
    outline: none;
    transition: border-color var(--ne-t-base);
    -webkit-appearance: none;
    appearance: none;
}

.ne-nl-input:focus {
    border-color: var(--ne-gold);
}

.ne-nl-label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: .8rem;
    color: var(--ne-white-faint);
    letter-spacing: .07em;
    pointer-events: none;
    transition: all var(--ne-t-base);
}

/* Float label */
.ne-nl-input:focus+.ne-nl-label,
.ne-nl-input:not(:placeholder-shown)+.ne-nl-label {
    top: -.7rem;
    font-size: .62rem;
    color: var(--ne-gold);
    letter-spacing: .15em;
}

/* Animated underline */
.ne-nl-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ne-gold);
    transition: width .4s ease;
}

.ne-nl-input:focus~.ne-nl-line {
    width: 100%;
}

.ne-newsletter__submit {
    margin: 0 auto;
    display: flex;
}

.ne-nl-disclaimer {
    margin-top: 1.5rem;
    font-size: .68rem;
    color: var(--ne-white-faint);
    letter-spacing: .05em;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .ne-products-wrap ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {

    .ne-hero__eyebrow::before,
    .ne-hero__eyebrow::after {
        display: none;
    }

    .ne-cat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ne-cat-card {
        aspect-ratio: 16/9;
    }

    .ne-cat-card__link {
        opacity: 1;
        transform: translateY(0);
    }

    .ne-categories,
    .ne-story,
    .ne-newsletter {
        padding: 5rem 0;
    }

    .ne-featured {
        padding: 5rem 0;
    }

    .ne-products-wrap ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Always show add-to-cart on mobile */
    .ne-products-wrap ul.products li.product .button,
    .ne-products-wrap ul.products li.product .add_to_cart_button {
        opacity: 1 !important;
        transform: translateY(0) !important;
        position: relative !important;
    }

    .ne-story {
        padding: 6rem 0;
    }

    .ne-story__stats {
        gap: 2.5rem;
    }

    .ne-nl-fields {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .ne-container {
        padding: 0 1.25rem;
    }

    .ne-hero__title {
        font-size: 2.75rem;
    }

    .ne-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .ne-btn {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }

    .ne-products-wrap ul.products {
        grid-template-columns: 1fr !important;
    }

    .ne-story__stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
}

/* ── Colección: carrusel horizontal en mobile pequeño ── */
@media (max-width: 480px) {

    /* El wrapper se convierte en el eje de scroll */
    .ne-products-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .ne-products-wrap::-webkit-scrollbar { display: none; }

    /* La lista pasa de grid a fila horizontal */
    .ne-products-wrap ul.products {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        gap: 0.75rem !important;
        padding: 0.5rem 1rem 1rem 1rem !important;
        scroll-snap-type: x mandatory;
        -webkit-scroll-snap-type: x mandatory;
    }

    /* Cada card: 72vw — se ve el borde del siguiente (peek effect) */
    .ne-products-wrap ul.products li.product {
        flex: 0 0 72vw !important;
        width: 72vw !important;
        max-width: 280px !important;
        scroll-snap-align: start;
    }

    /* Indicador dorado debajo */
    .ne-products-wrap::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: rgba(201,169,110,0.4);
        border-radius: 2px;
        margin: 0.25rem auto 0;
    }
}
/* ==========================================================================
   BRANDS — VENETIAN BLINDS
   ========================================================================== */
.ne-brands {
  background: var(--ne-bg-deep);
  position: relative;
}
.ne-brands::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}
.ne-brands__header {
  text-align: center;
  padding: 7rem 2rem 3.5rem;
}

/* ── Panels container ── */
.ne-brands__panels {
  display: flex;
  height: 78vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
}

/* ── Single panel ── */
.ne-brand-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(201,169,110,0.08);
  transition: flex 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.ne-brand-panel:last-child { border-right: none; }

/* Compress non-active when container has an active panel */
.ne-brands__panels.has-active .ne-brand-panel        { flex: 0.22; }
.ne-brands__panels.has-active .ne-brand-panel.is-active { flex: 3.2; }

/* ── Background image ── */
.ne-brand-panel__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.28) saturate(0.6);
  transition: filter 0.75s ease, transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
}
.ne-brand-panel.is-active .ne-brand-panel__bg {
  filter: brightness(0.85) saturate(1);
  /* transform is handled by JS parallax */
}

/* ── Dark gradient overlay ── */
.ne-brand-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.10) 100%
  );
  transition: background 0.5s ease;
}
.ne-brand-panel.is-active .ne-brand-panel__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.20) 60%,
    rgba(0,0,0,0.02) 100%
  );
}

/* ── Gold shimmer sweep on activation ── */
.ne-brand-panel__shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(201,169,110,0.18) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  pointer-events: none;
  transition: none;
}
.ne-brand-panel.is-active .ne-brand-panel__shimmer {
  transform: translateX(120%);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Decorative number ── */
.ne-brand-panel__num {
  position: absolute; top: 2rem; right: 1.5rem;
  font-family: var(--ne-font-serif);
  font-size: 6rem; font-weight: 400; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
.ne-brand-panel.is-active .ne-brand-panel__num { opacity: 1; }

/* ── Vertical label (compressed state) ── */
.ne-brand-panel__label {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--ne-font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ne-gold); white-space: nowrap;
  transition: opacity 0.3s ease;
}
.ne-brand-panel.is-active .ne-brand-panel__label { opacity: 0; pointer-events: none; }

/* ── Expanded content ── */
.ne-brand-panel__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 2.5rem 3rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease 0.25s, transform 0.45s ease 0.25s;
  pointer-events: none;
}
.ne-brand-panel.is-active .ne-brand-panel__content {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}

.ne-brand-panel__fragrance {
  font-family: var(--ne-font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ne-gold); margin-bottom: 0.6rem;
}
.ne-brand-panel__name {
  font-family: var(--ne-font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 400;
  color: var(--ne-white); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 0.85rem;
}
.ne-brand-panel__desc {
  font-family: var(--ne-font-sans);
  font-size: 0.85rem; font-weight: 300;
  color: var(--ne-white-muted); line-height: 1.7;
  max-width: 320px; margin-bottom: 1.75rem;
}
.ne-brand-panel__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ne-font-sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ne-gold); text-decoration: none;
  border-bottom: 1px solid var(--ne-gold-muted);
  padding-bottom: 0.25rem;
  transition: color 0.3s, border-color 0.3s;
}
.ne-brand-panel__cta span { transition: transform 0.3s; }
.ne-brand-panel__cta:hover { color: var(--ne-gold-light); border-color: var(--ne-gold-light); }
.ne-brand-panel__cta:hover span { transform: translateX(5px); }

/* ── Golden left-edge accent line on active panel ── */
.ne-brand-panel.is-active::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--ne-gold), transparent);
  z-index: 3;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ne-brands__panels {
    flex-direction: column;
    height: auto; max-height: none;
  }
  .ne-brand-panel {
    flex: none !important;
    height: 220px;
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.08);
  }
  .ne-brand-panel__bg    { filter: brightness(0.55) saturate(0.8); }
  .ne-brand-panel__label { display: none; }
  .ne-brand-panel__content {
    opacity: 1; transform: none; pointer-events: auto;
  }
  .ne-brand-panel__num   { display: none; }
  .ne-brands__panels.has-active .ne-brand-panel,
  .ne-brands__panels.has-active .ne-brand-panel.is-active { flex: none; }
}

/* ==========================================================================
   BRANDS — INFINITE MARQUEE
   ========================================================================== */
.ne-brands {
  background: var(--ne-bg-deep);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.ne-brands::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}

.ne-brands__header {
  text-align: center;
  padding: 0 2rem 4rem;
}

/* ── Marquee wrapper ── */
.ne-marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

/* Faders laterales */
.ne-marquee-fade {
  position: absolute; top: 0; bottom: 0;
  width: 200px; z-index: 2; pointer-events: none;
}
.ne-marquee-fade--left  { left:  0; background: linear-gradient(to right, var(--ne-bg-deep), transparent); }
.ne-marquee-fade--right { right: 0; background: linear-gradient(to left,  var(--ne-bg-deep), transparent); }

/* ── Track (fila) ── */
.ne-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: ne-marquee 30s linear infinite;
  will-change: transform;
}
.ne-marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 38s;
  margin-top: 1.5rem;
}

@keyframes ne-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Brand Card ── */
.ne-brand-card {
  flex-shrink: 0;
  width: 300px; height: 400px;
  position: relative; overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201,169,110,0.1);
  transition:
    border-color 0.4s ease,
    transform    0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow   0.45s ease;
}
.ne-brand-card--sm { width: 240px; height: 320px; }

.ne-brand-card:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.65),
    0 0 0 1px rgba(201,169,110,0.22);
  z-index: 5;
}

/* Image */
.ne-brand-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: brightness(0.5) saturate(0.75);
  transform: scale(1.03);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.ne-brand-card:hover .ne-brand-card__img {
  filter: brightness(0.88) saturate(1.05);
  transform: scale(1.08);
}

/* Overlay gradient */
.ne-brand-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.25) 55%,
    transparent 100%
  );
}

/* Gold shimmer */
.ne-brand-card__shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg, transparent 30%,
    rgba(201,169,110,0.16) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  pointer-events: none;
}
.ne-brand-card:hover .ne-brand-card__shimmer {
  transform: translateX(120%);
  transition: transform 0.75s ease;
}

/* Left accent line */
.ne-brand-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--ne-gold), transparent);
  z-index: 3;
  transition: height 0.4s ease;
}
.ne-brand-card:hover::before { height: 100%; }

/* Card body */
.ne-brand-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem 2rem;
}

.ne-brand-card__fragrance {
  font-family: var(--ne-font-sans);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ne-gold); margin-bottom: 0.4rem;
}
.ne-brand-card__name {
  font-family: var(--ne-font-serif);
  font-size: 1.55rem; font-weight: 400;
  color: var(--ne-white); line-height: 1.15;
  margin-bottom: 0;
}
.ne-brand-card__desc {
  font-size: 0.78rem; font-weight: 300;
  color: var(--ne-white-muted); line-height: 1.6;
  margin-top: 0.55rem;
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateY(6px);
  transition: max-height 0.35s ease, opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.ne-brand-card:hover .ne-brand-card__desc {
  max-height: 80px; opacity: 1; transform: translateY(0);
}

.ne-brand-card__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ne-gold); text-decoration: none;
  border-bottom: 1px solid var(--ne-gold-muted);
  padding-bottom: 0.15rem;
  opacity: 0; transform: translateY(5px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, color 0.2s;
}
.ne-brand-card:hover .ne-brand-card__cta {
  opacity: 1; transform: translateY(0);
}
.ne-brand-card__cta span { transition: transform 0.25s; }
.ne-brand-card__cta:hover { color: var(--ne-gold-light); }
.ne-brand-card__cta:hover span { transform: translateX(4px); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .ne-brand-card       { width: 220px; height: 300px; }
  .ne-brand-card--sm   { width: 180px; height: 240px; }
  .ne-marquee-fade     { width: 60px; }
  .ne-brands           { padding: 4rem 0 3rem; }
  .ne-brands__header   { padding-bottom: 2.5rem; }
}

/* ==========================================================================
   HERO — CINEMATIC VERSION C (Noor Esencias)
   ========================================================================== */

/* Override: el hero cinematico ocupa pantalla completa con posicion relativa */
.ne-hero--cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  /* Quitar el glow estatico del hero original */
  background: var(--ne-bg-deep);
}

/* ── Background slideshow ── */
.ne-hero__bg { position: absolute; inset: 0; z-index: 0; }

.ne-hero__bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: brightness(0.28) saturate(0.6);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 8s ease;
}
.ne-hero__bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.ne-hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.6)  100%
  );
  z-index: 1;
}

/* ── Inner ── */
.ne-hero__inner {
  position: relative; z-index: 2;
  max-width: 860px; width: 100%;
}

/* ── Brand identity ── */
.ne-hero__brand {
  margin-bottom: 1.75rem;
  animation: ne-fadeUp 0.8s ease both;
}
.ne-hero__brand-crown {
  display: block;
  font-size: 1.5rem;
  color: var(--ne-gold);
  margin-bottom: 0.3rem;
  line-height: 1;
}
.ne-hero__brand-name {
  font-family: var(--ne-font-serif);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ne-gold);
  line-height: 1;
}
.ne-hero__brand-tagline {
  font-family: var(--ne-font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ne-white-muted);
  margin-top: 0.35rem;
}

/* ── Headline rotator ── */
.ne-hero__headline-wrap {
  min-height: clamp(7rem, 18vw, 13.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.ne-hero__headline {
  font-family: var(--ne-font-serif);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ne-white);
  position: absolute;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  width: 100%;
}
.ne-hero__headline.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.ne-hero__headline em {
  font-style: italic;
  color: var(--ne-gold);
}
.ne-hero__price-tag {
  display: inline-block;
  background: var(--ne-gold);
  color: var(--ne-bg-deep);
  font-family: var(--ne-font-sans);
  font-size: 0.42em;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.55em;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.4em;
}

/* ── Price stats bar ── */
.ne-hero__price-bar {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(201,169,110,0.25);
  margin-bottom: 2.25rem;
  overflow: hidden;
  animation: ne-fadeUp 0.9s ease 0.25s both;
}
.ne-hero__price-stat {
  padding: 0.65rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.15rem;
}
.ne-hero__price-stat + .ne-hero__price-stat {
  border-left: 1px solid rgba(201,169,110,0.18);
}
.ne-hero__price-stat--hl { background: rgba(201,169,110,0.09); }
.ne-hero__price-stat-label {
  font-family: var(--ne-font-sans);
  font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ne-white-muted);
}
.ne-hero__price-stat-value {
  font-family: var(--ne-font-serif);
  font-size: 0.95rem; font-weight: 400;
  color: var(--ne-gold-light);
}

/* ── Brand pills ── */
.ne-hero__brand-pills {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.75rem;
  animation: ne-fadeUp 0.9s ease 0.45s both;
}
.ne-hero__brand-pill {
  font-family: var(--ne-font-sans);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ne-white-muted);
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 20px;
  transition: color 0.3s, border-color 0.3s;
}
.ne-hero__brand-pill:hover {
  color: var(--ne-gold); border-color: rgba(201,169,110,0.4);
}

/* ── Slide indicators ── */
.ne-hero__indicators {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 3;
}
.ne-hero__indicator {
  width: 28px; height: 2px;
  background: rgba(201,169,110,0.22);
  cursor: pointer;
  transition: background 0.3s, width 0.35s;
}
.ne-hero__indicator.is-active {
  background: var(--ne-gold); width: 46px;
}

/* ── Actions override para centrar ── */
.ne-hero--cinematic .ne-hero__actions {
  justify-content: center;
  animation: ne-fadeUp 0.9s ease 0.35s both;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .ne-hero--cinematic { padding: 5rem 1.5rem 5rem; }
  .ne-hero__price-bar { flex-direction: column; width: 100%; max-width: 280px; }
  .ne-hero__price-stat + .ne-hero__price-stat {
    border-left: none; border-top: 1px solid rgba(201,169,110,0.18);
  }
  .ne-hero__price-stat { padding: 0.55rem 1rem; }
  .ne-hero__brand-pills { gap: 0.4rem; }
  .ne-hero__indicator { width: 20px; }
  .ne-hero__indicator.is-active { width: 34px; }
}

/* ==========================================================================
   NOOR ESENCIAS — SHOP PAGE (archive-product.php)
   ========================================================================== */

/* ── Layout global ── */
.ne-shop-page           { background: var(--ne-bg-deep, #0a0a0a); min-height: 100vh; }
.ne-shop-layout         { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

/* ══════════════════════════ SIDEBAR ══════════════════════════ */
.ne-shop-sidebar {
  border-right: 1px solid rgba(201,169,110,.1);
  padding: 3rem 1.75rem;
  position: sticky; top: 0;
  height: 100vh; overflow-y: auto;
  background: #0f0f0f;
  scrollbar-width: thin; scrollbar-color: #7a5e35 transparent;
}
.ne-shop-sidebar::-webkit-scrollbar { width: 3px; }
.ne-shop-sidebar::-webkit-scrollbar-thumb { background: #7a5e35; }

.ne-sb-section  { margin-bottom: 2.5rem; }
.ne-sb-title    {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .4em; text-transform: uppercase;
  color: #c9a96e; margin-bottom: 1.25rem;
}
.ne-sb-list     { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.ne-sb-list li  { display: flex; }
.ne-sb-list li a {
  display: flex; align-items: center; gap: .7rem; width: 100%;
  font-size: .72rem; color: #c9c2b8;
  text-decoration: none; transition: color .2s;
}
.ne-sb-list li a:hover,
.ne-sb-list li.active a { color: #f5f0eb; }
.ne-sb-check {
  width: 14px; height: 14px; flex-shrink: 0;
  border: 1px solid rgba(201,169,110,.3);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.ne-sb-check.is-checked         { background: #c9a96e; border-color: #c9a96e; }
.ne-sb-check.is-checked::after  { content: '✓'; font-size: .55rem; color: #0a0a0a; }
.ne-sb-count    { margin-left: auto; font-size: .6rem; color: #6e6660; }

/* ── Brand Filter ── */
.ne-brand-select-wrap {
  width: 100%; margin-top: 0.5rem;
}
.ne-brand-select {
  width: 100%; padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #f5f0eb; font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
  font-size: 0.75rem; font-weight: 500;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23c9a96e'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  outline: none;
}
.ne-brand-select:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 1px rgba(201,169,110,0.3);
}
.ne-brand-select option {
  background: #111111; color: #f5f0eb; padding: 0.5rem;
}

/* ── Price range ── */
.ne-price-form   { width: 100%; }
.ne-price-range  { display: flex; flex-direction: column; gap: .6rem; margin-top: .5rem; width: 100%; }
.ne-price-field  { display: flex; flex-direction: column; gap: .28rem; }
.ne-price-label  {
  font-size: .52rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: #6e6660;
}
.ne-price-input  {
  width: 100%; padding: .5rem .7rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  border-bottom: 1px solid rgba(201,169,110,.4);
  color: #f5f0eb;
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
  font-size: .78rem; transition: border-color .2s;
}
.ne-price-input:focus { outline: none; border-color: #c9a96e; }
.ne-price-sep    {
  display: flex; align-items: center; gap: .5rem;
  font-size: .55rem; color: #6e6660; letter-spacing: .1em;
}
.ne-price-sep::before,
.ne-price-sep::after { content: ''; flex: 1; height: 1px; background: rgba(201,169,110,.12); }
.ne-price-slider {
  width: 100%; margin-top: .3rem;
  -webkit-appearance: none; appearance: none;
  height: 2px; background: rgba(201,169,110,.2); outline: none;
}
.ne-price-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: #c9a96e; cursor: pointer; border: 2px solid #0a0a0a;
}
.ne-price-slider::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: #c9a96e; cursor: pointer; border: 2px solid #0a0a0a;
}
.ne-price-submit {
  margin-top: .4rem; padding: .55rem 1rem; width: 100%;
  font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.3);
  color: #c9a96e; cursor: pointer; transition: all .25s;
}
.ne-price-submit:hover { background: rgba(201,169,110,.2); border-color: #c9a96e; }

/* ══════════════════════════ MAIN ══════════════════════════ */
.ne-shop-main { padding: 3rem 2.5rem; }

/* Header */
.ne-shop-main-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap;
}
.ne-shop-main-title {
  font-family: var(--ne-font-serif, 'Playfair Display', serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400; color: #fff; letter-spacing: -.02em;
}
.ne-shop-meta { font-size: .65rem; color: #c9c2b8; margin-top: .4rem; }

.ne-shop-topbar  { display: flex; align-items: center; gap: .75rem; }

/* Lupa button */
.ne-shop-search-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: transparent;
  border: 1px solid rgba(201,169,110,.2); cursor: pointer;
  color: #c9c2b8; transition: color .2s, border-color .2s;
}
.ne-shop-search-btn svg { width: 18px; height: 18px; }
.ne-shop-search-btn:hover { color: #c9a96e; border-color: rgba(201,169,110,.5); }

/* WooCommerce sort override */
.ne-shop-sort .woocommerce-ordering select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  color: #c9c2b8; font-size: .65rem; font-weight: 500;
  padding: .5rem 2rem .5rem .85rem; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23c9a96e'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center;
  font-family: inherit;
}

/* ══════════════════════════ PRODUCT GRID ══════════════════════════ */
.ne-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Product Card ── */
.ne-pcard {
  background: #111111; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.ne-pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.ne-pcard__media { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.ne-pcard__img   {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: brightness(.78);
  transition: transform .55s ease, filter .4s ease;
}
.ne-pcard:hover .ne-pcard__img { transform: scale(1.08); filter: brightness(.9); }
.ne-pcard__img--empty {
  display: flex; align-items: center; justify-content: center;
  background: #1a1a1a;
}
.ne-pcard__img--empty svg { width: 64px; height: 64px; }

.ne-pcard__badge {
  position: absolute; top: .85rem; right: .85rem; z-index: 2;
  font-size: .52rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: #c9a96e; color: #0a0a0a; padding: .2rem .6rem;
}

/* Quick add overlay */
.ne-pcard__quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,.9); padding: .8rem 1rem;
  z-index: 2; display: flex; gap: .5rem;
  transform: translateY(100%); transition: transform .3s ease;
}
.ne-pcard:hover .ne-pcard__quick { transform: translateY(0); }

/* WooCommerce add-to-cart button override */
.ne-pcard__quick .button,
.ne-pcard__quick .add_to_cart_button,
.ne-pcard__add-btn {
  flex: 1; font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .65rem; background: #c9a96e; color: #0a0a0a;
  border: none; cursor: pointer; text-align: center;
  text-decoration: none; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.ne-pcard__quick .button:hover,
.ne-pcard__quick .add_to_cart_button:hover,
.ne-pcard__add-btn:hover {
  background: var(--ne-gold-light);
  color: #0a0a0a !important;
}
.ne-pcard__wish {
  padding: .65rem .85rem; background: rgba(255,255,255,.07);
  border: none; cursor: pointer; color: #fff; font-size: .9rem;
  transition: background .2s, color .2s;
}
.ne-pcard__wish:hover { background: rgba(201,169,110,.18); color: #c9a96e; }

/* Body */
.ne-pcard__body    { padding: 1.1rem 1rem 1.3rem; }
.ne-pcard__brand   {
  font-size: .55rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: #c9a96e; margin-bottom: .3rem;
}
.ne-pcard__name    {
  font-family: var(--ne-font-serif, 'Playfair Display', serif);
  font-size: 1rem; font-weight: 400; line-height: 1.3; margin-bottom: .5rem;
}
.ne-pcard__name a  { color: #fff; text-decoration: none; transition: color .2s; }
.ne-pcard__name a:hover { color: #c9a96e; }
.ne-pcard__price-row { display: flex; align-items: center; justify-content: space-between; }
.ne-pcard__price      { font-size: .82rem; font-weight: 600; color: #f5f0eb; }

/* WooCommerce price HTML: ins/del */
.ne-pcard__price ins  { text-decoration: none; color: #e0c890; }
.ne-pcard__price del  { font-size: .72rem; color: #6e6660; font-weight: 400; margin-right: .4rem; }
.ne-pcard__price .amount { font-weight: 600; }

/* Gold underline hover */
.ne-pcard::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #c9a96e;
  transition: width .4s ease;
}
.ne-pcard:hover::after { width: 100%; }

/* ══════════════════════════ PAGINATION ══════════════════════════ */
.ne-shop-pagination { padding: 3rem 0 1rem; }
.ne-shop-pagination .woocommerce-pagination ul {
  display: flex; justify-content: center; gap: .5rem;
  list-style: none; padding: 0;
}
.ne-shop-pagination .woocommerce-pagination ul li a,
.ne-shop-pagination .woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  font-size: .65rem; font-weight: 600;
  border: 1px solid rgba(201,169,110,.2);
  color: #c9c2b8; text-decoration: none;
  transition: all .2s;
}
.ne-shop-pagination .woocommerce-pagination ul li a:hover,
.ne-shop-pagination .woocommerce-pagination ul li span.current {
  background: rgba(201,169,110,.1); border-color: #c9a96e; color: #c9a96e;
}

/* Empty state */
.ne-shop-empty        { text-align: center; padding: 5rem 2rem; }
.ne-shop-empty__text  { font-size: 1rem; color: #c9c2b8; margin-bottom: 2rem; }

/* ══════════════════════════ SEARCH OVERLAY ══════════════════════════ */
.ne-so {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column;
  background: rgba(5,5,5,.97); backdrop-filter: blur(24px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(.4,0,.2,1);
}
.ne-so.is-open { opacity: 1; pointer-events: all; }

.ne-so__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  border-bottom: 1px solid rgba(201,169,110,.1);
  flex-shrink: 0;
}
.ne-so__brand  {
  font-family: var(--ne-font-serif, 'Playfair Display', serif);
  font-size: 1rem; color: #c9a96e;
}
.ne-so__close  {
  display: flex; align-items: center; gap: .5rem;
  background: none; border: none; cursor: pointer;
  color: #c9c2b8; font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  transition: color .2s; padding: 0;
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
}
.ne-so__close svg { width: 16px; height: 16px; }
.ne-so__close:hover { color: #c9a96e; }

.ne-so__body {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 3.5rem 3rem 2rem;
  max-width: 840px; width: 100%; margin: 0 auto;
  overflow-y: auto;
}

.ne-so__field-wrap {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  border-bottom: 1px solid rgba(201,169,110,.35);
  margin-bottom: 2.5rem; padding-bottom: .5rem;
}
.ne-so__field-wrap svg { width: 22px; height: 22px; color: #7a5e35; flex-shrink: 0; }
.ne-so__input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--ne-font-serif, 'Playfair Display', serif);
  font-size: clamp(1.6rem, 5vw, 2.8rem); font-weight: 400;
  color: #fff; caret-color: #c9a96e;
  padding: .4rem 0;
}
.ne-so__input::placeholder { color: rgba(201,169,110,.28); }
.ne-so__clear {
  background: none; border: none; cursor: pointer;
  color: #c9c2b8; font-size: 1.1rem; transition: color .2s; flex-shrink: 0;
}
.ne-so__clear:hover { color: #c9a96e; }

/* Suggestions */
.ne-so__sugg-title {
  font-size: .58rem; font-weight: 700; letter-spacing: .38em;
  text-transform: uppercase; color: #c9a96e; margin-bottom: 1.1rem; width: 100%;
}
.ne-so__sugg-tags { display: flex; gap: .55rem; flex-wrap: wrap; width: 100%; margin-bottom: 0; }
.ne-so__tag {
  font-size: .65rem; font-weight: 500; letter-spacing: .1em;
  padding: .4rem 1rem; border: 1px solid rgba(201,169,110,.2);
  background: transparent; color: #c9c2b8; cursor: pointer; transition: all .2s;
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
}
.ne-so__tag:hover { background: rgba(201,169,110,.08); border-color: rgba(201,169,110,.45); color: #c9a96e; }

/* Results */
.ne-so__results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem; width: 100%; margin-top: 2rem;
}
.ne-so__result-card {
  background: #111; text-decoration: none;
  transition: transform .3s; display: block; overflow: hidden;
}
.ne-so__result-card:hover { transform: translateY(-4px); }
.ne-so__rc-img  {
  aspect-ratio: 1/1; background-size: cover; background-position: center top;
  filter: brightness(.72); transition: filter .3s;
}
.ne-so__result-card:hover .ne-so__rc-img { filter: brightness(.9); }
.ne-so__rc-info { padding: .65rem .75rem; }
.ne-so__rc-cat  { font-size: .52rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: #c9a96e; }
.ne-so__rc-name { font-family: var(--ne-font-serif, 'Playfair Display', serif); font-size: .9rem; color: #fff; margin-top: .2rem; line-height: 1.3; }
.ne-so__rc-price { font-size: .72rem; color: #c9c2b8; margin-top: .25rem; }
.ne-so__rc-price ins  { text-decoration: none; color: #e0c890; }
.ne-so__rc-price del  { color: #6e6660; font-size: .65rem; }
.ne-so__loading { color: #c9c2b8; font-size: .8rem; text-align: center; width: 100%; padding: 2rem 0; }
.ne-so__empty   { color: #c9c2b8; font-size: .8rem; text-align: center; width: 100%; padding: 2rem 0; }

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 1100px) {
  .ne-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ne-shop-layout         { grid-template-columns: 1fr; }
  .ne-shop-sidebar        { display: none; }
  .ne-shop-main           { padding: 2rem 1.25rem; }
  .ne-so__header          { padding: 1rem 1.5rem; }
  .ne-so__body            { padding: 2.5rem 1.5rem 2rem; }
}
@media (max-width: 600px) {
  .ne-product-grid        { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .ne-pcard__name         { font-size: 0.85rem; margin-bottom: 0.2rem; }
  .ne-pcard__price        { font-size: 0.75rem; }
  .ne-pcard__brand        { font-size: 0.45rem; }
  .ne-pcard__badge        { font-size: 0.45rem; padding: 0.15rem 0.4rem; top: 0.5rem; right: 0.5rem; }
  .ne-pcard__body         { padding: 0.75rem 0.6rem 0.85rem; }
  .ne-pcard__quick .button,
  .ne-pcard__quick .add_to_cart_button,
  .ne-pcard__add-btn      { padding: 0.45rem; font-size: 0.5rem; }
  .ne-so__input           { font-size: 1.5rem; }
  .ne-so__results         { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   NOOR ESENCIAS — SITE HEADER (header.php custom)
   ========================================================================== */

/* ── Compensar admin bar de WordPress ── */
body.admin-bar .ne-site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .ne-site-header { top: 46px; }
}

/* ── Wrapper principal ── */
.ne-site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  width: 100%;
  background: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  transition: background .3s ease;
}

.ne-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
  gap: 1.5rem;
}

/* ── LOGO / WORDMARK ── */
.ne-site-header__logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ne-site-header__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.ne-site-header__wordmark {
  display: flex;
  align-items: baseline;
  gap: .3em;
  line-height: 1;
}
.ne-site-header__wordmark-noor {
  font-family: var(--ne-font-serif, 'Playfair Display', serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: #c9a96e;
  letter-spacing: .06em;
}
.ne-site-header__wordmark-esencias {
  font-family: var(--ne-font-serif, 'Playfair Display', serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: #f5f0eb;
  letter-spacing: .04em;
}

/* ── NAV MENU ── */
.ne-site-header__nav { flex: 1; display: flex; justify-content: center; }

.ne-nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0; margin: 0;
}
.ne-nav-menu li { position: relative; }
.ne-nav-menu > li > a {
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c9c2b8;
  text-decoration: none;
  padding: .55rem .85rem;
  display: block;
  transition: color .2s;
  position: relative;
}
.ne-nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: .85rem; right: .85rem;
  height: 1px;
  background: #c9a96e;
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.ne-nav-menu > li > a:hover,
.ne-nav-menu > li.current-menu-item > a,
.ne-nav-menu > li.current_page_item > a { color: #c9a96e; }
.ne-nav-menu > li > a:hover::after,
.ne-nav-menu > li.current-menu-item > a::after { transform: scaleX(1); }

/* Submenús */
.ne-nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 200px;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(201, 169, 110, .15);
  border-top: 2px solid #c9a96e;
  list-style: none; padding: .5rem 0; margin: 0;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
  z-index: 100;
}
.ne-nav-menu li:hover > .sub-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.ne-nav-menu .sub-menu a {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: #c9c2b8; text-decoration: none;
  padding: .6rem 1.25rem; display: block;
  transition: color .2s, background .2s;
}
.ne-nav-menu .sub-menu a:hover { color: #c9a96e; background: rgba(201,169,110,.05); }

/* ── ICONOS DERECHA ── */
.ne-site-header__right { display: flex; align-items: center; gap: .25rem; flex-shrink: 0; }

.ne-hdr-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: transparent; border: none; cursor: pointer;
  color: #c9c2b8; transition: color .2s;
  position: relative;
  text-decoration: none;
}
.ne-hdr-icon svg { width: 19px; height: 19px; }
.ne-hdr-icon:hover { color: #c9a96e; }

/* Cart badge */
.ne-hdr-cart__badge {
  position: absolute; top: 5px; right: 4px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #c9a96e; color: #0a0a0a;
  font-size: .5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
}

/* ── HAMBURGER ── */
.ne-hdr-burger {
  display: none; /* visible solo en mobile */
  flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 42px; height: 42px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
}
.ne-hdr-burger span {
  display: block; width: 22px; height: 1.5px;
  background: #c9c2b8;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.ne-hdr-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ne-hdr-burger.is-active span:nth-child(2) { opacity: 0; width: 0; }
.ne-hdr-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── SEARCH BAR DESLIZABLE ── */
.ne-hdr-search-bar {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s;
  opacity: 0;
  border-top: 0 solid transparent;
}
.ne-hdr-search-bar.is-open {
  max-height: 72px; opacity: 1;
  border-top: 1px solid rgba(201,169,110,.1);
}
.ne-hdr-search-form {
  display: flex; align-items: center; gap: .75rem;
  max-width: 720px; margin: 0 auto;
  padding: .85rem 2.5rem;
}
.ne-hdr-search-input {
  flex: 1; background: transparent; border: none;
  border-bottom: 1px solid rgba(201,169,110,.35);
  outline: none; padding: .4rem .2rem;
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
  font-size: .85rem; color: #f5f0eb;
  caret-color: #c9a96e;
  transition: border-color .2s;
}
.ne-hdr-search-input::placeholder { color: rgba(201,169,110,.3); }
.ne-hdr-search-input:focus { border-color: #c9a96e; }
.ne-hdr-search-submit {
  background: none; border: none; cursor: pointer;
  color: #c9a96e; padding: .3rem;
}
.ne-hdr-search-submit svg { width: 18px; height: 18px; display: block; }
.ne-hdr-search-close {
  background: none; border: none; cursor: pointer;
  color: #c9c2b8; font-size: 1rem; line-height: 1;
  transition: color .2s; padding: .3rem;
}
.ne-hdr-search-close:hover { color: #c9a96e; }

/* ── MOBILE MENU ── */
.ne-mobile-menu {
  overflow: hidden; max-height: 0;
  background: rgba(7,7,7,.99);
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
  border-top: 0 solid transparent;
}
.ne-mobile-menu.is-open {
  max-height: 100vh;
  border-top: 1px solid rgba(201,169,110,.1);
}
.ne-mobile-menu__inner { padding: 1.5rem 2rem 2rem; }

.ne-mobile-nav-menu {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: .2rem;
}
.ne-mobile-nav-menu li a {
  display: block; padding: .75rem 0;
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: #c9c2b8; text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,.08);
  transition: color .2s;
}
.ne-mobile-nav-menu li a:hover { color: #c9a96e; }
.ne-mobile-nav-menu .sub-menu {
  list-style: none; padding: .25rem 0 .25rem 1rem;
}
.ne-mobile-nav-menu .sub-menu a {
  font-size: .7rem; border-bottom: none; padding: .4rem 0;
}
.ne-mobile-menu__cta { margin-top: 1.25rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ne-site-header__nav { display: none; }
  .ne-hdr-burger        { display: flex; }
  .ne-site-header__inner { padding: 0 1.5rem; }
}
@media (max-width: 480px) {
  .ne-site-header__inner { height: 60px; }
}

/* ── Ocultar el título de Blocksy duplicado si existe ── */
.ct-site-title, .site-title { display: none !important; }

/* ==========================================================================
   WOOCOMMERCE CART & CHECKOUT AESTHETICS - NOOR ESENCIAS
   ========================================================================== */
body.woocommerce-cart,
body.woocommerce-checkout {
    background-color: var(--ne-bg-deep, #0a0a0a) !important;
    color: var(--ne-white-soft, #f5f0eb);
    font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
}

body.woocommerce-cart #main,
body.woocommerce-checkout #main {
    background-color: transparent !important;
}

body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-page .site-main {
    background-color: transparent !important;
    color: var(--ne-white-soft, #f5f0eb);
    font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
    padding: 6rem 2rem;
}

/* Titles */
.woocommerce-cart h1.entry-title,
.woocommerce-cart h1.page-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-checkout h1.page-title,
.woocommerce-cart h2,
.woocommerce-checkout h2,
.woocommerce-cart h3,
.woocommerce-checkout h3 {
    font-family: var(--ne-font-serif, 'Playfair Display', serif) !important;
    color: var(--ne-white, #ffffff) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
}

/* Tables */
.woocommerce table.shop_table {
    border: none !important;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 0;
}

.woocommerce table.shop_table th {
    background-color: var(--ne-bg-dark, #111111) !important;
    color: var(--ne-gold, #c9a96e) !important;
    font-family: var(--ne-font-sans) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid var(--ne-border-mid, rgba(201, 169, 110, 0.3)) !important;
    padding: 1.5rem 1rem !important;
}

.woocommerce table.shop_table td {
    background-color: transparent !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
    padding: 1.5rem 1rem !important;
}

.woocommerce table.shop_table a {
    color: var(--ne-white-soft, #f5f0eb) !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.woocommerce table.shop_table a:hover {
    color: var(--ne-gold, #c9a96e) !important;
}

/* Images in cart */
.woocommerce table.cart img {
    border-radius: 0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}


/* Inputs, textareas */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity input.qty {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
    font-family: var(--ne-font-sans) !important;
    font-size: 0.9rem !important;
    padding: 0.85rem 1rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    border-radius: 0 !important;
    min-height: 48px;
}

/* Base Select Style (No extreme vertical padding to prevent cut text) */
.woocommerce form .form-row select,
.b2bking_registration_container select,
.b2bking_custom_registration_field select,
[name^="b2bking"] select,
.select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
    font-family: var(--ne-font-sans) !important;
    font-size: 0.9rem !important;
    padding: 0 1rem !important; /* Removed vertical padding, let min-height center it */
    min-height: 48px !important;
    height: 48px !important;
    line-height: 48px !important; /* Fix vertical centering */
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    border-radius: 0 !important;
    -webkit-text-fill-color: initial !important; 
    box-sizing: border-box !important;
}

/* Evitar padding desproporcionado en contenedores de Select2 */
.select2-container--default .select2-selection--single {
    padding: 0 !important; /* Reset padding to not clip child */
    min-height: 48px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce .quantity input.qty:focus {
    border-color: var(--ne-gold, #c9a96e) !important;
    box-shadow: 0 0 0 1px var(--ne-gold, #c9a96e) !important;
    outline: none;
    background-color: rgba(255,255,255,0.02) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ne-white-soft, #f5f0eb) !important;
    line-height: normal !important; /* Let text flex naturally */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 1rem !important;
    padding-right: 2rem !important;
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

.select2-dropdown {
    background-color: var(--ne-bg-mid, #1a1a1a) !important;
    border: 1px solid var(--ne-gold-muted) !important;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
    background-color: var(--ne-gold-muted) !important;
}

.select2-results__option {
    color: var(--ne-white-soft) !important;
}

/* Labels */
.woocommerce form .form-row label {
    color: var(--ne-white-muted, #c9c2b8) !important;
    font-weight: 500 !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

/* Buttons */
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
    background-color: var(--ne-gold, #c9a96e) !important;
    color: #0a0a0a !important;
    font-family: var(--ne-font-sans) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    padding: 1rem 2.25rem !important;
    border: 1px solid var(--ne-gold, #c9a96e) !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
    box-shadow: none !important;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce #respond input#submit:hover {
    background-color: var(--ne-gold-light, #e0c890) !important;
    color: #0a0a0a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35) !important;
    border-color: var(--ne-gold-light, #e0c890) !important;
}

.woocommerce button.button:disabled,
.woocommerce button.button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--ne-white-faint) !important;
    border-color: var(--ne-white-faint) !important;
    transform: none;
    box-shadow: none !important;
}

/* Coupon section */
.woocommerce-cart .coupon {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
}
.woocommerce-cart .coupon input.input-text {
    width: auto;
    margin: 0 !important;
    min-width: 200px;
}
.woocommerce-cart .coupon button.button {
    background: transparent !important;
    color: var(--ne-gold) !important;
    border: 1px solid var(--ne-gold-muted) !important;
}
.woocommerce-cart .coupon button.button:hover {
    background: var(--ne-gold) !important;
    color: #0a0a0a !important;
    border-color: var(--ne-gold) !important;
}

/* Cart Totals & Checkout Order Review Box */
.cart_totals,
#order_review,
.woocommerce-checkout-review-order {
    background-color: var(--ne-bg-dark, #111111) !important;
    padding: 1.5rem !important;
    border: 1px solid rgba(201, 169, 110, 0.15) !important;
    border-radius: 8px;
}

.cart_totals h2,
#order_review_heading {
    font-family: var(--ne-font-serif) !important;
    font-size: 1.8rem !important;
    color: var(--ne-gold) !important;
    margin-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    padding-bottom: 0.5rem;
    text-align: left;
}

/* Payment Methods */
#payment {
    background-color: var(--ne-bg-mid, #1a1a1a) !important;
    border-radius: 0 !important;
}

#payment div.payment_box {
    background-color: var(--ne-bg-deep, #0a0a0a) !important;
    color: var(--ne-white-muted) !important;
    box-shadow: none !important;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 0 !important;
}

#payment div.payment_box::before {
    border-bottom-color: var(--ne-bg-deep, #0a0a0a) !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Messages */
.woocommerce-error {
    border-top-color: #e2401c !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--ne-gold) !important;
}

/* Remove quantities outline */
.quantity .qty {
    width: 60px !important;
    text-align: center !important;
    padding: 0 !important;
}

/* Blocksy specific form overrides */
.woocommerce-checkout .col2-set .col-1, 
.woocommerce-checkout .col2-set .col-2 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
@media (min-width: 768px) {
    .woocommerce-checkout .col2-set {
        display: flex;
        gap: 2rem;
    }
    .woocommerce-checkout .col2-set .col-1, 
    .woocommerce-checkout .col2-set .col-2 {
        max-width: calc(50% - 1rem) !important;
        flex: 0 0 calc(50% - 1rem) !important;
    }
}

/* ==========================================================================
   B2BKING WHOLESALE AESTHETICS - NOOR ESENCIAS
   ========================================================================== */

/* ── Registration / Login Containers ── */
body .b2bking_b2b_registration_formWrap,
body .b2bking_b2b_registration_form,
body #b2bking_myaccount_registration,
body .b2bking_registration_container,
body #b2bking_custom_registration_form_container {
    background-color: var(--ne-bg-dark, #111111) !important;
    padding: 3rem !important;
    border: 1px solid var(--ne-border-mid, rgba(201, 169, 110, 0.3)) !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
}

body .b2bking_registration_container h2,
body #b2bking_myaccount_registration h2,
body #b2bking_custom_registration_form_container h2,
body .b2bking_b2b_registration_form h2,
body .b2bking_b2b_registration_formWrap h2 {
    font-family: var(--ne-font-serif) !important;
    color: var(--ne-gold) !important;
    font-size: 2rem !important;
    margin-bottom: 2rem !important;
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2) !important;
    padding-bottom: 1rem !important;
}

/* ── Form Fields ── */
body .b2bking_custom_registration_field input[type="text"],
body .b2bking_custom_registration_field input[type="password"],
body .b2bking_custom_registration_field input[type="email"],
body .b2bking_custom_registration_field input[type="tel"],
body .b2bking_custom_registration_field select,
body .b2bking_custom_registration_field textarea,
body #b2bking_myaccount_registration input,
body .b2bking_registration_container input,
body .b2bking_registration_container select,
body .b2bking_registration_container textarea,
body .b2bking_b2b_registration_formWrap input,
body .b2bking_b2b_registration_formWrap select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
    font-family: var(--ne-font-sans) !important;
    padding: 0.85rem 1rem !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
}

/* Fallback for select dropdown options */
body .b2bking_custom_registration_field select option,
body .b2bking_registration_container select option,
body .b2bking_b2b_registration_formWrap select option {
    background-color: var(--ne-bg-dark, #111) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
    padding: 0.5rem;
}

body .b2bking_custom_registration_field input:focus,
body .b2bking_custom_registration_field select:focus,
body .b2bking_custom_registration_field textarea:focus,
body #b2bking_myaccount_registration input:focus,
body .b2bking_registration_container input:focus,
body .b2bking_registration_container select:focus,
body .b2bking_b2b_registration_formWrap input:focus,
body .b2bking_b2b_registration_formWrap select:focus {
    border-color: var(--ne-gold, #c9a96e) !important;
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.15) !important;
    outline: none !important;
    background-color: transparent !important;
}

body .b2bking_custom_registration_field label,
body #b2bking_myaccount_registration label,
body .b2bking_custom_registration_field span.b2bking_label,
body .b2bking_registration_container label,
body .b2bking_b2b_registration_formWrap label,
body .b2bking_b2b_registration_form label {
    color: var(--ne-white-muted, #c9c2b8) !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
    font-family: var(--ne-font-sans) !important;
}

/* ── Buttons ── */
.b2bking_registration_form_button,
#b2bking_myaccount_registration button.woocommerce-Button,
#b2bking_bulkorder_add,
.b2bking_save_list_button,
.b2bking_button,
button.b2bking_button {
    background-color: var(--ne-gold, #c9a96e) !important;
    color: #0a0a0a !important;
    font-family: var(--ne-font-sans) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    padding: 1rem 2.25rem !important;
    border: 1px solid var(--ne-gold, #c9a96e) !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-block;
    text-align: center;
}

.b2bking_registration_form_button:hover,
#b2bking_myaccount_registration button.woocommerce-Button:hover,
#b2bking_bulkorder_add:hover,
.b2bking_save_list_button:hover,
.b2bking_button:hover,
button.b2bking_button:hover {
    background-color: var(--ne-gold-light, #e0c890) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35) !important;
    border-color: var(--ne-gold-light, #e0c890) !important;
}

/* ── Wholesale Tables (Bulk Order, Tiered Pricing, My Account) ── */
table.b2bking_bulkorder_table,
#b2bking_tiered_pricing_table,
.b2bking_myaccount_table,
.b2bking_custom_registration_field table {
    border: none !important;
    border-collapse: collapse !important;
    width: 100% !important;
    margin: 2rem 0 !important;
    background: transparent !important;
}

table.b2bking_bulkorder_table th,
#b2bking_tiered_pricing_table th,
.b2bking_myaccount_table th,
.b2bking_custom_registration_field table th {
    background-color: var(--ne-bg-dark, #111111) !important;
    color: var(--ne-gold, #c9a96e) !important;
    font-family: var(--ne-font-sans) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    border-bottom: 1px solid var(--ne-border-mid, rgba(201, 169, 110, 0.3)) !important;
    padding: 1.5rem 1rem !important;
}

table.b2bking_bulkorder_table td,
#b2bking_tiered_pricing_table td,
.b2bking_myaccount_table td,
.b2bking_custom_registration_field table td {
    background-color: transparent !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
    padding: 1.5rem 1rem !important;
    vertical-align: middle;
}

/* Quantity inputs in bulk order */
.b2bking_bulkorder_table input[type="number"] {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: var(--ne-white-soft) !important;
    padding: 0.5rem !important;
    width: 70px !important;
    text-align: center !important;
}
.b2bking_bulkorder_table input[type="number"]:focus {
    border-color: var(--ne-gold) !important;
    outline: none !important;
}

/* B2B Dashboard / Notices */
.b2bking_myaccount_header {
    background-color: var(--ne-bg-dark) !important;
    color: var(--ne-gold) !important;
    border: 1px solid var(--ne-border-mid) !important;
    padding: 2rem !important;
    font-family: var(--ne-font-serif) !important;
    text-align: center;
}

/* ==========================================================================
   WOOCOMMERCE MI CUENTA / AUTENTICACIÓN (LOGIN & REGISTER)
   ========================================================================== */

/* Fondo oscuro general para toda la página de Mi Cuenta y Mayoristas */
body.woocommerce-account, 
body.woocommerce-page {
    background-color: var(--ne-bg-dark, #111) !important;
}

.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1rem;
    color: var(--ne-white-soft);
}

.woocommerce-account h2 {
    font-family: var(--ne-font-serif);
    color: var(--ne-gold);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container de las dos columnas de Login/Registro */
#customer_login, 
.woocommerce > form.login, 
.woocommerce > form.register {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--ne-bg-dark) !important;
    border: 1px solid var(--ne-border-mid) !important;
    border-radius: 4px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

/* Forzar que si es un solo form ocupe el total, si son las columnas, ocupe 1fr 1fr */
.woocommerce > form.login:not(#customer_login), 
.woocommerce > form.register:not(#customer_login) {
    display: block;
    padding: 3rem !important;
}

/* Efecto de borde de lujo en el contenedor */
#customer_login::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ne-gold), transparent);
    opacity: 0.5;
}

/* Columnas */
#customer_login .u-column1,
#customer_login .u-column2 {
    padding: 4rem !important;
    width: 100% !important;
    box-sizing: border-box;
    background: transparent !important;
}

/* Divider entre columnas */
#customer_login .u-column1 {
    border-right: 1px solid rgba(201, 169, 110, 0.15);
}

@media (max-width: 900px) {
    #customer_login {
        grid-template-columns: 1fr;
    }
    #customer_login .u-column1 {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    }
    #customer_login .u-column1,
    #customer_login .u-column2 {
        padding: 2.5rem 1.5rem !important;
    }
}

/* Texts and Labels */
.woocommerce-account form label {
    font-family: var(--ne-font-sans) !important;
    color: var(--ne-white-muted) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
}

/* Inputs form Authentication (Forzando Blocksy) */
.woocommerce-account form input[type="text"],
.woocommerce-account form input[type="password"],
.woocommerce-account form input[type="email"],
.woocommerce-account form select,
.woocommerce-account form textarea,
.woocommerce-page form input[type="text"],
.woocommerce-page form input[type="password"],
.woocommerce-page form input[type="email"] {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--ne-white) !important;
    padding: 1rem 1.25rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    margin-bottom: 1.5rem !important;
}

.woocommerce-account form input[type="text"]:focus,
.woocommerce-account form input[type="password"]:focus,
.woocommerce-account form input[type="email"]:focus,
.woocommerce-account form select:focus,
.woocommerce-account form textarea:focus {
    border-color: var(--ne-gold) !important;
    background-color: transparent !important;
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.15) !important;
    outline: none !important;
}

/* Checkbox (Recuérdame) */
.woocommerce-account .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ne-white-muted);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1.5rem;
}

.woocommerce-account input[type="checkbox"] {
    accent-color: var(--ne-gold) !important;
    width: 1rem;
    height: 1rem;
}

/* Botones LOGIN / REGISTRO GENERALES (Sobrescribiendo azul de Blocksy) */
body .woocommerce-account button.button,
body .woocommerce-account input.button,
body .woocommerce-account button[type="submit"],
.woocommerce form.login .woocommerce-Button,
.woocommerce form.register .woocommerce-Button {
    background-color: var(--ne-gold) !important;
    color: #0a0a0a !important;
    font-family: var(--ne-font-sans) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 1.25rem 2.5rem !important;
    border: 1px solid var(--ne-gold) !important;
    width: auto !important;
    min-width: 200px;
    margin-top: 0.5rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    cursor: pointer !important;
}

body .woocommerce-account button.button:hover,
body .woocommerce-account input.button:hover,
body .woocommerce-account button[type="submit"]:hover,
.woocommerce form.login .woocommerce-Button:hover,
.woocommerce form.register .woocommerce-Button:hover {
    background-color: var(--ne-gold-light) !important;
    border-color: var(--ne-gold-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(201, 169, 110, 0.25) !important;
}

/* Privacidad y links abajo */
.woocommerce-privacy-policy-text {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.woocommerce-privacy-policy-text a {
    color: var(--ne-gold);
    text-decoration: none;
}

.lost_password a {
    color: var(--ne-white-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.lost_password a:hover {
    color: var(--ne-gold);
    text-decoration: underline;
}

/* Ojo de contraseña alineacion */
.woocommerce form .show-password-input {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 1.25rem !important;
    color: var(--ne-gold) !important;
}

/* B2BKing Custom Role Dropdown Tweaks en My Account */
.b2bking_user_type_field_container {
    margin-bottom: 1.5rem;
}
.b2bking_user_type_field_container label {
    color: var(--ne-white-muted) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}
body .b2bking_user_type_field_container select,
body #b2bking_registration_roles_dropdown {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
body .b2bking_user_type_field_container select:focus,
body #b2bking_registration_roles_dropdown:focus {
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.3) !important;
    border-color: var(--ne-gold) !important;
}

body .b2bking_user_type_field_container select option,
body #b2bking_registration_roles_dropdown option {
    background-color: var(--ne-bg-dark, #111) !important;
    color: var(--ne-white-soft, #f5f0eb) !important;
}

/* Forzar color de texto blanco en la selección desplegable de B2BKing */
body .select2-container .select2-selection--single .select2-selection__rendered,
body .b2bking_registration_container .select2-selection__rendered,
body .b2bking_b2b_registration_formWrap .select2-selection__rendered,
body #b2bking_registration_roles_dropdown,
body .b2bking_user_type_field_container select {
    color: var(--ne-white-soft, #f5f0eb) !important;
    opacity: 1 !important;
    font-size: 1rem !important;
    line-height: 48px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
    height: 48px !important;
    min-height: 48px !important;
}

/* ==========================================================================
   MOBILE FILTER DRAWER — NOOR ESENCIAS
   ========================================================================== */

/* Botón Filtros — visible SOLO en mobile */
.ne-mobile-filter-bar {
  display: none;
}
@media (max-width: 900px) {
  .ne-mobile-filter-bar {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
  }
}

.ne-mobile-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.25rem;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.35);
  color: #c9a96e;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.ne-mobile-filter-btn:hover {
  background: rgba(201,169,110,0.15);
  border-color: #c9a96e;
}
.ne-mobile-filter-btn svg {
  flex-shrink: 0;
}

/* Badge con cantidad de filtros activos */
.ne-mobile-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c9a96e;
  color: #0a0a0a;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
}

/* ── Backdrop ── */
.ne-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ne-filter-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Bottom Sheet Drawer ── */
.ne-filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1101;
  background: #111111;
  border-top: 1px solid rgba(201,169,110,0.3);
  border-radius: 18px 18px 0 0;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ne-filter-drawer.is-open {
  transform: translateY(0);
}

/* Pill drag handle aesthetic */
.ne-filter-drawer::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(201,169,110,0.3);
  border-radius: 2px;
  margin: 0.9rem auto 0;
  flex-shrink: 0;
}

.ne-filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  flex-shrink: 0;
}
.ne-filter-drawer__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #c9a96e;
  letter-spacing: 0.04em;
}
.ne-filter-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #c9c2b8;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.ne-filter-drawer__close:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.4);
}

.ne-filter-drawer__body {
  overflow-y: auto;
  padding: 1.5rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #7a5e35 transparent;
}
.ne-filter-drawer__body::-webkit-scrollbar { width: 3px; }
.ne-filter-drawer__body::-webkit-scrollbar-thumb { background: #7a5e35; }

/* Botón limpiar filtros */
.ne-filter-clear-btn {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(201,169,110,0.25);
  color: #6e6660;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.ne-filter-clear-btn:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.5);
}

/* Ocultar drawer fuera de mobile */
@media (min-width: 901px) {
  .ne-filter-drawer,
  .ne-filter-backdrop,
  .ne-mobile-filter-bar {
    display: none !important;
  }
}

/* ==========================================================================
   MOBILE FILTER BAR — FIX (bloque independiente, no dentro del header)
   ========================================================================== */

/* Asegurar que la barra ocupa todo el ancho y no afecta el header flex */
.ne-mobile-filter-bar {
  display: none;         /* oculto en desktop */
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .ne-mobile-filter-bar {
    display: flex;
    align-items: center;
  }
}

/* ==========================================================================
   MOBILE FILTER DRAWER — ne-mf-* (clases limpias sin conflictos)
   ========================================================================== */

/* Backdrop */
.ne-mf-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ne-mf-backdrop.is-open {
  opacity: 1;
}

/* Bottom Sheet */
.ne-mf-drawer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  border-top: 1px solid rgba(201,169,110,0.3);
  border-radius: 16px 16px 0 0;
  max-height: 86vh;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.ne-mf-drawer.is-open {
  transform: translateY(0);
}

/* Pill handle */
.ne-mf-handle {
  width: 38px;
  height: 4px;
  background: rgba(201,169,110,0.28);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.ne-mf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.4rem 0.9rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  flex-shrink: 0;
}
.ne-mf-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #c9a96e;
  letter-spacing: 0.04em;
}
.ne-mf-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #c9c2b8;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.ne-mf-close:hover { color: #c9a96e; border-color: rgba(201,169,110,0.4); }

.ne-mf-body {
  overflow-y: auto;
  padding: 1.2rem 1.4rem 2rem;
  flex: 1;
}

.ne-mf-clear {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.8rem;
  border: 1px solid rgba(201,169,110,0.2);
  color: #6e6660;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.ne-mf-clear:hover { color: #c9a96e; border-color: rgba(201,169,110,0.45); }

/* Barra con botón Filtros */
.ne-mf-bar {
  display: none;
  margin-bottom: 0.75rem;
}
.ne-mf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  color: #c9a96e;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.ne-mf-btn:hover { background: rgba(201,169,110,0.15); border-color: #c9a96e; }
.ne-mf-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #c9a96e;
  color: #0a0a0a;
  font-size: 0.57rem;
  font-weight: 700;
}

/* Solo visible en mobile */
@media (max-width: 900px) {
  .ne-mf-backdrop,
  .ne-mf-drawer { display: flex; }
  .ne-mf-bar    { display: flex; }
}

/* Ocultar en desktop */
@media (min-width: 901px) {
  .ne-mf-backdrop,
  .ne-mf-drawer,
  .ne-mf-bar { display: none !important; }
}

/* ==========================================================================
   MOBILE FILTER DRAWER — NOOR ESENCIAS (ne-mf-*)
   Default: OCULTO en todo. Solo visible en mobile via media query.
   ========================================================================== */

/* 1. OCULTAR SIEMPRE por defecto (base) */
.ne-mf-backdrop,
.ne-mf-drawer,
.ne-mf-bar {
  display: none !important;
}

/* 2. SOLO en mobile se activan */
@media screen and (max-width: 900px) {

  /* Barra con boton Filtros */
  .ne-mf-bar {
    display: flex !important;
    margin-bottom: 0.75rem;
  }
  .ne-mf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.32);
    color: #c9a96e;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .ne-mf-btn:hover {
    background: rgba(201,169,110,0.16);
    border-color: #c9a96e;
  }
  .ne-mf-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #c9a96e;
    color: #0a0a0a;
    font-size: 0.57rem;
    font-weight: 700;
    line-height: 1;
  }

  /* Backdrop */
  .ne-mf-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .ne-mf-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
  }

  /* Bottom Sheet */
  .ne-mf-drawer {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #111111 !important;
    background: #111111 !important;
    border-top: 1px solid rgba(201,169,110,0.3);
    border-radius: 16px 16px 0 0;
    max-height: 86vh;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  }
  .ne-mf-drawer.is-open {
    transform: translateY(0);
  }

  .ne-mf-handle {
    width: 38px;
    height: 4px;
    background: rgba(201,169,110,0.28);
    border-radius: 2px;
    margin: 10px auto 0;
    flex-shrink: 0;
  }

  .ne-mf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.4rem 0.9rem;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    flex-shrink: 0;
  }
  .ne-mf-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #c9a96e;
    letter-spacing: 0.04em;
  }
  .ne-mf-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #c9c2b8;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .ne-mf-close:hover {
    color: #c9a96e;
    border-color: rgba(201,169,110,0.4);
  }

  .ne-mf-body {
    overflow-y: auto;
    padding: 1.2rem 1.4rem 2rem;
    flex: 1;
    -webkit-overflow-scrolling: touch;
  }

  .ne-mf-clear {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.8rem;
    border: 1px solid rgba(201,169,110,0.2);
    color: #6e6660;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.63rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
  }
  .ne-mf-clear:hover {
    color: #c9a96e;
    border-color: rgba(201,169,110,0.45);
  }

} /* end @media max-width 900px */

/* ==========================================================================
   BRAND CHECKLIST — Multi-select checkboxes
   ========================================================================== */

/* Ocultar el checkbox nativo */
.ne-brand-cb {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Label como fila clickeable */
.ne-brand-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  width: 100%;
  padding: 0.1rem 0;
  color: #c9c2b8;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  transition: color 0.18s;
  user-select: none;
}
.ne-brand-label:hover {
  color: #c9a96e;
}
.ne-brand-label:hover .ne-sb-check {
  border-color: rgba(201,169,110,0.5);
}

/* El tick se actualiza via JS al cambiar el checkbox */
.ne-brand-cb:checked + .ne-sb-check {
  background: #c9a96e;
  border-color: #c9a96e;
}
.ne-brand-cb:checked + .ne-sb-check::after {
  content: '';
  display: block;
  width: 5px;
  height: 8px;
  border: 2px solid #0a0a0a;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* Botón "Aplicar marcas" */
.ne-brand-apply {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.55rem 0;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.28);
  color: #c9a96e;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.ne-brand-apply:hover {
  background: rgba(201,169,110,0.16);
  border-color: #c9a96e;
}

/* ==========================================================================
   BOTÓN "LIMPIAR FILTROS" — sutil, aparece solo con filtros activos
   ========================================================================== */

/* Versión desktop — en la parte superior del sidebar */
.ne-clear-filters-desktop {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(201,169,110,0.12);
  color: #5e5a56;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}
.ne-clear-filters-desktop:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.3);
}

/* Versión mobile — al lado del botón "Filtros" */
.ne-clear-filters-btn {
  display: none;
  align-items: center;
  gap: 0.35rem;
  color: #5e5a56;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  margin-left: 0.6rem;
}
.ne-clear-filters-btn:hover {
  color: #c9a96e;
}

@media screen and (max-width: 900px) {
  .ne-clear-filters-btn { display: inline-flex; }
}

/* ========================================================================
/* ==========================================================================
   TESTIMONIOS / GOOGLE REVIEWS — NOOR ESENCIAS
   ========================================================================== */
.ne-reviews {
    padding: 7rem 0 5rem;
    background: var(--ne-bg-dark);
    position: relative;
    overflow: hidden;
}
.ne-reviews::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--ne-gold-muted), transparent);
}

/* ── Carousel shell: prev btn | card area | next btn ── */
.ne-reviews__carousel {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    align-items: center;
}

/* ── Prev / Next buttons ── */
.ne-reviews__btn {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.35);
    color: var(--ne-gold);
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    align-self: center;
    flex-shrink: 0;
}
.ne-reviews__btn:hover {
    background: rgba(201,169,110,0.1);
    border-color: var(--ne-gold);
}
.ne-reviews__btn--prev { grid-column: 1; grid-row: 1; }
.ne-reviews__btn--next { grid-column: 3; grid-row: 1; }

/* ── Wrapper = clipping viewport ── */
.ne-reviews__wrapper {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
}

/* ── Track: horizontal strip of all cards ── */
.ne-reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Each card takes FULL wrapper width ── */
.ne-review-card {
    flex: 0 0 100%;
    min-width: 0;
    background: var(--ne-bg-surface);
    border: 1px solid var(--ne-border-subtle);
    border-left: 2px solid var(--ne-gold-muted);
    padding: 2.5rem 3rem 2.25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* ── Google badge ── */
.ne-review-card__google {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ne-font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ne-white-faint);
    margin-bottom: 1.2rem;
}

/* ── Stars ── */
.ne-review-card__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}
.ne-star { font-size: 1.1rem; color: rgba(255,255,255,0.12); line-height: 1; }
.ne-star--filled { color: #fbbf24; }

/* ── Quote text — reset blockquote defaults ── */
.ne-review-card__text {
    font-family: var(--ne-font-serif);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-style: italic;
    color: var(--ne-white-soft);
    line-height: 1.75;
    margin: 0 0 2rem 0;
    padding: 0;
    border: none;
    border-left: none;
    background: none;
    flex-grow: 1;
    quotes: none;
}
.ne-review-card__text p { margin: 0; }

/* ── Author footer ── */
.ne-review-card__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ne-review-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ne-font-serif);
    font-size: 1.1rem; font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}
.ne-review-card__author-info {
    display: flex; flex-direction: column; gap: 0.2rem;
}
.ne-review-card__name {
    font-family: var(--ne-font-sans);
    font-size: 0.8rem; font-weight: 600;
    color: var(--ne-white-soft);
    letter-spacing: 0.04em;
}
.ne-review-card__date {
    font-size: 0.62rem;
    color: var(--ne-white-faint);
    letter-spacing: 0.05em;
}

/* ── Dots row (spans all 3 columns) ── */
.ne-reviews__dots {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.ne-reviews__dot {
    width: 24px; height: 2px;
    background: rgba(201,169,110,0.2);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.3s, width 0.3s;
}
.ne-reviews__dot.is-active {
    background: var(--ne-gold);
    width: 40px;
}

/* ── Rating summary ── */
.ne-reviews__summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--ne-border-subtle);
}
.ne-reviews__summary-score {
    font-family: var(--ne-font-serif);
    font-size: 3.5rem; font-weight: 400;
    color: var(--ne-gold); line-height: 1;
}
.ne-reviews__summary-stars { font-size: 1.35rem; color: #fbbf24; letter-spacing: 0.1em; }
.ne-reviews__summary-label {
    font-family: var(--ne-font-sans);
    font-size: 0.63rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ne-white-faint); margin-top: 0.25rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ne-reviews { padding: 5rem 0 3.5rem; }
    .ne-reviews__carousel { grid-template-columns: 36px 1fr 36px; column-gap: 0.5rem; }
    .ne-reviews__btn { width: 34px; height: 34px; }
    .ne-review-card { padding: 2rem 1.5rem 1.75rem; }
    .ne-review-card__text { font-size: 1rem; }
    .ne-reviews__summary-score { font-size: 2.5rem; }
}

/* ==========================================================================
   CLUB NOOR — TOPBAR
   ========================================================================== */
.ne-topbar {
    width: 100%;
    background: linear-gradient(90deg, #0e0c09 0%, #1a1510 50%, #0e0c09 100%);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    position: relative;
    z-index: 1001;
    overflow: hidden;
    animation: ne-topbar-in 0.5s ease both;
}
@keyframes ne-topbar-in {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
.ne-topbar--closing {
    animation: ne-topbar-out 0.35s ease forwards;
}
@keyframes ne-topbar-out {
    to { transform: translateY(-100%); opacity: 0; }
}

.ne-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 3.5rem 0.6rem 1.5rem; /* right padding for close btn */
    position: relative;
    flex-wrap: wrap;
}

/* Label text */
.ne-topbar__label {
    font-family: var(--ne-font-sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(245,240,235,0.75);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ne-topbar__label strong {
    color: var(--ne-gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.65rem;
}
.ne-topbar__star {
    color: var(--ne-gold);
    font-size: 0.6rem;
    opacity: 0.8;
}

/* Form */
.ne-topbar__form { display: flex; align-items: center; }
.ne-topbar__field {
    display: flex;
    align-items: center;
    border: 1px solid rgba(201,169,110,0.3);
    background: rgba(255,255,255,0.04);
    overflow: hidden;
}
.ne-topbar__input {
    height: 32px;
    padding: 0 0.85rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--ne-white-soft);
    font-family: var(--ne-font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    width: 210px;
}
.ne-topbar__input::placeholder { color: rgba(245,240,235,0.35); }
.ne-topbar__input:focus { background: rgba(201,169,110,0.05); }

.ne-topbar__btn {
    height: 32px;
    padding: 0 1rem;
    background: var(--ne-gold);
    border: none;
    color: #0a0a0a;
    font-family: var(--ne-font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.ne-topbar__btn:hover { background: #d4b07a; }

/* Close button */
.ne-topbar__close {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: none;
    color: rgba(245,240,235,0.35);
    font-size: 0.7rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.ne-topbar__close:hover { color: var(--ne-gold); }

/* Thank-you message */
.ne-topbar__thanks {
    font-family: var(--ne-font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--ne-gold);
    padding: 0.55rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hide on mobile — too cramped */
@media (max-width: 640px) {
    .ne-topbar { display: none !important; }
}

/* ==========================================================================
   CLUB NOOR — MOBILE BOTTOM SHEET
   Solo visible en mobile (≤640px), se desliza desde abajo al hacer scroll
   ========================================================================== */
.ne-mob-club {
    display: none; /* JS lo activa solo en mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: #111109;
    border-top: 2px solid var(--ne-gold);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.7);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* seguridad: no bloquea contenido antes de aparecer */
    pointer-events: none;
}
.ne-mob-club.is-visible {
    transform: translateY(0);
    pointer-events: all;
}
@media (max-width: 640px) {
    .ne-mob-club { display: block; }
}

.ne-mob-club__inner {
    padding: 1.1rem 1.25rem 1.4rem;
}

/* Encabezado */
.ne-mob-club__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}
.ne-mob-club__heading {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.ne-mob-club__star {
    color: var(--ne-gold);
    font-size: 0.6rem;
}
.ne-mob-club__title {
    font-family: var(--ne-font-sans);
    font-size: 0.72rem;
    color: rgba(245,240,235,0.8);
    letter-spacing: 0.04em;
}
.ne-mob-club__title strong {
    color: var(--ne-gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ne-mob-club__close {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(245,240,235,0.4);
    font-size: 0.65rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.ne-mob-club__close:hover { color: var(--ne-gold); border-color: rgba(201,169,110,0.4); }

/* Formulario */
.ne-mob-club__row {
    display: flex;
    gap: 0;
    border: 1px solid rgba(201,169,110,0.35);
    overflow: hidden;
    margin-bottom: 0.6rem;
}
.ne-mob-club__input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 1rem;
    background: rgba(255,255,255,0.04);
    border: none;
    outline: none;
    color: var(--ne-white-soft);
    font-family: var(--ne-font-sans);
    font-size: 0.8rem;
}
.ne-mob-club__input::placeholder { color: rgba(245,240,235,0.3); }
.ne-mob-club__btn {
    height: 44px;
    padding: 0 1.2rem;
    background: var(--ne-gold);
    border: none;
    color: #0a0a0a;
    font-family: var(--ne-font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}
.ne-mob-club__btn:hover { background: #d4b07a; }

.ne-mob-club__note {
    font-family: var(--ne-font-sans);
    font-size: 0.58rem;
    color: rgba(245,240,235,0.3);
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
}

/* Mensaje de gracias */
.ne-mob-club__thanks {
    font-family: var(--ne-font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ne-gold);
    text-align: center;
    letter-spacing: 0.08em;
    padding: 0.5rem 0;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.ne-wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    /* Debajo del backend de WP y los modales del Club Noor */
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.ne-wa-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.ne-wa-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}
/* Ajuste en Mobile */
@media (max-width: 768px) {
    .ne-wa-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .ne-wa-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────────
   AJUSTES WOOCOMMERCE BANNERS DE NOTIFICACIÓN
   ────────────────────────────────────────────────────────────────────────────── */

.woocommerce-message, .woocommerce-error, .woocommerce-info {
    color: #ffffff !important;
    background-color: var(--ne-bg-mid, #1a1a1a) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 3px solid var(--ne-gold) !important;
    border-radius: 8px;
    padding: 1rem 1.5rem !important;
}

/* Ocultar forzadamente el botón de ver carrito nativo (en alertas y en grilla AJAX) */
.woocommerce-message .wc-forward,
.woocommerce-message .button,
.ct-cart-message a.button,
a.added_to_cart.wc-forward {
    display: none !important;
}

.woocommerce-message a, .woocommerce-error a, .woocommerce-info a {
    color: var(--ne-gold) !important;
    text-decoration: none !important;
}

/* Fix para el Swiper Carousel ocultando botones debajo y colapsando en portadas */
.elementor-widget-woocommerce-products .product,
.swiper-slide .product,
[data-products] .product,
[data-products="type-2"] .product {
    height: 100% !important; /* Force to take full height of slide */
    min-height: min-content !important;
    overflow: visible !important;
    padding-bottom: 25px !important;
}

.ct-woo-card-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    height: auto !important;
    min-height: min-content !important;
    overflow: visible !important;
    margin-top: auto !important; /* Push to bottom */
}


/* ==========================================================================
   FAVORITOS (WISHLIST) DRAWER E ICONOS
   ========================================================================== */
.ne-hdr-wish {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.ne-hdr-wish__badge {
  position: absolute; top: 5px; right: 4px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #c9a96e; color: #0a0a0a;
  font-size: .5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ne-font-sans, 'Montserrat', sans-serif);
  line-height: 1;
}
.ne-pcard__wish {
  font-size: 1.25rem;
  color: #c9c2b8;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
}
.ne-pcard__wish:hover {
  transform: scale(1.1);
  color: var(--ne-gold);
}
.ne-pcard__wish.is-active {
  color: var(--ne-gold);
  transform: scale(1.1);
}

.ne-wish-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.ne-wish-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ne-wish-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: #0a0a09;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
  border-left: 1px solid rgba(201, 169, 110, 0.15);
}
.ne-wish-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.ne-wish-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.ne-wish-drawer__header h3 {
  font-family: var(--ne-font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ne-white);
  margin: 0;
}
.ne-wish-drawer__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.5rem;
  line-height: 1;
}
.ne-wish-drawer__close:hover {
  color: var(--ne-gold);
}

.ne-wish-drawer__content {
  flex: 1;
  overflow-y: auto;
}
.ne-wish-empty, .ne-wish-loader {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}
.ne-wish-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  align-items: center;
}
.ne-wish-item-img {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}
.ne-wish-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ne-wish-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ne-wish-item-title {
  font-family: var(--ne-font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.ne-wish-item-title:hover {
  color: var(--ne-gold);
}
.ne-wish-item-price {
  font-family: var(--ne-font-sans);
  color: var(--ne-gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.ne-wish-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ne-wish-add-cart {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000 !important;
  background: var(--ne-gold);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.ne-wish-add-cart:hover {
  background: #fff;
}
.ne-wish-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.ne-wish-remove:hover {
  color: #ff4d4d;
}

/* ── END OF STYLESHEET ── */

/* ==========================================================================
   MEGA MENU — PERFUMES (Desktop: filas apiladas)
   ========================================================================== */

/* ── Trigger item ── */
.ne-has-mega {
  position: static !important;
}

.ne-mega-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  transition: transform 0.3s ease;
  color: var(--ne-gold);
}
.ne-has-mega:hover .ne-mega-arrow,
.ne-has-mega.is-open .ne-mega-arrow {
  transform: rotate(180deg);
}

/* ── Mega panel ── */
.ne-mega-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.98);
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  /* Transición normal — el timing lo maneja JS con mouseenter/mouseleave */
  transition: opacity 0.22s ease, transform 0.22s ease;
}
/* NOTA: El :hover está DESACTIVADO — el mega se abre/cierra solo via .is-open (JS) */
.ne-has-mega.is-open .ne-mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity 0.22s ease 0s, transform 0.22s ease 0s;
}
.ne-mega-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--ne-gold), transparent);
}

/* ── Inner container: columna vertical centrada ── */
.ne-mega-inner {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem 1.75rem;
  gap: 0;
}

/* ── FILAS base ── */
.ne-mega-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.07);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.ne-mega-row:last-child { border-bottom: none; }
.ne-mega-row:hover { background: rgba(201, 169, 110, 0.05); }

/* Icon */
.ne-mega-row__icon {
  font-size: 0.75rem;
  color: var(--ne-gold);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Label */
.ne-mega-row__label {
  font-family: var(--ne-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ne-white-soft);
  flex-shrink: 0;
  min-width: 180px;
}

/* Meta subtitle */
.ne-mega-row__meta {
  font-family: var(--ne-font-sans);
  font-size: 0.65rem;
  color: var(--ne-white-faint);
  flex: 1;
  letter-spacing: 0.03em;
}

/* Arrow on CTA row */
.ne-mega-row__arrow {
  font-size: 1rem;
  color: var(--ne-gold);
  margin-left: auto;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ne-mega-row--cta:hover .ne-mega-row__arrow {
  transform: translateX(5px);
}

/* CTA row highlight */
.ne-mega-row--cta {
  background: rgba(201, 169, 110, 0.06);
  border-left: 2px solid var(--ne-gold-muted);
}
.ne-mega-row--cta:hover {
  background: rgba(201, 169, 110, 0.12);
  border-left-color: var(--ne-gold);
}
.ne-mega-row--cta .ne-mega-row__label { color: var(--ne-gold); }

/* ── Accordion row (Marcas) ── */
.ne-mega-row--accord {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}
.ne-mega-row__accord-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.07);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.ne-mega-row__accord-btn:hover { background: rgba(201, 169, 110, 0.05); }

/* Chevron icon on accordion button */
.ne-mega-row__chevron {
  margin-left: auto;
  color: var(--ne-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.ne-mega-row__accord-btn.is-active .ne-mega-row__chevron {
  transform: rotate(180deg);
}
.ne-mega-row__accord-btn .ne-mega-row__label { color: var(--ne-white-soft); }
.ne-mega-row__accord-btn:hover .ne-mega-row__label { color: var(--ne-gold); }

/* Brands panel (accordion body) */
.ne-mega-brands-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ne-mega-brands-panel.is-open {
  max-height: 300px;
  padding: 1rem 1.25rem 1.1rem;
}

/* Brand pill */
.ne-mega-brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  font-family: var(--ne-font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #c9c2b8;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ne-mega-brand-pill:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--ne-gold);
  border-color: rgba(201, 169, 110, 0.45);
}

/* ── Categorías row ── */
.ne-mega-row--cats {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.ne-mega-row--cats .ne-mega-row__label { align-self: center; }
.ne-mega-cats-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
}

/* Category pill */
.ne-mega-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 20px;
  font-family: var(--ne-font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #c9c2b8;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ne-mega-cat-pill:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--ne-gold);
  border-color: rgba(201, 169, 110, 0.4);
}


/* ==========================================================================
   MOBILE SUB-MENU — Perfumes expandible
   ========================================================================== */

/* Row with link + expand button */
.ne-mob-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.ne-mob-sub-toggle > a {
  flex: 1;
  padding: 0.75rem 0;
  font-family: var(--ne-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9c2b8;
  text-decoration: none;
  transition: color 0.2s;
}
.ne-mob-sub-toggle > a:hover { color: #c9a96e; }

/* The "+" button */
.ne-mob-sub-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  transition: transform 0.3s ease;
}
.ne-mob-sub-btn svg { display: block; }
.ne-mob-sub-btn[aria-expanded="true"] {
  transform: rotate(180deg);
}

/* Collapsible sub-list */
.ne-mob-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(201, 169, 110, 0.03);
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}
.ne-mob-sub-menu.is-open {
  max-height: 700px;
}

/* Section headers inside submenu */
.ne-mob-sub-menu .ne-mob-sub-head {
  font-family: var(--ne-font-sans);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ne-gold);
  padding: 0.9rem 1rem 0.5rem;
}

/* Links inside submenu */
.ne-mob-sub-menu li a {
  display: block;
  padding: 0.45rem 1rem 0.45rem 1.25rem;
  font-family: var(--ne-font-sans);
  font-size: 0.72rem;
  color: #c9c2b8;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: none;
  transition: color 0.2s, padding-left 0.2s;
}
.ne-mob-sub-menu li a:hover {
  color: var(--ne-gold);
  padding-left: 1.6rem;
}

/* "Ver todos" link */
.ne-mob-sub-menu .ne-mob-sub-all {
  margin-top: 0.5rem;
}
.ne-mob-sub-menu .ne-mob-sub-all a {
  color: var(--ne-gold) !important;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem 0.9rem 1.25rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: block;
}

/* ==========================================================================
   MOBILE SUB-MENU ROWS — Filas estilo desktop dentro del mobile
   ========================================================================== */

/* Panel que contiene las filas (reemplaza la ul antigua) */
.ne-mob-sub-menu.ne-mob-sub-rows {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}

/* Fila base */
.ne-mob-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.07);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.ne-mob-row:last-child { border-bottom: none; }
.ne-mob-row:hover { background: rgba(201, 169, 110, 0.05); }

/* Icon */
.ne-mob-row__icon {
  font-size: 0.7rem;
  color: var(--ne-gold);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* Label */
.ne-mob-row__label {
  font-family: var(--ne-font-sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ne-white-soft);
  flex: 1;
}
.ne-mob-row__label--sm {
  font-size: 0.65rem;
  min-width: 90px;
  flex: 0 0 auto;
}

/* Arrow */
.ne-mob-row__arrow {
  font-size: 0.9rem;
  color: var(--ne-gold);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.ne-mob-row--cta:hover .ne-mob-row__arrow { transform: translateX(4px); }

/* CTA row */
.ne-mob-row--cta {
  background: rgba(201, 169, 110, 0.06);
  border-left: 2px solid var(--ne-gold-muted);
}
.ne-mob-row--cta:hover { background: rgba(201, 169, 110, 0.12); border-left-color: var(--ne-gold); }
.ne-mob-row--cta .ne-mob-row__label { color: var(--ne-gold); }

/* Accordion row */
.ne-mob-row--accord {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}
.ne-mob-brands-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.07);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.ne-mob-brands-btn:hover { background: rgba(201, 169, 110, 0.05); }

/* Chevron on mobile accordion btn */
.ne-mob-chevron {
  margin-left: auto;
  color: var(--ne-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ne-mob-brands-btn.is-active .ne-mob-chevron { transform: rotate(180deg); }
.ne-mob-brands-btn .ne-mob-row__label { color: var(--ne-white-soft); }
.ne-mob-brands-btn:hover .ne-mob-row__label { color: var(--ne-gold); }

/* Mobile brands panel — altura fija con scroll interno */
.ne-mob-brands-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas en mobile */
  gap: 0.35rem;
  padding: 0 0.85rem;
  background: rgba(201, 169, 110, 0.03);
}
.ne-mob-brands-panel.is-open {
  max-height: 190px; /* altura fija: ~5 filas de 2 cols — scroll si hay más */
  overflow-y: auto;
  padding: 0.65rem 0.85rem 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,110,0.35) transparent;
}
.ne-mob-brands-panel.is-open::-webkit-scrollbar { width: 3px; }
.ne-mob-brands-panel.is-open::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); }

/* Pills de marca en mobile: más compactas */
.ne-mob-brands-panel .ne-mega-brand-pill {
  font-size: 0.58rem;
  padding: 0.28rem 0.6rem;
  letter-spacing: 0.07em;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Categorías row mobile */
.ne-mob-row--cats {
  align-items: flex-start;
  padding: 0.8rem 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ne-mob-cats-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  flex: 1;
}

/* ==========================================================================
   GLOBAL WOOCOMMERCE COLORS OVERRIDE (Fixing Blue Colors)
   ========================================================================== */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background-color: var(--ne-gold) !important;
  color: #111 !important;
  border: none !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
  background-color: var(--ne-gold-light) !important;
  color: #111 !important;
}

/* Pagination Links (often blue by default) */
.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ne-gold) !important;
  color: #111 !important;
}

/* Sale Badge (often blue in Blocksy default) */
.woocommerce span.onsale, 
.woocommerce-page span.onsale {
  background-color: var(--ne-gold) !important;
  color: #111 !important;
}

/* ==========================================================================
   WOOCOMMERCE TEXT LINKS FIX (Eliminar azules genéricos)
   ========================================================================== */

/* Títulos principales (página individual y relacionados) */
.woocommerce div.product .product_title,
.woocommerce div.product h1.product_title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product h2 {
  color: #ffffff !important; 
}

/* Títulos de Secciones (Productos relacionados, reviews, up-sells) */
.woocommerce section.related.products h2,
.woocommerce section.up-sells h2,
.woocommerce .cross-sells h2,
.woocommerce-Tabs-panel h2,
#reviews h2,
.woocommerce-Reviews-title {
  color: var(--ne-gold) !important;
}

/* Precios (individual y grids) */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce .price,
.woocommerce ul.products li.product .price,
.woocommerce p.price ins,
.woocommerce span.price ins {
  color: var(--ne-gold) !important;
  font-weight: 600 !important;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.woocommerce ul.products li.product .price del,
.woocommerce span.price del {
  color: #888 !important;
}

/* Textos fijos (Categorías:, Marca:) dentro de la meta */
.woocommerce div.product .product_meta,
.woocommerce ul.products li.product .product-category a,
.woocommerce ul.products li.product .product_meta {
  color: #a0a0a0 !important; 
}

/* Tipos de letra y color para las Descripciones (Inyectadas por Fragrantica / IA) */
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product #tab-description,
.woocommerce div.product .woocommerce-Tabs-panel--description,
.woocommerce div.product .woocommerce-Tabs-panel--description p {
  color: var(--ne-white-soft) !important;
  font-family: var(--ne-font-sans) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  font-weight: 300 !important;
}

/* Títulos H2 y H3 dentro de las descripciones */
.woocommerce div.product #tab-description h2,
.woocommerce div.product #tab-description h3,
.woocommerce div.product .woocommerce-Tabs-panel--description h2 {
  color: var(--ne-gold) !important;
  font-family: var(--ne-font-serif) !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  margin-bottom: 1rem !important;
  margin-top: 1.5rem !important;
  letter-spacing: -0.02em !important;
}

/* Enlaces dentro de etiquetas, descripciones cortas, etc. */
.woocommerce div.product .product_meta a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-product-rating .woocommerce-review-link,
.woocommerce div.product form.cart .reset_variations,
.woocommerce div.product #reviews a,
.woocommerce-Tabs-panel a,
.woocommerce-message a:not(.button),
.woocommerce-info a:not(.button),
.woocommerce-error a:not(.button),
.woocommerce ul.products li.product .product-category a {
  color: var(--ne-gold) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.woocommerce div.product .product_meta a:hover,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-product-rating .woocommerce-review-link:hover,
.woocommerce div.product form.cart .reset_variations:hover,
.woocommerce div.product #reviews a:hover,
.woocommerce-Tabs-panel a:hover,
.woocommerce-message a:not(.button):hover,
.woocommerce-info a:not(.button):hover,
.woocommerce-error a:not(.button):hover,
.woocommerce ul.products li.product .product-category a:hover {
  color: var(--ne-gold-light) !important;
}

/* Migas de pan completas (Breadcrumbs) - Evitar azules */
.woocommerce-breadcrumb,
.woocommerce-breadcrumb a {
  color: #a0a0a0 !important; 
}
.woocommerce-breadcrumb a:hover {
  color: var(--ne-gold) !important;
}

/* Checkouts / Carrito links extra */
.woocommerce-cart a.remove,
.woocommerce-checkout #payment .payment_methods li .about_paypal {
  color: var(--ne-gold) !important;
}
.woocommerce-cart a.remove:hover {
  background: transparent !important;
  color: #da0b0b !important; /* Rojo de error al borrar */
}

/* ==========================================================================
   BLOCKSY & WOOCOMMERCE: VALORACIONES (REVIEWS) Y TABS FIX
   ========================================================================== */
/* Autor de las reseñas y fechas */
.woocommerce #reviews #comments ol.commentlist li .meta,
.woocommerce #reviews #comments ol.commentlist li .meta strong,
.woocommerce #reviews #comments ol.commentlist li .meta a,
.woocommerce #reviews #comments ol.commentlist li .comment-author,
.woocommerce #reviews #comments ol.commentlist li .comment-author a,
#reviews .reply a {
  color: #ffffff !important;
  font-weight: 500 !important;
}

.woocommerce #reviews #comments ol.commentlist li .meta a:hover,
.woocommerce #reviews #comments ol.commentlist li .comment-author a:hover,
#reviews .reply a:hover {
  color: var(--ne-gold) !important;
}

/* Títulos del formulario de reseña */
#reply-title, 
#reply-title a,
.woocommerce-noreviews {
  color: var(--ne-gold) !important;
}

/* Textos pequeños del formulario (Tu puntuación, email no publicado, cookies, labels) */
.woocommerce div.product #reviews .comment-notes,
.woocommerce div.product #reviews .comment-notes span,
.woocommerce div.product #reviews #review_form label,
.woocommerce div.product #reviews #review_form .comment-form-rating label,
.woocommerce div.product #reviews #review_form .comment-form-cookies-consent label,
.woocommerce div.product #respond label {
  color: var(--ne-white-muted) !important;
  font-family: var(--ne-font-sans) !important;
  font-size: 0.85rem !important;
}

/* Asteriscos de campos obligatorios */
.woocommerce div.product #reviews .required,
.woocommerce div.product #respond .required {
  color: var(--ne-gold) !important;
  text-decoration: none !important;
}


/* Pestañas de Descripción / Valoraciones (Blocksy custom tabs) */
.ct-product-tabs ul li a,
.ct-tabs ul li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #a0a0a0 !important;
}
.ct-product-tabs ul li.active a,
.ct-tabs ul li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ne-gold) !important;
}

/* Estrellas de valoración */
.woocommerce .star-rating,
.woocommerce .star-rating span::before,
.woocommerce p.stars a,
.woocommerce p.stars a::before,
.woocommerce .star-rating::before {
  color: var(--ne-gold) !important;
}

/* ==========================================================================
   BLOCKSY & NAVEGADOR: ELIMINADOR DE AZUL EN SELECCIONES E INPUTS (BUSCADOR/CR)
   ========================================================================== */

/* 1. Selección de texto (cuando arrastrás el mouse para pintar una palabra) */
::selection {
  background: var(--ne-gold) !important;
  color: #111111 !important;
}
::-moz-selection {
  background: var(--ne-gold) !important;
  color: #111111 !important;
}

/* 2. Textos que el usuario escribe en buscadores, formularios, carrito y checkout */
input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="search"], 
input[type="number"], 
input[type="tel"], 
textarea, 
select,
.select2-container .select2-selection--single .select2-selection__rendered,
.select2-results__option {
  color: #ffffff !important;
  caret-color: var(--ne-gold) !important; /* El cursor de escritura que titila */
}

/* Bordes dorados al hacer clic en formularios (elimina anillos azules) */
input:focus, 
textarea:focus, 
select:focus,
.select2-container--default.select2-container--focus .select2-selection--multiple, 
.select2-container--default.select2-container--focus .select2-selection--single {
  outline: none !important;
  border-color: var(--ne-gold) !important;
  box-shadow: 0 0 0 1px var(--ne-gold) !important;
}

/* 3. Evitar el amarillo/celeste feo cuando Chrome auto-rellena datos */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* 4. Resaltar textos en negrita (Blocksy a veces los pinta de azul), ej: Club Noor */
.ne-topbar strong,
.ne-mob-club__title strong,
.ne-site-header strong,
strong, b {
  color: var(--ne-gold) !important;
  font-weight: 700;
}

/* ==========================================================================
   FIX DE TÍTULOS DE PÁGINA AZULES (Blocksy theme default override)
   Afecta: Mayoristas, páginas de categoría, páginas WP, archivos
   ========================================================================== */

/* Títulos de páginas de WordPress, categorías, archivos */
.page-title,
.entry-title,
h1.entry-title,
h1.page-title,
.ct-page-title,
.ct-archive-title,
.wp-block-post-title,
body:not(.home) h1:not(.ne-shop-main-title):not(.ne-hero__title):not(.woocommerce-cart-form h1):not(.product_title),
.woocommerce-page h1:not(.product_title):not(.ne-shop-main-title),
.blocksy-page-title h1,
.blocksy-page-title .page-title,
.hero-section h1,
.ct-page-title-type-single h1,
.ct-page-title-type-archive h1,
.ct-page-title-type-single .entry-title,
.ct-page-title-type-archive .entry-title {
  color: var(--ne-white, #ffffff) !important;
  font-family: var(--ne-font-serif, 'Playfair Display', serif) !important;
}

/* Subtítulos y textos debajo del título de página */
.page-description,
.ct-page-title-description,
.term-description,
.taxonomy-description {
  color: var(--ne-white-muted, #c9c2b8) !important;
}

/* Breadcrumbs azules de Blocksy en páginas internas */
.ct-breadcrumbs,
.ct-breadcrumbs a,
.ct-breadcrumbs span,
nav.ct-breadcrumbs,
nav.ct-breadcrumbs a,
.ct-breadcrumb-items a {
  color: var(--ne-white-muted, #c9c2b8) !important;
}
.ct-breadcrumbs a:hover,
.ct-breadcrumb-items a:hover {
  color: var(--ne-gold, #c9a96e) !important;
}

/* ==========================================================================
   FIX DEFINITIVO DE PAGINACIÓN (Elimina el azul oscuro de Blocksy completamente)
   Afecta: Tienda, archivo de categorías, cualquier página con paginación WC o del tema
   ========================================================================== */

/* 1. Todos los enlaces de paginación (números) en color plateado por defecto */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce-pagination .page-numbers,
.ct-pagination .page-numbers,
.nav-links .page-numbers,
.ne-shop-pagination .woocommerce-pagination ul li a,
.ne-shop-pagination .woocommerce-pagination ul li span {
  color: var(--ne-white-muted, #c9c2b8) !important;
  background: transparent !important;
}

/* 2. Flechas prev/next específicamente en dorado */
.woocommerce nav.woocommerce-pagination ul li a.prev,
.woocommerce nav.woocommerce-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a[rel="prev"],
.woocommerce nav.woocommerce-pagination ul li a[rel="next"],
.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next,
.ne-shop-pagination .woocommerce-pagination ul li a.prev,
.ne-shop-pagination .woocommerce-pagination ul li a.next,
.ct-pagination .page-numbers.prev,
.ct-pagination .page-numbers.next {
  color: var(--ne-gold, #c9a96e) !important;
  border-color: rgba(201, 169, 110, 0.35) !important;
}

/* Arreglo de los iconos SVG dentro de las flechas (suelen pintar azul) */
.woocommerce-pagination .page-numbers.prev svg,
.woocommerce-pagination .page-numbers.next svg,
.woocommerce nav.woocommerce-pagination ul li a.prev svg,
.woocommerce nav.woocommerce-pagination ul li a.next svg,
.woocommerce nav.woocommerce-pagination ul li a.prev svg path,
.woocommerce nav.woocommerce-pagination ul li a.next svg path,
.ct-pagination .page-numbers.prev svg,
.ct-pagination .page-numbers.next svg {
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* 3. Comportamiento en HOVER (Todos, números y flechas: dorados) */
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span:hover,
.woocommerce-pagination .page-numbers:hover,
.ct-pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
  background: rgba(201, 169, 110, 0.12) !important;
  color: var(--ne-gold-light, #e0c890) !important;
  border-color: var(--ne-gold, #c9a96e) !important;
}

/* 4. Página ACTUAL (Fondo dorado resaltado, texto oscuro) */
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-pagination .page-numbers.current,
.ct-pagination .page-numbers.current,
.nav-links .page-numbers.current {
  background: var(--ne-gold, #c9a96e) !important;
  color: #111111 !important;
  border-color: var(--ne-gold, #c9a96e) !important;
  font-weight: 700 !important;
}

/* Flechas de navegación clásica de Blocksy (Siguiente Post / Anterior Post) */
.ct-post-navigation a,
.post-navigation a,
.nav-previous a,
.nav-next a,
.posts-navigation a,
.pagination a {
  color: var(--ne-gold, #c9a96e) !important;
}
.nav-previous a:hover,
.nav-next a:hover,
.posts-navigation a:hover,
.pagination a:hover,
.ct-post-navigation a:hover {
  color: var(--ne-gold-light, #e0c890) !important;
}

/* Paginación top de la tienda */
.ne-shop-pagination--top {
  padding: 0 0 1.75rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  margin-bottom: 1.75rem;
}
.ne-shop-pagination--top .woocommerce-pagination ul,
.ne-shop-pagination .woocommerce-pagination ul {
  display: flex; justify-content: center; gap: .5rem;
  list-style: none; padding: 0;
  flex-wrap: wrap; 
}
.ne-shop-pagination--top .woocommerce-pagination ul li a,
.ne-shop-pagination--top .woocommerce-pagination ul li span,
.ne-shop-pagination .woocommerce-pagination ul li a,
.ne-shop-pagination .woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  font-size: .65rem; font-weight: 600;
  border: 1px solid rgba(201,169,110,.2);
  color: #c9c2b8; text-decoration: none;
  transition: all .2s;
}

@media (max-width: 600px) {
  /* Forzar que Blocksy no oculte los números individuales de página en celulares */
  .woocommerce nav.woocommerce-pagination ul li,
  .ne-shop-pagination .woocommerce-pagination ul li,
  .woocommerce-pagination .page-numbers {
    display: flex !important;
  }
  
  .ne-shop-pagination--top .woocommerce-pagination ul li a,
  .ne-shop-pagination--top .woocommerce-pagination ul li span,
  .ne-shop-pagination .woocommerce-pagination ul li a,
  .ne-shop-pagination .woocommerce-pagination ul li span {
    width: 32px; height: 32px;
    font-size: .6rem;
  }
}

/* ==========================================================================
   AJAX LIVE SEARCH (Búsqueda Predictiva)
   ========================================================================== */

.ne-live-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  z-index: 10000;
  animation: ne-fade-down 0.2s ease-out;
}

@keyframes ne-fade-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar para resultados */
.ne-live-search-results::-webkit-scrollbar { width: 6px; }
.ne-live-search-results::-webkit-scrollbar-track { background: transparent; }
.ne-live-search-results::-webkit-scrollbar-thumb { background: rgba(201, 169, 110, 0.4); border-radius: 4px; }

.ne-ls-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.2s;
  gap: 14px;
}
.ne-ls-item:hover, .ne-ls-item:focus {
  background: rgba(201, 169, 110, 0.08);
}
.ne-ls-item img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
}
.ne-ls-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.ne-ls-title {
  color: #fff;
  font-family: var(--ne-font-serif, 'Playfair Display', serif);
  font-size: 0.95rem;
  line-height: 1.2;
}
.ne-ls-item:hover .ne-ls-title {
  color: var(--ne-gold, #c9a96e);
}
.ne-ls-price {
  color: var(--ne-white-muted, #c9c2b8);
  font-size: 0.8rem;
}
.ne-ls-price ins { color: #e0c890; text-decoration: none; }
.ne-ls-price del { color: #6e6660; font-size: 0.7rem; margin-right: 4px; }

.ne-ls-viewall {
  display: block;
  text-align: center;
  padding: 14px;
  color: var(--ne-gold, #c9a96e) !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.2s;
}
.ne-ls-viewall:hover {
  background: rgba(201, 169, 110, 0.15);
  color: #fff !important;
}

.ne-ls-loading, .ne-ls-empty {
  padding: 20px;
  text-align: center;
  color: var(--ne-white-muted, #c9c2b8);
  font-size: 0.85rem;
}

.ne-shop-pagination--top .woocommerce-pagination ul li a.prev,
.ne-shop-pagination--top .woocommerce-pagination ul li a.next,
.ne-shop-pagination--top .woocommerce-pagination ul li a[rel="prev"],
.ne-shop-pagination--top .woocommerce-pagination ul li a[rel="next"] {
  color: var(--ne-gold, #c9a96e) !important;
  border-color: rgba(201, 169, 110, 0.35) !important;
}
.ne-shop-pagination--top .woocommerce-pagination ul li a:hover,
.ne-shop-pagination--top .woocommerce-pagination ul li span.current {
  background: rgba(201,169,110,.1); border-color: #c9a96e; color: #c9a96e;
}

/* ==========================================================================
   FIXES — CARRITO, CHECKOUT MOBILE, NOTIFICACIONES
   ========================================================================== */

/* ── 1. Notificaciones del carrito: centrar texto y ocultar botón vacío ── */
.woocommerce-message,
.woocommerce-info {
    text-align: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}
/* Botón dorado vacío dentro de la notificación → ocultar completamente */
.woocommerce-message .button:empty,
.woocommerce-message .button[style*="display:none"],
.woocommerce-message a.button:empty,
.woocommerce-message .wc-forward:empty {
    display: none !important;
}
/* Si el botón no tiene texto visible, ocultarlo */
.woocommerce-message .button,
.woocommerce-message .wc-forward {
    display: none !important;
}

/* ── Tu pedido — Checkout Order Review — Minimal Dark ── */

/* Contenedor: sin borde, fondo oscuro limpio */
#order_review,
.woocommerce-checkout-review-order,
.woocommerce-checkout #order_review {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
}

/* Título sencillo */
#order_review_heading,
.woocommerce-checkout #order_review_heading {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: var(--ne-text-light, #e8e0d0) !important;
    padding: 0 0 12px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    background: none !important;
}
#order_review_heading::before { content: none !important; }

/* Tabla: sin bordes visibles */
.woocommerce-checkout-review-order-table,
#order_review table.shop_table {
    border: none !important;
    border-collapse: collapse !important;
    background-color: transparent !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Ocultar headers PRODUCTO / SUBTOTAL */
.woocommerce-checkout-review-order-table thead,
#order_review table.shop_table thead {
    display: none !important;
}

/* Todos los td/th: sin relleno raro, sin bordes laterales */
.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout-review-order-table tfoot {
    border-left: none !important;
    border-right: none !important;
    background-color: transparent !important;
}

/* Separador entre filas de producto */
.woocommerce-checkout-review-order-table tbody tr.cart_item {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* Celda nombre de producto */
.woocommerce-checkout-review-order-table td.product-name,
.woocommerce-checkout-review-order-table .product-name {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 0 !important;
    border: none !important;
    background-color: transparent !important;
    vertical-align: middle !important;
}

/* Thumbnail */
.woocommerce-checkout-review-order-table .product-name img,
.ne-order-thumb {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    border: none !important;
    flex-shrink: 0 !important;
    display: block !important;
    opacity: 0.9;
}

/* Nombre del producto */
.woocommerce-checkout-review-order-table .product-name a,
.woocommerce-checkout-review-order-table .product-name > strong:not(.product-quantity),
.ne-order-name {
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: var(--ne-text-light, #e8e0d0) !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

/* Cantidad — inline sin adornos */
.woocommerce-checkout-review-order-table .product-quantity,
.ne-order-qty {
    color: rgba(200,169,81,0.6) !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Celda precio por item */
.woocommerce-checkout-review-order-table td.product-total,
#order_review table.shop_table td.product-total {
    text-align: right !important;
    padding: 14px 0 !important;
    vertical-align: middle !important;
    color: var(--ne-text-light, #e8e0d0) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    border: none !important;
    background-color: transparent !important;
}

/* Filas tfoot (Subtotal, Envío, etc.) */
.woocommerce-checkout-review-order-table tfoot tr td,
.woocommerce-checkout-review-order-table tfoot tr th,
#order_review table.shop_table tfoot tr td,
#order_review table.shop_table tfoot tr th {
    padding: 10px 0 !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: rgba(232,224,208,0.55) !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    background-color: transparent !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Fila TOTAL — única con acento dorado */
.woocommerce-checkout-review-order-table tfoot tr.order-total td,
.woocommerce-checkout-review-order-table tfoot tr.order-total th,
#order_review table.shop_table tfoot tr.order-total td,
#order_review table.shop_table tfoot tr.order-total th {
    border-top: 1px solid rgba(200,169,81,0.2) !important;
    padding: 14px 0 !important;
    color: var(--ne-gold, #c8a951) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total .woocommerce-Price-amount,
#order_review table.shop_table tfoot tr.order-total .woocommerce-Price-amount {
    color: var(--ne-gold, #c8a951) !important;
    font-weight: 700 !important;
}

/* Mobile */
@media (max-width: 480px) {
    .woocommerce-checkout-review-order-table td.product-name,
    .woocommerce-checkout-review-order-table .product-name {
        padding: 12px 0 !important;
        gap: 10px !important;
    }
    .woocommerce-checkout-review-order-table td.product-total,
    #order_review table.shop_table td.product-total {
        padding: 12px 0 !important;
    }
}


/* ── 4. Thank-you page: eliminar bloque blanco y forzar tema oscuro ── */

/* Matar TODO fondo blanco en la página de agradecimiento */
body.woocommerce-order-received,
body.woocommerce-order-received .site-main,
body.woocommerce-order-received .entry-content,
body.woocommerce-order-received .woocommerce,
body.woocommerce-order-received article,
body.woocommerce-order-received .hentry,
body.woocommerce-order-received .woocommerce-order {
    background-color: var(--ne-bg-dark, #111111) !important;
    color: var(--ne-text-light, #e8e0d0) !important;
}

/* El bloque blanco específico que tapa el mensaje de agradecimiento */
body.woocommerce-order-received .woocommerce > div,
body.woocommerce-order-received .woocommerce > section,
body.woocommerce-order-received .woocommerce > p,
body.woocommerce-order-received .woocommerce > ul {
    background-color: transparent !important;
}

/* Bloque del notice "Tu pedido está reservado" — forzar contraste adecuado */
body.woocommerce-order-received .woocommerce-notice,
body.woocommerce-order-received .woocommerce-thankyou-order-received,
body.woocommerce-order-received .woocommerce-info {
    background-color: rgba(200, 169, 81, 0.1) !important;
    border-color: var(--ne-gold, #c8a951) !important;
    color: var(--ne-text-light, #e8e0d0) !important;
    border-radius: 8px !important;
}

/* Tablas de resumen del pedido */
body.woocommerce-order-received .woocommerce-order-overview,
body.woocommerce-order-received .woocommerce-order-overview li,
body.woocommerce-order-received table.woocommerce-table,
body.woocommerce-order-received table.woocommerce-table th,
body.woocommerce-order-received table.woocommerce-table td {
    background-color: transparent !important;
    color: var(--ne-text-light, #e8e0d0) !important;
    border-color: rgba(200, 169, 81, 0.2) !important;
}

/* Bloques vacíos generados por Mercado Pago u otros gateways */
.woocommerce-order-received .woocommerce > div:empty,
.woocommerce-order-received .woocommerce > section:empty,
.woocommerce-thankyou-section:empty,
.woocommerce-order-overview + div:empty,
.entry-content .woocommerce > :empty,
.woocommerce-checkout-payment > .payment_box:empty,
.woocommerce-order .woocommerce-info:empty,
.woocommerce-thankyou .mp-checkout-container:empty,
.woocommerce-thankyou #payment:empty,
.woocommerce-order-pay form#order_review > .form-row:empty {
    display: none !important;
}

/* Mercado Pago iframe blanco: fondo oscuro mientras carga */
.woocommerce-order .mp-checkout-pro-modal-container,
.woocommerce-order iframe[id*="mercadopago"],
.woocommerce-thankyou iframe {
    background: var(--ne-bg-dark, #111) !important;
    border: none !important;
    border-radius: 8px !important;
}

/* Checkout: bloque blanco visible antes de que el woocommerce-message cargue */
.woocommerce-checkout .woocommerce-notices-wrapper:empty {
    display: none !important;
}
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error {
    background: rgba(200,169,81,0.08) !important;
    border-top-color: var(--ne-gold, #c8a951) !important;
    color: var(--ne-text-light, #e8e0d0) !important;
}

/* ==========================================================================
   UI MINOR CORRECTIONS — NOTIFICATIONS & QUANTITIES (CORREGIDO)
   ========================================================================== */

/* 1. Evitar colapso de notificaciones móviles, sin romper ::before o botones */
.woocommerce-message, 
.woocommerce-error, 
.woocommerce-info {
    height: auto !important;
    min-height: 60px !important;
    padding: 20px 20px 20px 50px !important; /* Espacio para el icono a la izquierda */
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    position: relative !important;
}

/* Forzar que el texto no se monte en el icono */
.woocommerce-message::before, 
.woocommerce-error::before, 
.woocommerce-info::before {
    position: absolute !important;
    left: 20px !important;
    top: 22px !important;
}

/* El botón de Deshacer ("Restore item") en el carrito */
.woocommerce-message .button, 
.woocommerce-message .restore-item {
    background: var(--ne-gold) !important;
    color: #000 !important;
    border: none !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    margin: 10px 0 0 0 !important;
    text-decoration: none !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .woocommerce-message, 
    .woocommerce-error, 
    .woocommerce-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-bottom: 25px !important;
    }
    
    .woocommerce-message .button, 
    .woocommerce-message .restore-item {
        width: 100% !important;
        text-align: center !important;
        margin-top: 15px !important;
    }
}

/* 2. Selector Numérico de Cantidad "Premium Pill" (Evitando bugs nativos de Blocksy) */
body .woocommerce .quantity,
body .woocommerce-cart .product-quantity .quantity,
body .woocommerce form .quantity[data-type] {
    display: inline-flex !important;
    flex-direction: row !important; /* Para ordenar con order */
    align-items: stretch !important;
    justify-content: space-between !important;
    border: 1px solid var(--ne-border-mid) !important;
    border-radius: 40px !important; /* Estilo píldora */
    background: transparent !important;
    height: 48px !important;
    width: 140px !important; /* Medida fija perfecta */
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important; /* Corta bordes oscuros nativos al usar hover */
}

/* Blocksy inyecta rectángulos cuadrados por detrás usando seudoelementos. Apagarlos con jerarquía brutal. */
body .woocommerce .quantity::before,
body .woocommerce .quantity::after,
body .woocommerce form .quantity[data-type]::before,
body .woocommerce form .quantity[data-type]::after {
    display: none !important;
    opacity: 0 !important;
}

/* Blocksy inyecta todo a la izquierda del input. Ordenemos visualmente: Menos -> Numero -> Mas */
body .woocommerce .quantity .ct-decrease, body .woocommerce .quantity .minus { order: 1 !important; margin: 0 !important; }
body .woocommerce .quantity input.qty { order: 2 !important; margin: 0 !important; }
body .woocommerce .quantity .ct-increase, body .woocommerce .quantity .plus { order: 3 !important; margin: 0 !important; }

/* Los SVGs de Blocksy y el botón HTML tienen enlazado el evento click de JS.
   Los hacemos invisibles transparentes, expandidos al tamaño completo del botón táctil. */
body .woocommerce .quantity .minus svg,
body .woocommerce .quantity .plus svg,
body .woocommerce .quantity .ct-decrease svg,
body .woocommerce .quantity .ct-increase svg,
body .woocommerce .quantity .minus i,
body .woocommerce .quantity .plus i,
body .woocommerce .quantity .ct-decrease i,
body .woocommerce .quantity .ct-increase i {
    opacity: 0 !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;
    cursor: pointer !important;
}

/* Forzamos nuestros propios iconos perfectos y limpios EN-FLUJO para centrado perfecto */
body .woocommerce .quantity .minus::before,
body .woocommerce .quantity .ct-decrease::before {
    content: "−" !important;
    display: inline-block !important;
    position: relative !important; 
    top: -2px !important; /* Levantar el glifo central visualmente */
    pointer-events: none !important;
    font-size: 1.6rem !important;
    line-height: 0 !important; /* Elimina caja de texto que descentra */
}
body .woocommerce .quantity .plus::before,
body .woocommerce .quantity .ct-increase::before {
    content: "+" !important;
    display: inline-block !important;
    position: relative !important; 
    top: -2px !important; /* Levantar el glifo central visualmente */
    pointer-events: none !important;
    font-size: 1.6rem !important;
    line-height: 0 !important;
}

/* Botones + / - contenedores */
body .woocommerce .quantity .minus,
body .woocommerce .quantity .plus,
body .woocommerce .quantity .ct-decrease,
body .woocommerce .quantity .ct-increase {
    position: relative !important;
    flex: 0 0 40px !important; /* Forzar bloque estricto */
    width: 40px !important;
    min-width: 40px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    color: var(--ne-gold) !important;
    cursor: pointer !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    padding: 0 !important;
    line-height: 0 !important;
    z-index: 2 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

body .woocommerce .quantity .minus:hover,
body .woocommerce .quantity .plus:hover,
body .woocommerce .quantity .ct-decrease:hover,
body .woocommerce .quantity .ct-increase:hover {
    background: rgba(201, 169, 110, 0.15) !important;
    color: var(--ne-white) !important;
}

/* Redondear fondo hover para que coincida con la píldora */
body .woocommerce .quantity .minus:hover, body .woocommerce .quantity .ct-decrease:hover { border-radius: 40px 0 0 40px !important; }
body .woocommerce .quantity .plus:hover, body .woocommerce .quantity .ct-increase:hover { border-radius: 0 40px 40px 0 !important; }

/* Casilla de número central: SELECTOR BRUTAL para vencer el data-type de Blocksy y borrar su borde */
body .woocommerce form .quantity input.qty[type="number"],
body .woocommerce-cart form .quantity input.qty[type="number"],
body .woocommerce .quantity input.qty,
body .woocommerce .quantity input.qty[type="number"] {
    flex: 1 !important;
    width: 100% !important;
    height: auto !important;
    text-align: center !important;
    border: 0px solid transparent !important; /* Exterminar rectángulo gris */
    outline: none !important;
    background: transparent !important;
    color: var(--ne-white) !important;
    font-size: 1.1rem !important;
    font-family: var(--ne-font-sans) !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    appearance: none !important;
    -moz-appearance: textfield !important;
    z-index: 1 !important;
}

/* En la página de producto única alinear el botón y cantidad verticalmente */
.woocommerce div.product form.cart {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 15px !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    height: 48px !important;
    margin: 0 !important;
    flex: 1 !important;
    min-width: 180px !important;
}

/* 3. Ocultar el botón "Actualizar carrito" nativo (ahora se hace automático) */
button[name="update_cart"] {
    display: none !important;
}

/* 4. Correcciones Específicas de Mobile para Carrito (Diseño Horizontal Premium) */
@media (max-width: 768px) {
    /* 0. Reducir la Píldora de Selección para Móvil */
    body .woocommerce .quantity,
    body .woocommerce-cart .product-quantity .quantity,
    body .woocommerce form .quantity[data-type] {
        height: 38px !important;
        width: 110px !important; /* Más angosta */
    }
    
    body .woocommerce .quantity .minus,
    body .woocommerce .quantity .plus,
    body .woocommerce .quantity .ct-decrease,
    body .woocommerce .quantity .ct-increase {
        flex: 0 0 32px !important;
        width: 32px !important;
        min-width: 32px !important;
    }
    
    body .woocommerce form .quantity input.qty[type="number"],
    body .woocommerce-cart form .quantity input.qty[type="number"],
    body .woocommerce .quantity input.qty,
    body .woocommerce .quantity input.qty[type="number"] {
        font-size: 1rem !important;
    }

    /* 1. Usar Flexbox para toda la fila del carrito */
    .woocommerce-cart table.cart tr.cart_item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: transparent !important;
    }

    /* 2. Miniatura clavada a la izquierda */
    .woocommerce-cart table.cart tr.cart_item td.product-thumbnail {
        display: block !important;
        width: 90px !important;
        min-width: 90px !important;
        margin-right: 18px !important;
        padding: 0 !important;
        border: none !important;
    }

    .woocommerce-cart table.cart tr.cart_item td.product-thumbnail img {
        width: 100% !important;
        height: auto !important;
        border-radius: 6px !important;
        display: block !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
    }

    /* 3. Contenedor de Texto y Acciones llenando el resto de la derecha */
    .woocommerce-cart table.cart tr.cart_item td.product-name {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        flex: 1 !important;
        padding: 0 !important;
        border: none !important;
        text-align: left !important;
    }

    /* Nombre del Producto */
    .woocommerce-cart table.cart tr.cart_item td.product-name > a {
        font-size: 1.05rem !important;
        font-weight: 500 !important;
        color: var(--ne-white) !important;
        margin-bottom: 14px !important;
        display: block !important;
        line-height: 1.3 !important;
        text-decoration: none !important;
    }

    /* 4. Tira inferior de Herramientas (Píldora X Precio [$ Basura]) de Blocksy */
    .woocommerce-cart table.cart tr.cart_item td.product-name .product-mobile-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 12px !important; 
        width: 100% !important;
        justify-content: flex-start !important;
        margin: 0 !important;
    }

    /* Empujar el cesto de basura a la esquina derecha */
    .woocommerce-cart table.cart tr.cart_item td.product-name .product-mobile-actions a.remove {
        margin-left: auto !important;
        color: var(--ne-text-muted) !important;
        display: flex !important;
        align-items: center !important;
    }
    .woocommerce-cart table.cart tr.cart_item td.product-name .product-mobile-actions a.remove:hover {
        color: #ff4d4d !important;
    }

    /* Achicar la letra del multiplicador "x" y precio para que entre armónico al lado de la píldora */
    .woocommerce-cart table.cart tr.cart_item td.product-name .product-mobile-actions .woocommerce-Price-amount {
        font-size: 0.95rem !important;
        color: var(--ne-gold) !important;
        font-weight: 600 !important;
    }
    
    .woocommerce-cart table.cart tr.cart_item td.product-name .product-mobile-actions .ct-product-multiply-symbol {
        font-size: 0.9rem !important;
        color: var(--ne-text-muted) !important;
    }

    /* Ocultar etiquetas previas de "Producto:" o "Precio:" que Blocksy inserta feo por CSS */
    .woocommerce-cart table.cart tr.cart_item td::before {
        display: none !important;
    }

    /* Ocultar definitivamente columnas separadas que sobran (Blocksy fusionó todo arriba) */
    .woocommerce-cart table.cart tr.cart_item > td.product-price,
    .woocommerce-cart table.cart tr.cart_item > td.product-quantity,
    .woocommerce-cart table.cart tr.cart_item > td.product-subtotal,
    .woocommerce-cart table.cart tr.cart_item > td.product-remove {
        display: none !important;
    }
}
