/**
 * BeautyClub - Aimeos component overrides (Tailwind-compatible).
 *
 * This file neutralizes legacy Aimeos component styles and
 * replaces them with Tailwind-compatible rules for the storefront.
 *
 * Loaded by beauty-spa.blade.php — single source of truth for
 * any Aimeos HTML structure that needs visual adjustments.
 */

/* ─── Theme depth: gold accents, gradients, texture (still dark) ─── */

:root {
    /* Warm metallic accent ramp (mustard/dorado). */
    --bc-gold-0: #fff1c2;
    --bc-gold-1: var(--color-gold-light, #e8d48a);
    --bc-gold-2: var(--color-gold, #d4af37);
    --bc-gold-3: var(--color-gold-dark, #a68a2a);

    /* Extra darks for smoother gradients. */
    --bc-ink-0: #050507;
    --bc-ink-1: #07080b;
    --bc-ink-2: var(--color-salon-900, #08080a);
    --bc-ink-3: var(--color-salon-800, #0f0f12);

    /* Subtle glow colors. */
    --bc-glow-gold: rgba(212, 175, 55, 0.12);
    --bc-glow-gold-strong: rgba(212, 175, 55, 0.22);
    --bc-glow-amber: rgba(255, 206, 112, 0.09);

    /* Text contrast improvements (overrides beauty-spa.tailwind.css) */
    --color-salon-text: #e5e5e5;  /* Was #b8b8c0 */
    --color-salon-muted: #a3a3a3; /* Was #8888a0 */
}

html {
    background-color: var(--bc-ink-2);
}

/* Global background: keep it dark, add depth + warm glints. */
body {
    background-color: var(--bc-ink-2) !important;
    background-image:
        radial-gradient(1200px circle at 20% 6%, var(--bc-glow-gold), transparent 62%),
        radial-gradient(980px circle at 82% 0%, var(--bc-glow-amber), transparent 58%),
        radial-gradient(1100px circle at 72% 88%, rgba(212, 175, 55, 0.08), transparent 60%),
        linear-gradient(180deg, var(--bc-ink-1) 0%, var(--bc-ink-3) 46%, var(--bc-ink-0) 100%);
    background-attachment: fixed;
}

/* Texture overlay (very low contrast; avoids “flat” look). */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.018) 0px,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.04) 0px,
            rgba(0, 0, 0, 0.04) 1px,
            transparent 1px,
            transparent 7px
        );
}

/* Slight vignette + warm edge glow */
body::after {
    content: "";
    position: fixed;
    inset: -10%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
    background-image:
        radial-gradient(1200px circle at 8% 20%, rgba(212, 175, 55, 0.06), transparent 60%),
        radial-gradient(1400px circle at 92% 78%, rgba(212, 175, 55, 0.05), transparent 65%),
        radial-gradient(closest-side, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.55));
}

/* Ensure real content is above texture layers.
   Exclude <nav> so that position:fixed / position:sticky from Tailwind
   classes is not overridden (un-layered CSS beats @layer utilities). */
body > *:not(nav) {
    position: relative;
    z-index: 1;
}

::selection {
    background: rgba(212, 175, 55, 0.24);
    color: #ffffff;
}

/* Make “gold” feel like metal instead of flat yellow. */
.text-gold {
    text-shadow:
        0 0 18px rgba(212, 175, 55, 0.12),
        0 0 42px rgba(212, 175, 55, 0.08);
}

/* Buttons that use bg-gold should feel premium (subtle gradient + sheen). */
.bg-gold {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(0, 0, 0, 0.06));
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 34px rgba(212, 175, 55, 0.16);
}

/* Nav bar: fully opaque background + gold glint + soft shadow below. */
nav {
    background-color: #08080a !important; /* --color-salon-900, fully opaque */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Gold glint line at the very bottom of the nav */
nav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.65), transparent);
    opacity: 0.65;
}

/* Soft shadow below the navbar */
nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 32px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15) 50%, transparent);
}
/* Inputs focus: Aimeos native inputs need a consistent gold focus ring. */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.55) !important;
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.16),
        0 0 22px rgba(212, 175, 55, 0.10);
}

