/* ==========================================================================
   LE COMPTOIR DES ESSENCES — SALA: LA RESERVA PRIVADA (HOJA EXCLUSIVA MOBILE)
   Atmósfera: Noche Urbana / Rascacielos / Rayos / Lujo de Alta Costura
   Leyes Técnicas Inviolables:
   1. Prefijo -webkit-backdrop-filter antes de backdrop-filter.
   2. Emblema WOW 48px en esquina superior derecha con wowAuraGlow.
   3. Logotipo centrado en tercio superior oscuro.
   4. Expositor en tercio inferior sobre mármol con halos ámbar y azul eléctrico.
   5. Cartelas glassmorphism en 3 líneas de texto.
   6. Botón de navegación centrado con luxuryAuraPulse.
   Media Target: (max-width: 768px)
   ========================================================================== */

:root {
    --gold-primary: #C5A059;
    --gold-bright: #D4AF37;
    --gold-dark: #8C6B1C;
    --gold-border: rgba(197, 160, 89, 0.45);
    
    --amber-glow: #FFAE19;
    --amber-spot-border: rgba(212, 175, 55, 0.35);
    --amber-spot-shadow: rgba(212, 175, 55, 0.2);
    
    --blue-electric: #00B4FF;
    --blue-glow: #4DC3FF;
    --blue-spot-border: rgba(0, 180, 255, 0.35);
    --blue-spot-shadow: rgba(0, 180, 255, 0.2);

    --bg-dark: #050608;
    --text-pure-white: #FFFFFF;
    --text-cream: #F4F0EC;
    --text-muted: #A09B93;
    
    --font-title: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   1. KEYFRAMES DE ANIMACIÓN MOBILE
   ========================================================================== */

@keyframes wowAuraGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
    }
    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.9)) drop-shadow(0 0 6px rgba(255, 235, 170, 0.65));
    }
}

@keyframes luxuryAuraPulse {
    0%, 100% {
        color: var(--text-cream);
        text-shadow: 
            0 0 8px rgba(212, 175, 55, 0.6),
            0 0 16px rgba(212, 175, 55, 0.35),
            0 2px 4px rgba(0, 0, 0, 0.85);
    }
    50% {
        color: var(--gold-bright);
        text-shadow: 
            0 0 14px rgba(212, 175, 55, 1),
            0 0 24px rgba(255, 215, 0, 0.75),
            0 2px 6px rgba(0, 0, 0, 0.95);
    }
}

@keyframes lineAuraPulse {
    0%, 100% {
        width: 50%;
        box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
    }
    50% {
        width: 80%;
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.9);
    }
}

/* Shimmer Dinámico Oro Champagne / Seda Metálica */
@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Respiración Orgánica Halo Ámbar Dorado (Frasco Izquierdo: 4.6s) */
@keyframes haloBreatheAmber {
    0%, 100% {
        transform: translateY(0px);
        filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 8px rgba(212, 163, 89, 0.3));
    }
    50% {
        transform: translateY(-5px);
        filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(212, 163, 89, 0.75)) drop-shadow(0 0 32px rgba(255, 185, 90, 0.4));
    }
}

@keyframes shadowLevitateLeft {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(0.88);
        opacity: 0.55;
    }
}

@keyframes reflectionLevitateLeft {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Respiración Orgánica Halo Azul Zafiro (Frasco Derecho: 5.3s) */
@keyframes haloBreatheBlue {
    0%, 100% {
        transform: translateY(0px);
        filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 8px rgba(45, 125, 210, 0.3));
    }
    50% {
        transform: translateY(-5px);
        filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(65, 145, 235, 0.75)) drop-shadow(0 0 32px rgba(90, 175, 255, 0.4));
    }
}

@keyframes shadowLevitateRight {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(0.88);
        opacity: 0.55;
    }
}

