/* ========================================================= */
        /* EXACT SOLEILLE DESIGN SYSTEM 1:1 (LIGHT & DARK HAUTE COUTURE) */
        /* ========================================================= */
        :root {
            --font-sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;
            --font-display: 'Fraunces', ui-serif, Georgia, serif;
            --topbar-height: 72px;
            --bottom-nav-height: 65px;

            /* Soleille Original Palette (OKLCH mapped to exact CSS hex) */
            --brand: #c58e69;
            --branddeep: #9e6443;
            --cream: #fbf9f4;
            --sand: #f0ebe1;
            --clay: #d8a885;
            --ink: #2b2420;
            --muted-warm: #7f7369;
            
            --bg-color: var(--cream);
            --card-bg: #ffffff;
            --card-inner-bg: var(--sand);
            --border-color: rgba(43, 36, 32, 0.12);
            --border-gold: rgba(197, 142, 105, 0.35);
            --text-primary: var(--ink);
            --text-secondary: var(--muted-warm);
            --text-muted: #a69b91;
            --topbar-bg: rgba(251, 249, 244, 0.94);
            
            --gradient-golden: radial-gradient(90% 120% at 78% 0%, rgba(216, 168, 133, 0.35) 0%, transparent 55%), radial-gradient(70% 90% at 10% 100%, rgba(197, 142, 105, 0.20) 0%, transparent 60%), linear-gradient(160deg, #fbf9f4 0%, #f0ebe1 55%, #e8decb 100%);
            --shadow-lift: 0 30px 60px -30px rgba(43, 36, 32, 0.25);
            --shadow-brand: 0 12px 30px -10px rgba(197, 142, 105, 0.60);
            --product-img-bg: radial-gradient(circle at center, #ffffff 40%, #f4ede2 100%);
            --badge-bg: var(--sand);
            --badge-text: var(--branddeep);
            --primary: var(--branddeep);
            --primary-hover: #7c4b2e;
        }

        /* Light Theme Explicit */
        html[data-theme="light"], body[data-theme="light"] {
            --bg-color: var(--cream) !important;
            --card-bg: #ffffff !important;
            --card-inner-bg: var(--sand) !important;
            --border-color: rgba(43, 36, 32, 0.12) !important;
            --text-primary: var(--ink) !important;
            --text-secondary: var(--muted-warm) !important;
            --topbar-bg: rgba(251, 249, 244, 0.94) !important;
            --product-img-bg: radial-gradient(circle at center, #ffffff 40%, #f4ede2 100%) !important;
        }

        /* Dark Theme Velvet Obsidian */
        html[data-theme="dark"], body[data-theme="dark"] {
            --cream: #12100e !important;
            --sand: #1d1916 !important;
            --ink: #fbf9f4 !important;
            --muted-warm: #a69b91 !important;
            --bg-color: #12100e !important;
            --card-bg: #1c1815 !important;
            --card-inner-bg: #26211c !important;
            --border-color: rgba(251, 249, 244, 0.10) !important;
            --text-primary: #fbf9f4 !important;
            --text-secondary: #a69b91 !important;
            --topbar-bg: rgba(18, 16, 14, 0.94) !important;
            --gradient-golden: radial-gradient(90% 120% at 78% 0%, rgba(197, 142, 105, 0.20) 0%, transparent 55%), linear-gradient(160deg, #1c1815 0%, #12100e 100%) !important;
            --product-img-bg: radial-gradient(circle at center, #29241f 30%, #1c1815 100%) !important;
            --badge-bg: #2b241f !important;
            --badge-text: #e0b89b !important;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-color);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-bottom: 85px;
            letter-spacing: -0.01em;
        }

        /* ---- TOPBAR SOLEILLE 1:1 ---- */
        .app-topbar {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--topbar-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            transition: background 0.3s ease;
        }
        .app-topbar-inner {
            width: 100%;
            height: var(--topbar-height);
            max-width: 1152px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .app-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            text-decoration: none;
        }
        .brand-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--clay);
            box-shadow: var(--shadow-brand);
            display: inline-block;
        }
        .app-brand-name {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.03em;
        }

        /* Desktop Nav Items Soleille (Strict Desktop Breakpoint >= 1024px) */
        .app-nav-pills {
            display: none;
            gap: 28px;
            margin-left: 36px;
            margin-right: auto;
        }
        @media (min-width: 1024px) {
            .app-nav-pills { 
                display: flex !important; 
                align-items: center; 
            }
        }
        @media (max-width: 1023px) {
            .app-nav-pills { 
                display: none !important; 
            }
            .btn-book-now-soleille {
                display: none !important;
            }
        }
        .nav-link-soleille {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: color 0.2s ease;
            font-family: var(--font-sans);
            padding: 6px 0;
            position: relative;
            white-space: nowrap;
        }
        .nav-link-soleille:hover {
            color: var(--text-primary);
        }
        .nav-link-soleille.active {
            color: var(--text-primary);
            font-weight: 700;
        }
        .nav-link-soleille.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--branddeep);
            border-radius: 2px;
        }

        /* Topbar Actions Right */
        .app-topbar-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }
        .btn-book-now-soleille {
            background: var(--ink);
            color: var(--cream);
            border: none;
            padding: 8px 20px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s ease, transform 0.2s ease;
            font-family: var(--font-sans);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .btn-book-now-soleille:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }
        html[data-theme="dark"] .btn-book-now-soleille {
            background: var(--brand);
            color: #12100e;
        }

        /* Strict Tier Shop-Only Rules (Non-VIP: blocca solo prenotazioni cabina e abbonamenti) */
        body.tier-shop-only .btn-book-now-soleille,
        body.tier-shop-only #topbar-pill-prenota,
        body.tier-shop-only #bnav-pill-prenota,
        body.tier-shop-only #topbar-pill-abbonamenti,
        body.tier-shop-only #bnav-pill-abbonamenti,
        body.tier-shop-only #tab-content-prenota,
        body.tier-shop-only #tab-content-abbonamenti,
        body.tier-shop-only #wrapper-prossimo-appuntamento,
        body.tier-shop-only #wrapper-preferenze-salone,
        body.tier-shop-only #wrapper-trattamenti-cabina {
            display: none !important;
        }

        .topbar-cart-btn {
            background: var(--sand);
            color: var(--ink);
            border: 1px solid var(--border-color);
            padding: 7px 14px;
            border-radius: 9999px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
            font-family: var(--font-sans);
        }
        .topbar-cart-btn:hover {
            border-color: var(--brand);
        }
        .cart-count-badge {
            background: var(--branddeep);
            color: #ffffff;
            font-size: 11px;
            font-weight: 800;
            padding: 1px 6px;
            border-radius: 12px;
        }

        /* Avatar Trigger Button */
        .topbar-avatar-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--sand);
            color: var(--branddeep);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: var(--font-sans);
            user-select: none;
        }
        .topbar-avatar-btn:hover, .topbar-avatar-btn.active {
            border-color: var(--branddeep);
            box-shadow: 0 0 0 2px var(--border-gold);
        }

        /* ---- DROPDOWN MENU AVATAR LUXURY ---- */
        .user-dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            width: 280px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            box-shadow: var(--shadow-lift);
            padding: 12px;
            z-index: 10000;
            display: none;
            flex-direction: column;
            gap: 4px;
            animation: dropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        .user-dropdown-menu.show {
            display: flex;
        }
        @keyframes dropdownFadeIn {
            from { opacity: 0; transform: translateY(-8px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .dropdown-user-header {
            padding: 10px 12px 12px 12px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 6px;
        }
        .dropdown-user-name {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .dropdown-user-sub {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 3px;
            font-weight: 500;
        }
        .dropdown-link-item {
            background: transparent;
            border: none;
            width: 100%;
            padding: 10px 12px;
            border-radius: 12px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s ease;
            font-family: var(--font-sans);
        }
        .dropdown-link-item:hover {
            background: var(--sand);
            color: var(--branddeep);
        }
        .dropdown-link-item i {
            width: 18px;
            font-size: 14px;
            color: var(--branddeep);
            text-align: center;
        }
        .dropdown-link-item.logout {
            color: #ef4444;
            margin-top: 4px;
            border-top: 1px solid var(--border-color);
            padding-top: 10px;
            border-radius: 0 0 12px 12px;
        }
        .dropdown-link-item.logout i {
            color: #ef4444;
        }
        /* ---- LUXURY STATIC NEWS TICKER CAROUSEL (FADE-IN 10s) ---- */
        .ticker-news-wrapper {
            display: flex;
            align-items: center;
            overflow: hidden;
            flex: 1;
            min-height: 22px;
        }
        .ticker-news-item-static {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 12.5px;
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.4s ease, transform 0.4s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ticker-news-item-static.fade-out {
            opacity: 0;
            transform: translateY(-8px);
        }
        .ticker-news-item-static.fade-in-prep {
            opacity: 0;
            transform: translateY(8px);
        }

        /* Main Content Container Soleille 1:1 */
        .app-main-container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 32px 24px;
            flex: 1;
        }

        .app-topbar-inner {
            width: 100%;
            height: var(--topbar-height);
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ---- SOLEILLE 1:1 BOOKING STEP 1 & 2 DESIGN SYSTEM ---- */
        .soleille-service-grid-columns {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 14px;
            margin-bottom: 90px;
            align-items: start;
        }

        @media screen and (min-width: 1100px) {
            .soleille-service-grid-columns {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 16px;
            }
            .soleille-service-box {
                padding: 20px 14px;
            }
            .soleille-treatment-pill {
                padding: 10px 12px;
                font-size: 12.5px;
            }
        }

        @media screen and (max-width: 1099px) and (min-width: 900px) {
            .soleille-service-grid-columns {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 8px;
            }
            .soleille-service-box {
                padding: 14px 10px !important;
            }
            .soleille-treatment-pill {
                padding: 8px 8px !important;
                font-size: 11px !important;
            }
            .soleille-treatment-pill .pill-price {
                font-size: 11px !important;
            }
        }

        .soleille-service-box {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 24px 20px;
            box-shadow: var(--shadow-lift);
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .soleille-service-box:hover {
            border-color: var(--clay);
            transform: translateY(-2px);
            box-shadow: 0 16px 36px rgba(43, 36, 32, 0.08);
        }
        .soleille-service-box-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
            cursor: default;
        }
        .soleille-service-title {
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--branddeep);
            margin: 0;
            line-height: 1.2;
        }
        .soleille-service-sub {
            font-size: 11.5px;
            color: var(--text-secondary);
            margin: 3px 0 0 0;
        }
        .soleille-service-count {
            font-size: 11px;
            font-weight: 800;
            color: #ffffff;
            background: var(--brand);
            padding: 2px 8px;
            border-radius: 9999px;
            white-space: nowrap;
        }
        .soleille-accordion-icon {
            display: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--sand);
            color: var(--branddeep);
            align-items: center;
            justify-content: center;
            font-size: 11px;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            flex-shrink: 0;
            margin-left: 8px;
        }
        .soleille-pills-wrap {
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }

        /* Responsive Mobile Behavior (< 900px): Accordion Pill Focus Mode */
        @media screen and (max-width: 899px) {
            .soleille-service-grid-columns {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .soleille-service-box {
                padding: 16px 18px;
                border-radius: 20px;
                cursor: pointer;
            }
            .soleille-service-box-header {
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
                cursor: pointer;
                user-select: none;
            }
            .soleille-accordion-icon {
                display: flex;
            }
            .soleille-service-box .soleille-pills-wrap {
                display: none;
                margin-top: 16px;
                padding-top: 14px;
                border-top: 1px solid var(--border-color);
                animation: accordionExpand 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
            .soleille-service-box.is-expanded {
                border-color: var(--brand);
                box-shadow: 0 8px 24px rgba(197, 142, 105, 0.15);
            }
            .soleille-service-box.is-expanded .soleille-pills-wrap {
                display: flex;
            }
            .soleille-service-box.is-expanded .soleille-accordion-icon {
                transform: rotate(180deg);
                background: var(--brand);
                color: #ffffff;
            }
            @keyframes accordionExpand {
                from { opacity: 0; transform: translateY(-8px); }
                to { opacity: 1; transform: translateY(0); }
            }
        }
        .soleille-treatment-pill {
            background: var(--sand);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            padding: 12px 16px;
            border-radius: 16px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: var(--font-sans);
            user-select: none;
            text-align: left;
            width: 100%;
        }
        .soleille-treatment-pill:hover {
            color: var(--text-primary);
            border-color: var(--brand);
            background: var(--card-bg);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }
        html[data-theme="dark"] .soleille-treatment-pill:hover {
            background: #26211c !important;
            color: #fbf9f4 !important;
            border-color: var(--brand) !important;
        }
        .soleille-treatment-pill.selected {
            background: var(--brand);
            color: #ffffff;
            font-weight: 800;
            box-shadow: 0 6px 16px rgba(197, 142, 105, 0.4);
            border-color: transparent;
            transform: scale(1.01);
        }
        .soleille-treatment-pill .pill-price {
            font-size: 12px;
            font-weight: 800;
            opacity: 0.9;
            flex-shrink: 0;
        }

        /* Sticky Bottom Summary Bar */
        .soleille-sticky-bottom-bar {
            position: fixed;
            bottom: 60px; /* Above mobile bottom bar */
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 1000px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            box-shadow: var(--shadow-lift), 0 12px 30px rgba(0,0,0,0.12);
            padding: 14px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 9000;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            animation: slideUpSticky 0.25s ease-out;
        }
        @media (min-width: 1024px) {
            .soleille-sticky-bottom-bar {
                bottom: 24px;
            }
        }
        @keyframes slideUpSticky {
            from { transform: translate(-50%, 20px); opacity: 0; }
            to { transform: translate(-50%, 0); opacity: 1; }
        }
        .soleille-sticky-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .soleille-sticky-count {
            font-size: 11.5px;
            font-weight: 700;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .soleille-sticky-total {
            font-size: 14px;
            color: var(--text-primary);
            display: flex;
            align-items: baseline;
            gap: 6px;
        }
        .soleille-btn-primary {
            background: #2b2420;
            color: #fbf9f4;
            border: 1px solid rgba(255,255,255,0.1);
            padding: 13px 30px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: var(--font-sans);
            display: inline-flex;
            align-items: center;
            letter-spacing: 0.02em;
            box-shadow: 0 8px 20px rgba(43, 36, 32, 0.25);
        }
        .soleille-btn-primary:hover:not(:disabled) {
            background: var(--branddeep);
            color: #ffffff;
            opacity: 1;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 12px 28px rgba(158, 100, 67, 0.4);
        }
        .soleille-btn-primary:disabled {
            background: #cbd5e1;
            color: #94a3b8;
            box-shadow: none;
            cursor: not-allowed;
            opacity: 0.7;
        }
        html[data-theme="dark"] .soleille-btn-primary {
            background: var(--brand);
            color: #1a1614;
        }
        html[data-theme="dark"] .soleille-btn-primary:hover:not(:disabled) {
            background: #e0a37e;
            color: #1a1614;
        }

        /* Step 2 Two-Column Layout */
        .soleille-booking-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        @media (min-width: 900px) {
            .soleille-booking-grid {
                grid-template-columns: 360px 1fr;
                align-items: start;
            }
        }
        .soleille-calendar-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 24px;
            box-shadow: var(--shadow-lift);
        }
        .soleille-calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }
        .soleille-cal-nav-btn {
            background: var(--sand);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .soleille-cal-nav-btn:hover {
            background: var(--clay);
            color: #fff;
        }
        .soleille-weekdays-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 11.5px;
            font-weight: 800;
            color: var(--text-secondary);
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .soleille-days-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }
        .soleille-day-cell {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 13.5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
            border: 1px solid transparent;
        }
        /* Giorno Disponibile (Bianco pulito con bordino) */
        .soleille-day-cell.open {
            background: #ffffff;
            color: #1e293b;
            border: 1px solid var(--border-color);
            box-shadow: 0 1px 4px rgba(0,0,0,0.03);
        }
        html[data-theme="dark"] .soleille-day-cell.open {
            background: #1e1b18;
            color: #f8fafc;
            border-color: #38332e;
        }
        .soleille-day-cell.open:hover {
            border-color: var(--brand);
            background: var(--sand);
            transform: scale(1.04);
        }
        /* Giorno Pochi Posti (Sabbia soft) */
        .soleille-day-cell.few {
            background: var(--sand);
            color: var(--branddeep);
            border: 1px solid var(--border-color);
        }
        /* Giorno Chiuso/Festivo */
        .soleille-day-cell.closed {
            background: transparent;
            color: #94a3b8;
            cursor: not-allowed;
            opacity: 0.45;
        }
        /* Giorni del Mese Successivo (Trailing Days) */
        .soleille-day-cell.next-month {
            background: transparent;
            color: #a8a29e;
            border: 1px dashed var(--border-color);
            opacity: 0.7;
            cursor: pointer;
        }
        .soleille-day-cell.next-month:hover {
            opacity: 1;
            background: var(--sand);
            border-color: var(--brand);
            transform: scale(1.04);
            color: var(--branddeep);
        }
        /* Giorno Selezionato */
        .soleille-day-cell.selected {
            background: var(--brand) !important;
            color: #ffffff !important;
            border-color: var(--brand) !important;
            box-shadow: 0 4px 14px rgba(197, 142, 105, 0.45) !important;
            transform: scale(1.05);
        }

        /* Legenda */
        .soleille-calendar-legend {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 18px;
            font-size: 11.5px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .soleille-calendar-legend span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .soleille-legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        .soleille-legend-dot.open { background: #ffffff; border: 1px solid #94a3b8; }
        .soleille-legend-dot.few { background: var(--clay); }
        .soleille-legend-dot.closed { background: #cbd5e1; }

        /* Timeslots Soleille Grid */
        .soleille-slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
            gap: 10px;
        }
        .soleille-slot-pill {
            background: var(--sand);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 10px 8px;
            border-radius: 14px;
            font-size: 13.5px;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: var(--font-sans);
        }
        .soleille-slot-pill:hover {
            border-color: var(--brand);
            background: #ffffff;
            transform: translateY(-2px);
        }
        .soleille-slot-pill.selected {
            background: var(--brand);
            color: #ffffff;
            border-color: var(--brand);
            box-shadow: 0 4px 12px rgba(197, 142, 105, 0.4);
        }

        .soleille-btn-confirm {
            background: var(--ink);
            color: var(--cream);
            border: none;
            padding: 14px 24px;
            border-radius: 9999px;
            font-size: 14.5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: var(--font-sans);
            box-shadow: var(--shadow-lift);
            display: block;
            width: 100%;
        }
        .soleille-btn-confirm:hover:not(:disabled) {
            opacity: 0.92;
            transform: scale(1.01);
        }
        .soleille-btn-confirm:disabled {
            background: #94a3b8;
            cursor: not-allowed;
            opacity: 0.6;
        }
        html[data-theme="dark"] .soleille-btn-confirm {
            background: var(--brand);
            color: #12100e;
        }

        /* ---- MAIN CONTAINER AUTO-ADAPTIVE (Full HD 1920px Support) ---- */
        .app-topbar-inner {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .app-main-container {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 36px 32px 80px 32px;
            flex: 1;
        }

        /* Views management */
        .app-tab-view {
            display: none;
            animation: appFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .app-tab-view.active {
            display: block;
        }
        @keyframes appFadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ---- HERO SOLEILLE 1:1 ---- */
        .soleille-hero-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            padding-top: 20px;
            padding-bottom: 24px;
        }
        @media (min-width: 1024px) {
            .soleille-hero-section {
                grid-template-columns: 7fr 5fr;
                align-items: start;
            }
        }
        .soleille-tagline {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--branddeep);
            margin-bottom: 18px;
        }
        .soleille-hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4.5vw, 3.4rem);
            line-height: 1.05;
            color: var(--text-primary);
            font-weight: 400;
            letter-spacing: -0.02em;
        }
        .soleille-hero-desc {
            margin-top: 20px;
            max-width: 440px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-secondary);
        }
        .soleille-hero-cta {
            margin-top: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-cta-primary {
            background: var(--branddeep);
            color: var(--cream);
            padding: 12px 24px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            box-shadow: var(--shadow-brand);
            border: none;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        .btn-cta-primary:hover {
            opacity: 0.92;
            transform: scale(1.02);
        }
        .btn-cta-secondary {
            background: rgba(251, 249, 244, 0.6);
            color: var(--text-primary);
            padding: 12px 24px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .btn-cta-secondary:hover {
            border-color: var(--brand);
        }
        html[data-theme="dark"] .btn-cta-secondary {
            background: #1c1815;
        }

        /* ---- UPCOMING APPOINTMENTS CONCIERGE CARD (SOLEILLE 1:1) ---- */
        .soleille-concierge-card {
            background: rgba(251, 249, 244, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 24px;
            box-shadow: var(--shadow-lift);
            backdrop-filter: blur(8px);
        }
        html[data-theme="dark"] .soleille-concierge-card {
            background: rgba(28, 24, 21, 0.85);
        }
        .concierge-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        .concierge-title {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--text-primary);
            font-weight: 600;
        }
        .concierge-badge {
            font-size: 10px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-secondary);
            font-weight: 700;
        }
        .concierge-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 12px 14px;
            margin-bottom: 10px;
        }
        .concierge-time {
            width: 58px;
            font-size: 13px;
            font-weight: 700;
            color: var(--branddeep);
        }
        .concierge-service {
            flex: 1;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .concierge-room {
            background: var(--sand);
            color: var(--muted-warm);
            padding: 4px 10px;
            border-radius: 9999px;
            font-size: 11px;
            font-weight: 600;
        }

        /* ---- BOUTIQUE TREE LAYOUT SOLEILLE 1:1 ---- */
        .boutique-layout-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-top: 32px;
        }
        .boutique-sidebar {
            background: rgba(251, 249, 244, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 20px;
        }
        @media (max-width: 1023px) {
            .boutique-sidebar {
                position: static !important;
                padding: 14px 16px;
                border-radius: 18px;
            }
            .boutique-tree-details summary {
                cursor: pointer;
                font-size: 13px;
                font-weight: 700;
                color: var(--branddeep);
                padding: 4px 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
                list-style: none;
                user-select: none;
            }
            .boutique-tree-details summary::-webkit-details-marker {
                display: none;
            }
        }
        @media (min-width: 1024px) {
            .boutique-layout-grid {
                grid-template-columns: 240px 1fr;
                align-items: start;
            }
            .boutique-sidebar {
                position: sticky;
                top: 90px;
            }
            .boutique-tree-details summary {
                display: none !important;
            }
            .boutique-tree-details:not([open]) > :not(summary),
            .boutique-tree-details[open] > :not(summary),
            .boutique-tree-content {
                display: block !important;
            }
        }
        html[data-theme="dark"] .boutique-sidebar {
            background: rgba(28, 24, 21, 0.85);
        }
        .tree-group-title {
            font-size: 10px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-secondary);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .tree-nav-list {
            list-style: none;
            padding-left: 12px;
            border-left: 1px solid var(--border-color);
            margin-bottom: 18px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .tree-nav-btn {
            background: transparent;
            border: none;
            font-size: 13.5px;
            color: var(--text-secondary);
            cursor: pointer;
            text-align: left;
            padding: 3px 0;
            font-family: var(--font-sans);
            transition: color 0.2s ease;
        }
        .tree-nav-btn:hover {
            color: var(--text-primary);
        }
        .tree-nav-btn.active {
            font-weight: 700;
            color: var(--branddeep);
        }
        .quick-cat-info {
            display: flex;
            flex-direction: column;
        }
        .quick-cat-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }
        .quick-cat-sub {
            font-size: 11px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ---- HORIZONTAL PREVIEW CAROUSEL FOR BOUTIQUE PRODUCTS ---- */
        .home-products-scroll-wrapper {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 14px;
            margin-bottom: 30px;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .home-products-scroll-wrapper::-webkit-scrollbar { display: none; }

        .home-product-mini-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 16px;
            min-width: 190px;
            max-width: 205px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 14px rgba(45, 38, 34, 0.04);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            flex-shrink: 0;
        }
        .home-product-mini-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
            box-shadow: 0 12px 24px rgba(45, 38, 34, 0.08);
        }
        .home-prod-img-box {
            width: 100%;
            height: 135px;
            border-radius: 14px;
            background: var(--product-img-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: 12px;
        }
        .home-prod-img-box img {
            max-height: 90%;
            max-width: 90%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        .home-product-mini-card:hover .home-prod-img-box img {
            transform: scale(1.06);
        }
        .home-prod-brand {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .home-prod-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            line-height: 1.25;
            margin-bottom: 3px;
        }
        .home-prod-fragrance {
            font-size: 11px;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .home-prod-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 8px;
            border-top: 1px solid var(--border-color);
        }
        .home-prod-price {
            font-weight: 800;
            font-size: 15px;
            color: var(--primary);
        }
        .home-prod-btn-add {
            background: var(--badge-bg);
            color: var(--badge-text);
            border: 1px solid var(--border-color);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .home-prod-btn-add:hover {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
        }

        /* ---- MOBILE BOTTOM NAVIGATION BAR ---- */
        .mobile-bottom-nav {
            display: flex;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: var(--bottom-nav-height);
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid var(--border-color);
            z-index: 9999;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
            justify-content: space-around;
            align-items: center;
            padding: 0 10px;
        }
        @media (min-width: 1024px) {
            .mobile-bottom-nav { 
                display: none !important; 
            }
            body { 
                padding-bottom: 20px !important; 
            }
        }
        @media (max-width: 1023px) {
            .mobile-bottom-nav {
                display: flex !important;
            }
            body { 
                padding-bottom: calc(var(--bottom-nav-height) + 20px);
            }
        }
        .bnav-item {
            background: none;
            border: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            font-size: 10px;
            font-weight: 700;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 12px;
            transition: all 0.2s ease;
            position: relative;
            font-family: inherit;
        }
        .bnav-item i {
            font-size: 17px;
            transition: transform 0.2s ease;
        }
        .bnav-item.active {
            color: var(--primary);
        }
        .bnav-item.active i {
            transform: scale(1.15);
        }
        .bnav-badge {
            position: absolute;
            top: 4px;
            right: 14px;
            background: var(--primary);
            color: #ffffff;
            font-size: 9px;
            font-weight: 800;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Buttons and Shared UI Elements */
        .btn {
            width: 100%;
            padding: 13px 18px;
            border-radius: 14px;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-primary {
            background: var(--primary);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(224, 33, 138, 0.25);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
        }
        .btn-secondary {
            background: var(--card-bg);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }
        .btn-secondary:hover {
            background: var(--card-inner-bg);
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Error box */
        .error-box {
            display: none;
            background: #fdf2f2;
            border: 2px solid #e76f51;
            border-radius: 10px;
            padding: 16px;
            font-size: 14px;
            color: #c94b30;
            position: fixed;
            top: 20px;
            left: 20px;
            right: 20px;
            z-index: 999999;
            box-shadow: 0 10px 25px rgba(74,62,61,0.08);
            font-weight: bold;
        }

        /* Popup Modals */
        .custom-popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.65);
            backdrop-filter: blur(6px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        .custom-popup-content {
            background: var(--card-bg, #ffffff);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 22px;
            width: 100%;
            max-width: 480px;
            box-shadow: var(--shadow-lift);
            display: flex;
            flex-direction: column;
            max-height: 90vh;
            animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
        }
        @keyframes modalPop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

        .popup-header {
            padding: 18px 22px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--card-bg, #ffffff);
        }
        .popup-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--text-primary); }
        .popup-close { background: var(--sand, #f1f5f9); border: none; width: 32px; height: 32px; border-radius: 50%; color: var(--text-secondary); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

        html[data-theme="dark"] .custom-popup-content {
            background: #1c1815 !important;
            border-color: #38332e !important;
        }
        html[data-theme="dark"] .popup-header {
            background: #1c1815 !important;
            border-color: #38332e !important;
        }
        html[data-theme="dark"] .popup-title {
            color: #f8fafc !important;
        }
        html[data-theme="dark"] .popup-close {
            background: #2b241f !important;
            color: #e2e8f0 !important;
        }

        .popup-body {
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .input-field {
            padding: 12px 14px;
            font-size: 14px;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            width: 100%;
            border-radius: 12px;
            background: var(--bg-surface, #ffffff);
            outline: none;
            font-family: inherit;
            transition: all 0.2s ease;
        }
        .input-field::placeholder {
            color: var(--text-secondary);
            opacity: 0.6;
        }
        html[data-theme="dark"] .input-field {
            background: rgba(38, 33, 29, 0.95) !important;
            border-color: rgba(197, 142, 105, 0.35) !important;
            color: #f5f0eb !important;
        }
        html[data-theme="dark"] .input-field::placeholder {
            color: rgba(245, 240, 235, 0.45) !important;
        }
        .input-field:focus {
            border-color: var(--branddeep);
            box-shadow: 0 0 0 3px rgba(158, 100, 67, 0.2);
        }

        /* Screen management */
        .screen { display: none; }
        .screen.active { display: block; }

        /* Loading splash */
        #loading-splash {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-secondary);
        }
        #loading-splash .spinner {
            font-size: 36px;
            color: var(--primary);
            animation: spin 1s linear infinite;
            margin-bottom: 14px;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Multi-treatment interactive touch card styling */
        .card-trattamento-touch {
            background: #ffffff;
            border: 1.5px solid var(--border-color);
            border-radius: 16px;
            padding: 14px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
        }
        .card-trattamento-touch:hover {
            border-color: var(--primary);
            transform: translateY(-1px);
        }
        .card-trattamento-touch.selected {
            background: #fff5f9;
            border-color: var(--primary);
            box-shadow: 0 4px 14px rgba(224, 33, 138, 0.12);
        }
        .card-trattamento-checkbox {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
            background: #ffffff;
        }
        .card-trattamento-touch.selected .card-trattamento-checkbox {
            background: var(--primary);
            border-color: var(--primary);
            color: #ffffff;
        }
        .pill-cat-btn {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            border: 1px solid var(--border-color);
            background: #ffffff;
            color: var(--text-secondary);
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            font-family: inherit;
        }
        .pill-cat-btn.active {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
        }

        /* ========================================================= */
        /* FASHION SLIDING FILTER BAR (HAUTE COUTURE)               */
        /* ========================================================= */
        .fashion-filter-container {
            position: relative;
            display: inline-flex;
            align-items: center;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            padding: 4px;
            gap: 2px;
            overflow-x: auto;
            scrollbar-width: none;
            max-width: 100%;
        }
        .fashion-filter-container::-webkit-scrollbar {
            display: none;
        }
        .fashion-glider {
            position: absolute;
            top: 4px;
            bottom: 4px;
            left: 0;
            border-radius: 24px;
            background: var(--glider-bg);
            box-shadow: var(--glider-shadow);
            transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            pointer-events: none;
            z-index: 1;
        }
        .fashion-pill {
            position: relative;
            z-index: 2;
            border: none;
            background: transparent;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-secondary);
            border-radius: 24px;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.25s ease;
            font-family: inherit;
            letter-spacing: 0.2px;
            outline: none;
        }
        .fashion-pill.active {
            color: var(--glider-text) !important;
            font-weight: 800;
        }
        .fashion-pill:hover:not(.active) {
            color: var(--text-primary);
        }

        /* SOTTO-NAV PROFUMI (MINIMAL LUXURY) */
        .fashion-subnav-container {
            position: relative;
            display: inline-flex;
            align-items: center;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 3px;
            gap: 2px;
            margin-top: 12px;
            overflow-x: auto;
            scrollbar-width: none;
            max-width: 100%;
        }
        .fashion-subnav-container::-webkit-scrollbar {
            display: none;
        }
        .fashion-subglider {
            position: absolute;
            top: 3px;
            bottom: 3px;
            left: 0;
            border-radius: 16px;
            background: var(--card-inner-bg);
            border: 1px solid var(--border-color);
            transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
            pointer-events: none;
            z-index: 1;
        }
        .fashion-subpill {
            position: relative;
            z-index: 2;
            border: none;
            background: transparent;
            padding: 5px 14px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-secondary);
            border-radius: 16px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            font-family: inherit;
            outline: none;
        }
        .fashion-subpill.active {
            color: var(--primary) !important;
            font-weight: 800;
        }

        /* ========================================================= */
        /* SCHEDA PRODOTTO LUXURY CON HOVER REVEAL OVERLAY           */
        /* ========================================================= */
        .product-card-luxury {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 22px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
            position: relative;
            overflow: hidden;
            user-select: none;
            cursor: pointer;
            content-visibility: auto;
            contain-intrinsic-size: 0 380px;
        }
        .product-card-luxury:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
        }
        .product-card-luxury .product-img-wrapper {
            width: 100%;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--product-img-bg);
            border-radius: 18px;
            margin-bottom: 12px;
            padding: 14px;
            overflow: hidden;
            position: relative;
        }
        .product-card-luxury .zoom-img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.09));
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }
        /* Effetto Zoom Soffice su Hover */
        .product-card-luxury:hover .zoom-img {
            transform: scale(1.05);
        }

        /* Wishlist Heart Icon */
        .btn-card-wishlist {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 14px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.25s ease;
        }
        .btn-card-wishlist:hover {
            color: #e11d48;
            background: #ffffff;
            transform: scale(1.1);
        }
        .btn-card-wishlist.active {
            color: #e11d48;
            background: #ffe4e6;
        }

        /* ---- HOVER REVEAL OVERLAY (DARK WARM GLASSMORPHISM) ---- */
        .product-hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(28, 25, 23, 0.82) 0%, rgba(18, 18, 20, 0.96) 75%);
            border-radius: 22px;
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
            z-index: 20;
        }
        .product-card-luxury:hover .product-hover-overlay,
        .product-card-luxury.touch-active .product-hover-overlay {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        /* Animazione Slide-Up dei Formati nell'Overlay */
        .overlay-formats-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
            transform: translateY(12px);
            opacity: 0;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, opacity 0.3s ease 0.05s;
        }
        .product-card-luxury:hover .overlay-formats-container,
        .product-card-luxury.touch-active .overlay-formats-container {
            transform: translateY(0);
            opacity: 1;
        }

        /* Pillola Formato Luxury Satinata */
        .luxury-format-btn {
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 14px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .luxury-format-btn:hover {
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(255, 255, 255, 0.45);
            transform: scale(1.02);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        }
        .luxury-format-btn .format-bag-icon {
            background: #ffffff;
            color: #1c1917;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: transform 0.2s ease;
        }
        .luxury-format-btn:hover .format-bag-icon {
            transform: scale(1.12);
            background: var(--primary);
            color: #ffffff;
        }

        /* Wizard Buttons (Avocado Green Glow for selected choice) */
        .wiz-choice-btn {
            background: #ffffff;
            border: 2px solid var(--border-color);
            color: var(--text-secondary);
            border-radius: 14px !important;
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            font-family: inherit;
        }
        .wiz-choice-btn.active {
            background: #ecfccb !important;
            border-color: #84cc16 !important;
            color: #365314 !important;
            font-weight: 800;
            box-shadow: 0 4px 14px rgba(132, 204, 22, 0.35);
            transform: scale(1.02);
        }
        .wiz-choice-btn.active i {
            color: #65a30d !important;
        }