/* Scrollbar (WebKit) - small detail, big “finished” feel. */
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.45), rgba(212, 175, 55, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.60), rgba(212, 175, 55, 0.22));
}

/* ─── Alpine.js x-cloak (hide elements until Alpine initializes) ─── */

[x-cloak] { display: none !important; }

/* ─── Brand logo ─── */

.bc-brand-logo {
    display: block;
    width: 22rem !important;
    height: auto !important;
    max-height: none !important;
    max-width: 100% !important;
    aspect-ratio: 1250 / 296;
    object-fit: contain;
}

/* ─── Search in navbar: neutralize legacy Aimeos overrides ─── */

.navbar #bc-search-root .catalog-filter {
    width: 100%;
    margin: 0;
}

.navbar #bc-search-root .catalog-filter-search {
    width: 100%;
}

.navbar #bc-search-root .catalog-filter-search .search-lists {
    display: flex !important;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.navbar #bc-search-root .catalog-filter-search .value {
    flex: 1 1 auto;
    min-width: 0;
    width: auto !important;
}

.navbar #bc-search-root .catalog-filter-search .reset,
.navbar #bc-search-root .catalog-filter-search .btn-search {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.navbar #bc-search-root .catalog-filter-search .reset .symbol::before,
.navbar #bc-search-root .catalog-filter-search .btn-search::after {
    content: none !important;
}

/* ─── View Transitions: smooth cross-document navigation ─── */

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation-duration: 150ms;
    animation-timing-function: ease-out;
}

::view-transition-new(root) {
    animation-duration: 200ms;
    animation-timing-function: ease-in;
}

/* Fallback fade-in for browsers without View Transitions API */
body.bc-page-entering {
    animation: bc-page-enter 200ms ease-out;
}

@keyframes bc-page-enter {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ─── Language switch: avoid gold-on-gold ─── */

.bc-lang-switch .bc-lang-link {
    font-weight: 700;
    text-shadow: none;
    cursor: pointer;
}

.bc-lang-switch .bc-lang-link-active {
    color: #08080a !important;
    background-color: #d4af37;
    border: 1px solid #f2d777;
    cursor: default;
}

.bc-lang-switch .bc-lang-link-inactive {
    color: #b8b8c0 !important;
    border: 1px solid transparent;
}

.bc-lang-switch .bc-lang-link-inactive:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.06);
    border-color: #3a3a45;
}

/* ─── Categories bar: wrap & prevent horizontal scroll ─── */

.aimeos-commerce .catalog-filter-tree .list-container.level-1 {
    flex-wrap: wrap;
    overflow-x: hidden;
    overflow-y: visible;
    gap: 0.25rem;
}

.aimeos-commerce .catalog-filter-tree .list-container.level-1 > .cat-item {
    flex: 0 1 auto;
    min-width: 0;
}

.aimeos-commerce .catalog-filter-tree .item-links > .cat-link.name {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    white-space: normal;
    line-height: 1.15;
    max-width: 12rem;
}

.aimeos-commerce .catalog-filter-tree .item-links > .cat-link.name .cat-name,
.aimeos-commerce .catalog-filter-tree .item-links > .cat-link.name .cat-count {
    display: block;
}

.aimeos-commerce .catalog-filter-tree .item-links > .cat-link.name .cat-count {
    margin-top: 0.15rem;
    font-size: 10px;
    line-height: 1;
    color: #d4af37;
    font-weight: 700;
}

/* ─── Mobile: submenu collapsed ─── */

.aimeos-commerce .catalog-filter-tree .submenu {
    display: none;
}

.aimeos-commerce .catalog-filter-tree .submenu.opened {
    display: block;
}

/* ─── Gold shimmer headline (for section H2s) ─── */

.bc-gold-heading {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f5e6b8 20%,
        #d4af37 45%,
        #f2d777 55%,
        #d4af37 70%,
        #f5e6b8 85%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bc-shimmer 6s ease-in-out infinite;
}