@keyframes reflectionLevitateRight {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ==========================================================================
   2. ESTRUCTURA GENERAL Y FONDO DESACOPLADO MOBILE
   ========================================================================== */

html, body {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-dark);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body.room-reserva-privada {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
}

.reserva-privada-stage, #reserva-privada-canvas, #boutique-viewport, .stage-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.reserva-privada-stage::before,
#reserva-privada-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/backgrounds/la-reserva-privada-bg-mobile.jpg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
    animation: reservaFadeIn 0.25s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes reservaFadeIn {
    from {
        opacity: 0.85;
        transform: scale(1.005);
    }
    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

/* ==========================================================================
   3. CABECERA E IDENTIDAD DE MARCA
   ========================================================================== */

/* Emblema WOW en Esquina Superior Derecha (48px) */
#brand-emblem {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

#brand-emblem .gold-emblem {
    width: 48px;
    height: auto;
    display: block;
    animation: wowAuraGlow 3.6s ease-in-out infinite;
    transition: transform 0.4s var(--transition-smooth), filter 0.4s ease;
}

#brand-emblem:hover .gold-emblem,
#brand-emblem:active .gold-emblem,
#brand-emblem:focus-visible .gold-emblem {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.95)) brightness(1.1);
}

/* Identidad Central (#spot-logo con Shimmer Oro Champagne) */
body[data-room="la-reserva-privada"] #spot-logo,
body.room-reserva-privada #spot-logo,
#spot-logo {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 30;
    width: calc(100% - 130px);
    max-width: 290px;
    pointer-events: auto;
    cursor: default;
}

.room-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    background: linear-gradient(120deg, #d8bf8d 0%, #ffffff 30%, #c9a86a 55%, #f4e8c1 80%, #b88d44 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 7s ease-in-out infinite;
    filter: drop-shadow(0 2px 10px rgba(201, 168, 106, 0.3));
    line-height: 1.25;
    white-space: nowrap;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-bright);
    margin-top: 4px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    line-height: 1.2;
}

/* ==========================================================================
   4. EXPOSITOR DE PRODUCTOS (TERCIO INFERIOR SOBRE MÁRMOL)
   ========================================================================== */

.spot-bottle {
    position: absolute;
    bottom: 15.5%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    z-index: 20;
    min-width: 70px;
    padding: 0 4px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.35s var(--transition-smooth);
}

.bottle-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.bottle-contact-shadow {
    width: 65px;
    height: 9px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 45%, transparent 75%);
    border-radius: 50%;
    margin-top: -5px;
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.4s var(--transition-smooth), opacity 0.4s ease;
}

/* --- Expositor Izquierdo: Blue Rain Le Parfum (#spot-left - Halo Ámbar Respirable) --- */
#spot-left {
    left: 23%;
    bottom: 15.5%;
}

#spot-left .perfume-bottle {
    height: 88px;
    max-height: 9.8vh;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--transition-smooth), filter 0.4s ease;
    position: relative;
    z-index: 2;
    animation: haloBreatheAmber 4.6s ease-in-out infinite;
}

#spot-left .shadow-left {
    animation: shadowLevitateLeft 4.6s ease-in-out infinite;
}

#spot-left:hover .perfume-bottle,
#spot-left:focus-visible .perfume-bottle,
#spot-left.spot-active .perfume-bottle {
    animation-play-state: paused;
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(255, 174, 25, 0.95)) drop-shadow(0 0 34px rgba(255, 215, 80, 0.65)) brightness(1.08);
}

#spot-left:hover .shadow-left,
#spot-left:focus-visible .shadow-left,
#spot-left.spot-active .shadow-left {
    animation-play-state: paused;
    transform: scale(1.12);
    opacity: 0.95;
    filter: blur(3px);
}

/* --- Expositor Derecho: Black Intense Red Mystique (#spot-right - Halo Azul Respirable) --- */
#spot-right {
    left: 77%;
    bottom: 15.5%;
}

#spot-right .perfume-bottle {
    height: 88px;
    max-height: 9.8vh;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--transition-smooth), filter 0.4s ease;
    position: relative;
    z-index: 2;
    animation: haloBreatheBlue 5.3s ease-in-out infinite;
}

#spot-right .shadow-right {
    animation: shadowLevitateRight 5.3s ease-in-out infinite;
}

#spot-right:hover .perfume-bottle,
#spot-right:focus-visible .perfume-bottle,
#spot-right.spot-active .perfume-bottle {
    animation-play-state: paused;
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(0, 180, 255, 0.95)) drop-shadow(0 0 34px rgba(80, 220, 255, 0.65)) brightness(1.08);
}