@keyframes bc-shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* ─── Section divider (ornamental gold line with diamond) ─── */

.bc-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 2px;
    position: relative;
    overflow: visible;
}

.bc-section-divider::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.06) 10%,
        rgba(212, 175, 55, 0.45) 35%,
        rgba(212, 175, 55, 0.7) 50%,
        rgba(212, 175, 55, 0.45) 65%,
        rgba(212, 175, 55, 0.06) 90%,
        transparent
    );
}

.bc-section-divider::after {
    content: "◇";
    position: relative;
    z-index: 1;
    display: block;
    font-size: 10px;
    color: rgba(212, 175, 55, 0.6);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    line-height: 1;
}

/* ─── Enhanced card style (depth + inner gold edge glow) ─── */

.bc-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025) 0%, transparent 50%),
        var(--color-salon-700, #141418);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
        0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        145deg,
        rgba(212, 175, 55, 0.12),
        transparent 40%,
        transparent 60%,
        rgba(212, 175, 55, 0.06)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bc-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.35) !important;
}

.bc-card:hover::before {
    opacity: 1;
}

/* ─── Testimonial cards: gold quote mark ─── */

.bc-testimonial {
    position: relative;
}

.bc-testimonial::before {
    content: "❝";
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 48px;
    line-height: 1;
    color: rgba(212, 175, 55, 0.08);
    pointer-events: none;
    font-family: Georgia, serif;
}

/* ─── CTA button shimmer sweep ─── */

.bc-btn-shine {
    position: relative;
    overflow: hidden;
}

.bc-btn-shine::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.14) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.14) 55%,
        transparent 80%
    );
    transform: rotate(25deg);
    animation: bc-btn-sweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bc-btn-sweep {
    0%, 100% { left: -75%; }
    40%, 60% { left: 125%; }
}

/* ─── Stat counter gold glow ─── */

.bc-stat-value {
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(212, 175, 55, 0.08);
}

/* ─── Section corner ornaments (subtle gold accent corners) ─── */

.bc-corner-accents {
    position: relative;
}

.bc-corner-accents::before,
.bc-corner-accents::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: 0.12;
}

.bc-corner-accents::before {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.7);
    border-left: 1px solid rgba(212, 175, 55, 0.7);
}

.bc-corner-accents::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.7);
    border-right: 1px solid rgba(212, 175, 55, 0.7);
}

/* ─── Enhanced blockquote ─── */

blockquote.bc-blockquote {
    position: relative;
    border-left-color: var(--bc-gold-2) !important;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.04), transparent 80%);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* ─── Gold gradient line under eyebrow labels ─── */

.bc-eyebrow {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.bc-eyebrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bc-gold-2), transparent);
    border-radius: 2px;
}

/* ─── Trust strip gold accent ─── */

.bc-trust-strip {
    background:
        linear-gradient(90deg,
            rgba(212, 175, 55, 0.03),
            rgba(212, 175, 55, 0.06) 50%,
            rgba(212, 175, 55, 0.03)
        ),
        var(--color-salon-700, #141418) !important;
}

/* ─── Footer gold top border ─── */

footer {
    border-top-color: transparent !important;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.5) 30%,
        rgba(212, 175, 55, 0.7) 50%,
        rgba(212, 175, 55, 0.5) 70%,
        transparent
    );
}

/* ─── Brand names shimmer on hover ─── */

.bc-brand-name {
    transition: all 0.4s ease;
    position: relative;
}

.bc-brand-name:hover {
    background: linear-gradient(135deg, #d4af37, #f2d777, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    opacity: 1 !important;
}

/* ─── Hero floating gold particles (CSS-only) ─── */

.bc-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bc-hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent);
    animation: bc-float-up linear infinite;
    opacity: 0;
}

.bc-hero-particles span:nth-child(1) { left: 15%; animation-duration: 8s; animation-delay: 0s; }
.bc-hero-particles span:nth-child(2) { left: 30%; animation-duration: 10s; animation-delay: 1.5s; width: 4px; height: 4px; }
.bc-hero-particles span:nth-child(3) { left: 50%; animation-duration: 7s; animation-delay: 3s; }
.bc-hero-particles span:nth-child(4) { left: 70%; animation-duration: 9s; animation-delay: 0.8s; width: 5px; height: 5px; }
.bc-hero-particles span:nth-child(5) { left: 85%; animation-duration: 11s; animation-delay: 2.2s; }
.bc-hero-particles span:nth-child(6) { left: 40%; animation-duration: 8.5s; animation-delay: 4s; width: 2px; height: 2px; }
.bc-hero-particles span:nth-child(7) { left: 60%; animation-duration: 9.5s; animation-delay: 1s; }
.bc-hero-particles span:nth-child(8) { left: 25%; animation-duration: 12s; animation-delay: 5s; width: 4px; height: 4px; }

@keyframes bc-float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ─── Philosophy box enhanced ─── */

.bc-philosophy-box {
    position: relative;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.08), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.06), transparent 55%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.08) 50%, rgba(212, 175, 55, 0.04)) !important;
    border-color: rgba(212, 175, 55, 0.28) !important;
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ─── Tag pills subtle glow ─── */

.bc-tag {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.06);
    transition: all 0.3s ease;
}

.bc-tag:hover {
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.15) !important;
}

/* Nav dot accents on active section links */
.bc-nav-active {
    position: relative;
}

.bc-nav-active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bc-gold-2);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

/* ─── BOOKING FORM: Premium styled container ─── */

.bc-booking-form {
    position: relative;
    /* El dropdown del selector de hora (y el datepicker) deben poder "salirse" del contenedor.
       Si dejamos overflow:hidden, se recortan visualmente. */
    overflow: visible;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.07), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.05), transparent 50%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.95), rgba(8, 8, 10, 0.98)) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

/* Decorative top gold streak */
.bc-booking-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    z-index: 2;
}

/* Small gold "crown" accent at top center */
.bc-booking-form::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, rgba(212, 175, 55, 0.8), transparent 95%);
    border-radius: 0 0 6px 6px;
    z-index: 3;
}

/* ─── Form inputs: dark glass with inner shadow + gold focus ─── */