#spot-right:hover .shadow-right,
#spot-right:focus-visible .shadow-right,
#spot-right.spot-active .shadow-right {
    animation-play-state: paused;
    transform: scale(1.12);
    opacity: 0.95;
    filter: blur(3px);
}

/* ==========================================================================
   5. REFLEJO ESPECULAR EN EL SUELO MOJADO (.spot-reflection)
   ========================================================================== */

.spot-reflection {
    position: absolute;
    top: calc(100% + 28px);
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 75%;
    height: auto;
    z-index: 4;
    pointer-events: none;
    opacity: 0.42;
    transition: opacity 0.4s ease;
}

.spot-bottle:hover .spot-reflection,
.spot-bottle:focus-visible .spot-reflection,
.spot-bottle.spot-active .spot-reflection {
    opacity: 0.60;
}

.reflection-bottle {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: blur(2px) brightness(1.35);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
}

#spot-left .reflection-img-left {
    filter: blur(2px) brightness(1.35) drop-shadow(0 0 6px rgba(255, 174, 25, 0.4));
    animation: reflectionLevitateLeft 4.6s ease-in-out infinite;
}

#spot-right .reflection-img-right {
    filter: blur(2px) brightness(1.35) drop-shadow(0 0 6px rgba(0, 180, 255, 0.4));
    animation: reflectionLevitateRight 5.3s ease-in-out infinite;
}

/* ==========================================================================
   6. CARTELAS GLASSMORPHISM EN 3 LÍNEAS (.spot-caption)
   ========================================================================== */

.spot-caption,
.perfume-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s var(--transition-smooth), visibility 0.3s ease;
    padding: 6px 10px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 18, 0.22);
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.45);
    border-radius: 4px;
    z-index: 28;
}

#spot-left .spot-caption {
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(212, 175, 55, 0.15);
}

#spot-right .spot-caption {
    border: 1px solid rgba(0, 180, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 180, 255, 0.15);
}

.spot-bottle:hover .spot-caption,
.spot-bottle:focus-visible .spot-caption,
.spot-bottle.spot-active .spot-caption {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
    pointer-events: auto;
}

/* Tipografía en 3 Líneas */
.fragrance-title {
    font-family: var(--font-title);
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.fragrance-title span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--text-pure-white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.fragrance-title .sub-title {
    font-size: 0.60rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #E8DFD4;
    margin-top: 1px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.brand-name {
    font-family: var(--font-sans);
    font-size: 0.50rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--gold-bright);
    text-transform: uppercase;
    margin: 2px 0 0 0;
    line-height: 1.2;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   7. BOTÓN CINCELADO EN LA BASE (#spot-nav)
   ========================================================================== */

#spot-nav {
    position: absolute;
    left: 50%;
    bottom: 18.5% !important;
    transform: translateX(-50%);
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.btn-cincelado {
    background: transparent;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-cincelado-text {
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 3px;
    text-align: center;
    animation: luxuryAuraPulse 3s ease-in-out infinite;
    transition: all 0.35s ease;
    text-transform: uppercase;
    display: block;
}

.btn-cincelado-line {
    height: 1.5px;
    width: 60%;
    background: linear-gradient(90deg, transparent 0%, var(--gold-bright) 50%, transparent 100%);
    margin-top: 3px;
    animation: lineAuraPulse 3s ease-in-out infinite;
    transition: all 0.4s var(--transition-smooth);
}

.btn-cincelado:hover .btn-cincelado-text,
.btn-cincelado:focus-visible .btn-cincelado-text,
.btn-cincelado:active .btn-cincelado-text {
    color: var(--gold-bright);
    letter-spacing: 3.5px;
    text-shadow: 0 0 16px rgba(212, 175, 55, 1);
}

.btn-cincelado:hover .btn-cincelado-line,
.btn-cincelado:focus-visible .btn-cincelado-line,
.btn-cincelado:active .btn-cincelado-line {
    width: 90%;
    box-shadow: 0 0 12px rgba(212, 175, 55, 1);
}

/* ==========================================================================
   8. MENÚ FLOTANTE DE COLECCIONES (#collections-menu)
   ========================================================================== */

.boticario-floating-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(10px);
    width: 90%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    background: rgba(12, 12, 18, 0.48);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(201, 168, 106, 0.35);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), inset 0 0 12px rgba(212, 175, 55, 0.15);
    padding: 10px;
    box-sizing: border-box;
    transition: opacity 0.3s ease, transform 0.3s var(--transition-smooth), visibility 0.3s ease;
    pointer-events: none;
}

.boticario-floating-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Cabecera Flotante Centrada */
.boticario-nav-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px 8px 4px;
    border-bottom: 1.5px solid transparent;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.6) 50%, transparent 100%);
    background-size: 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
    margin-bottom: 6px;
}