.bc-form-input {
    background:
        linear-gradient(180deg, rgba(12, 12, 15, 0.9), rgba(18, 18, 22, 0.85)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 1px 0 rgba(255, 255, 255, 0.02);
    transition: all 0.35s ease;
}

.bc-form-input::placeholder {
    color: rgba(136, 136, 160, 0.5);
}

.bc-form-input:hover {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.bc-form-input:focus {
    border-color: rgba(212, 175, 55, 0.55) !important;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(212, 175, 55, 0.1),
        0 0 24px rgba(212, 175, 55, 0.06);
    background:
        linear-gradient(180deg, rgba(18, 16, 10, 0.92), rgba(14, 14, 10, 0.95)) !important;
}

/* ─── Date picker (Pikaday) for booking form ─── */

.bc-date-picker .pika-single {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 60 !important;
    min-width: 280px;
    padding: 0.6rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background:
        radial-gradient(ellipse at 20% 10%, rgba(212, 175, 55, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(10, 10, 12, 0.98));
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bc-date-picker .pika-single.is-hidden {
    display: none !important;
}

.bc-date-picker .pika-title {
    position: relative;
    padding: 0.65rem 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(184, 184, 192, 0.95);
}

.bc-date-picker .pika-prev,
.bc-date-picker .pika-next {
    position: absolute;
    top: 10px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0;
}

.bc-date-picker .pika-prev {
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath fill='%23b8b8c0' d='M9 1.41 7.59 0 0 8l7.59 8L9 14.59 3.83 8z'/%3E%3C/svg%3E");
}

.bc-date-picker .pika-next {
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath fill='%23b8b8c0' d='M1 14.59 2.41 16 10 8 2.41 0 1 1.41 6.17 8z'/%3E%3C/svg%3E");
}

.bc-date-picker .pika-prev:hover,
.bc-date-picker .pika-next:hover {
    background-color: rgba(212, 175, 55, 0.18);
}

.bc-date-picker .pika-prev.is-disabled,
.bc-date-picker .pika-next.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.bc-date-picker .pika-label {
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(232, 212, 138, 0.95);
    background-color: transparent;
}

.bc-date-picker .pika-select {
    /* Pikaday renders month/year twice (text + <select>). Base pikaday.css hides the select via opacity. */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.bc-date-picker .pika-select option {
    color: #111827;
}

.bc-date-picker .pika-table {
    width: 100%;
    border-collapse: collapse;
}

.bc-date-picker .pika-table th {
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(136, 136, 160, 0.95);
}

.bc-date-picker .pika-table td {
    padding: 2px;
}

.bc-date-picker .pika-button {
    width: 100%;
    padding: 0.55rem;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    color: rgba(184, 184, 192, 0.95);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bc-date-picker .pika-button:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.22);
    color: rgba(255, 255, 255, 0.98);
}

.bc-date-picker .is-selected .pika-button {
    background: linear-gradient(180deg, rgba(232, 212, 138, 0.92), rgba(212, 175, 55, 0.92));
    border-color: rgba(232, 212, 138, 0.35);
    color: rgba(10, 10, 12, 0.98);
    font-weight: 800;
}

.bc-date-picker .is-today .pika-button {
    border-color: rgba(212, 175, 55, 0.55);
    color: rgba(232, 212, 138, 0.95);
    background: transparent;
}

.bc-date-picker .is-disabled .pika-button {
    opacity: 0.25;
    cursor: not-allowed;
}

/* Pikaday (booking) en portal (renderizado en <body>) para evitar recortes por overflow */
.pika-single.bc-booking-pikaday {
    position: absolute !important;
    z-index: 9999 !important;
    min-width: 280px;
    padding: 0.6rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background:
        radial-gradient(ellipse at 20% 10%, rgba(212, 175, 55, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(10, 10, 12, 0.98));
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pika-single.bc-booking-pikaday.is-hidden {
    display: none !important;
}

.pika-single.bc-booking-pikaday .pika-title {
    position: relative;
    padding: 0.65rem 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(184, 184, 192, 0.95);
}

.pika-single.bc-booking-pikaday .pika-prev,
.pika-single.bc-booking-pikaday .pika-next {
    position: absolute;
    top: 10px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0;
}

.pika-single.bc-booking-pikaday .pika-prev {
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath fill='%23b8b8c0' d='M9 1.41 7.59 0 0 8l7.59 8L9 14.59 3.83 8z'/%3E%3C/svg%3E");
}

.pika-single.bc-booking-pikaday .pika-next {
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath fill='%23b8b8c0' d='M1 14.59 2.41 16 10 8 2.41 0 1 1.41 6.17 8z'/%3E%3C/svg%3E");
}

.pika-single.bc-booking-pikaday .pika-prev:hover,
.pika-single.bc-booking-pikaday .pika-next:hover {
    background-color: rgba(212, 175, 55, 0.18);
}

.pika-single.bc-booking-pikaday .pika-prev.is-disabled,
.pika-single.bc-booking-pikaday .pika-next.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.pika-single.bc-booking-pikaday .pika-label {
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(232, 212, 138, 0.95);
    background-color: transparent;
}

.pika-single.bc-booking-pikaday .pika-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.pika-single.bc-booking-pikaday .pika-select option {
    color: #111827;
}

.pika-single.bc-booking-pikaday .pika-table {
    width: 100%;
    border-collapse: collapse;
}

.pika-single.bc-booking-pikaday .pika-table th {
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(136, 136, 160, 0.95);
}

.pika-single.bc-booking-pikaday .pika-table td {
    padding: 2px;
}

.pika-single.bc-booking-pikaday .pika-button {
    width: 100%;
    padding: 0.55rem;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    color: rgba(184, 184, 192, 0.95);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pika-single.bc-booking-pikaday .pika-button:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.22);
    color: rgba(255, 255, 255, 0.98);
}

.pika-single.bc-booking-pikaday .is-selected .pika-button {
    background: linear-gradient(180deg, rgba(232, 212, 138, 0.92), rgba(212, 175, 55, 0.92));
    border-color: rgba(232, 212, 138, 0.35);
    color: rgba(10, 10, 12, 0.98);
    font-weight: 800;
}

.pika-single.bc-booking-pikaday .is-today .pika-button {
    border-color: rgba(212, 175, 55, 0.55);
    color: rgba(232, 212, 138, 0.95);
    background: transparent;
}

.pika-single.bc-booking-pikaday .is-disabled .pika-button {
    opacity: 0.25;
    cursor: not-allowed;
}

/* ─── Booking form fancy selects (custom dropdown, no browser-native UI) ─── */

.bc-fancy-select {
    position: relative;
    z-index: 1;
}

.bc-fancy-select.bc-fancy-open {
    z-index: 120;
}

.bc-fancy-select[data-enhanced="true"] select {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.bc-fancy-trigger {
    text-align: left;
}

.bc-fancy-chevron-wrap {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(136, 136, 160, 0.95);
    pointer-events: none;
    transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.bc-fancy-open .bc-fancy-chevron-wrap {
    transform: translateY(-50%) rotate(180deg);
    color: rgba(232, 212, 138, 0.95);
}

.bc-fancy-disabled .bc-fancy-chevron-wrap {
    opacity: 0.5;
}

.bc-fancy-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 130;
    padding: 0.35rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background:
        radial-gradient(ellipse at 25% 0%, rgba(212, 175, 55, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(10, 10, 12, 0.98));
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    max-height: 260px;
    overflow: auto;
}

.bc-fancy-panel.bc-fancy-panel-portal {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    z-index: 9999;
}

.bc-fancy-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(184, 184, 192, 0.96);
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
    text-align: left;
}

.bc-fancy-option:hover {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.18);
    color: rgba(255, 255, 255, 0.98);
    transform: translateY(-1px);
}

.bc-fancy-option[aria-selected="true"] {
    background: linear-gradient(180deg, rgba(232, 212, 138, 0.90), rgba(212, 175, 55, 0.88));
    border-color: rgba(232, 212, 138, 0.30);
    color: rgba(10, 10, 12, 0.98);
}

.bc-fancy-option[aria-disabled="true"] {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.bc-fancy-option[aria-disabled="true"]:hover {
    background: transparent;
    border-color: transparent;
    color: rgba(184, 184, 192, 0.96);
}

.bc-fancy-check {
    opacity: 0;
    transition: opacity 160ms ease;
}

.bc-fancy-option[aria-selected="true"] .bc-fancy-check {
    opacity: 1;
}

/* ─── Form labels with gold accent bar ─── */

.bc-form-label {
    position: relative;
    padding-left: 14px;
}

.bc-form-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, #e8d48a, #a68a2a);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

/* ─── Booking submit: rich gold 3D button ─── */

.bc-booking-submit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eacc55, #d4af37 45%, #b8962e) !important;
    border: 1px solid rgba(255, 225, 140, 0.25) !important;
    box-shadow:
        0 6px 24px rgba(212, 175, 55, 0.30),
        0 2px 0 rgba(255, 255, 255, 0.12) inset,
        0 -2px 4px rgba(0, 0, 0, 0.2) inset !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.bc-booking-submit:hover {
    box-shadow:
        0 8px 32px rgba(212, 175, 55, 0.40),
        0 2px 0 rgba(255, 255, 255, 0.15) inset,
        0 -2px 4px rgba(0, 0, 0, 0.2) inset !important;
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.bc-booking-submit::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.12) 44%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0.12) 56%, transparent 80%);
    transform: rotate(25deg);
    animation: bc-btn-sweep 4s ease-in-out infinite;
    pointer-events: none;
}

/* ─── Info icon cards: rich icon container ─── */

.bc-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.04));
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* ─── Glass card variant: extra depth + warm tint ─── */

.bc-card-glass {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.7), rgba(14, 14, 18, 0.92)) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.03) inset,
        0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.bc-card-glass:hover {
    border-color: rgba(212, 175, 55, 0.30) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.06);
    transform: translateY(-3px);
}