.boticario-eyebrow {
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 3px;
    text-align: center;
    color: var(--gold-bright);
    animation: luxuryAuraPulse 3s ease-in-out infinite;
    display: block;
}

.btn-close-boticario {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold-bright);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-close-boticario:hover,
.btn-close-boticario:active {
    color: var(--text-pure-white);
    transform: translateY(-50%) rotate(90deg) scale(1.1);
}

/* Fila de Sala Centrada y Simétrica */
.boticario-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.boticario-nav-item:hover,
.boticario-nav-item:active {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

/* Estado Activo: La Reserva Privada */
.boticario-nav-item.active {
    background: rgba(25, 22, 18, 0.78);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--gold-bright);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.25);
}

/* Títulos de Salas */
.boticario-nav-title {
    font-family: var(--font-title);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--text-cream);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: color 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.boticario-nav-item:hover .boticario-nav-title,
.boticario-nav-item.active .boticario-nav-title {
    color: var(--gold-bright); 
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Lemas en 2 Líneas */
.boticario-nav-desc {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: 0.4px;
    color: var(--text-muted);
    margin-top: 3px;
    text-align: center;
    transition: color 0.3s ease;
    width: 100%;
}

.boticario-nav-item:hover .boticario-nav-desc,
.boticario-nav-item.active .boticario-nav-desc {
    color: #E2DDD5;
}

/* Retorno Total Garantizado al Boticario */
.logo-home-link, 
#brand-emblem, 
#spot-logo, 
.trastienda-logo-link {
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
}

/* ========================================================
   OCULTACIÓN EXCLUSIVA DE FRASCOS EN VERSIÓN MÓVIL
   ======================================================== */
.spot-bottle,
#spot-left,
#spot-right {
    display: none !important;
}

/* ========================================================
   UBICACIÓN MÓVIL DEL BOTÓN CONSULTAR AL BOTICARIO
   (JUSTO DEBAJO DE EXPLORAR COLECCIONES / CENTRADO)
   ======================================================== */
body[data-room="la-reserva-privada"] #btn-consultar-boticario,
body[data-room="la-reserva-privada"] .global-btn-consultar,
body[data-room="la-reserva-privada"] .btn-consultar-boticario,
body.room-reserva-privada #btn-consultar-boticario {
    top: auto !important;
    bottom: calc(18.5% - 66px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 176px !important;
    padding: 0 12px !important;
    justify-content: center !important;
    gap: 10px !important;
}

body[data-room="la-reserva-privada"] #btn-consultar-boticario svg,
body[data-room="la-reserva-privada"] .global-btn-consultar svg,
body[data-room="la-reserva-privada"] .btn-consultar-boticario svg,
body.room-reserva-privada #btn-consultar-boticario svg {
    margin-right: 0 !important;
}

body[data-room="la-reserva-privada"] #btn-consultar-boticario span,
body[data-room="la-reserva-privada"] .global-btn-consultar span,
body[data-room="la-reserva-privada"] .btn-consultar-boticario span,
body.room-reserva-privada #btn-consultar-boticario span {
    line-height: 1.5 !important;
    letter-spacing: 2.6px !important;
    word-spacing: 3px !important;
}

body[data-room="la-reserva-privada"] #btn-consultar-boticario:hover,
body[data-room="la-reserva-privada"] .global-btn-consultar:hover,
body[data-room="la-reserva-privada"] .btn-consultar-boticario:hover,
body.room-reserva-privada #btn-consultar-boticario:hover {
    transform: translateX(-50%) translateY(-1px) !important;
}