/* Gold inner glow at top edge of card */
.bc-card-glow-top {
    position: relative;
}

.bc-card-glow-top::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent);
    pointer-events: none;
    border-radius: inherit;
}

/* ─── Section radial warm glows (per-section visual identity) ─── */

.bc-glow-tl { position: relative; }
.bc-glow-tl::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(900px circle at 5% 15%, rgba(212, 175, 55, 0.05), transparent 55%);
}
.bc-glow-tl > * { position: relative; z-index: 1; }

.bc-glow-tr { position: relative; }
.bc-glow-tr::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(900px circle at 95% 15%, rgba(212, 175, 55, 0.05), transparent 55%);
}
.bc-glow-tr > * { position: relative; z-index: 1; }

.bc-glow-br { position: relative; }
.bc-glow-br::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(900px circle at 90% 85%, rgba(212, 175, 55, 0.05), transparent 55%);
}
.bc-glow-br > * { position: relative; z-index: 1; }

.bc-glow-bl { position: relative; }
.bc-glow-bl::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(900px circle at 10% 85%, rgba(212, 175, 55, 0.05), transparent 55%);
}
.bc-glow-bl > * { position: relative; z-index: 1; }

.bc-glow-center { position: relative; }
.bc-glow-center::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(700px circle at 50% 50%, rgba(212, 175, 55, 0.04), transparent 65%);
}
.bc-glow-center > * { position: relative; z-index: 1; }

/* ─── Subtle diagonal hatching texture for accent sections ─── */

.bc-section-hatched { position: relative; }
.bc-section-hatched::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.022;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(212, 175, 55, 0.5),
        rgba(212, 175, 55, 0.5) 1px,
        transparent 1px,
        transparent 24px
    );
}
.bc-section-hatched > * { position: relative; z-index: 1; }

/* ─── Subtle dot grid texture ─── */

.bc-section-dots { position: relative; }
.bc-section-dots::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.2) 1px, transparent 1px);
    background-size: 28px 28px;
}
.bc-section-dots > * { position: relative; z-index: 1; }

/* ─── Section with warm top + bottom gradient edges ─── */

.bc-section-warm-edges { position: relative; overflow: hidden; }
.bc-section-warm-edges::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 15%, rgba(212, 175, 55, 0.18) 50%, transparent 85%);
    z-index: 1;
}

/* ─── Desktop: categories horizontal layout ─── */

@media (min-width: 1024px) {
    .aimeos-commerce .catalog-filter-tree .zeynep.level-0 {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.25rem;
        overflow-x: hidden;
        overflow-y: visible;
        padding: 0.25rem 0;
    }

    .aimeos-commerce .catalog-filter-tree .list-container.level-1,
    .aimeos-commerce .catalog-filter-tree .list-container.level-2,
    .aimeos-commerce .catalog-filter-tree .list-container.level-3,
    .aimeos-commerce .catalog-filter-tree .list-container.level-4 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.25rem;
        padding-left: 0;
    }

    .aimeos-commerce .catalog-filter-tree .cat-item,
    .aimeos-commerce .catalog-filter-tree .item-links {
        display: flex;
        align-items: stretch;
        flex: 0 1 auto;
        min-width: 0;
    }

    .aimeos-commerce .catalog-filter-tree .submenu,
    .aimeos-commerce .catalog-filter-tree .submenu.opened {
        display: block !important;
    }

    .aimeos-commerce .catalog-filter-tree .submenu > .header,
    .aimeos-commerce .catalog-filter-tree .submenu > .cat-img,
    .aimeos-commerce .catalog-filter-tree .next {
        display: none !important;
    }
}
/* Fonts (preloaded in blade). Ensure they are actually used to avoid preload warnings. */
@font-face {
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/vendor/shop/themes/beauty-dark-theme-tailwind/assets/roboto-condensed-v19-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/vendor/shop/themes/beauty-dark-theme-tailwind/assets/roboto-condensed-v19-latin-700.woff2") format("woff2");
}
