/* ---- Soleille Haute Couture Design Tokens (Light & Dark Obsidian) ---- */
        :root {
            --brand: #c58e69;
            --branddeep: #9e6443;
            --cream: #fbf9f4;
            --sand: #f0ebe1;
            --clay: #d8a885;
            --ink: #2b2420;
            --muted-warm: #7f7369;

            --primary: var(--branddeep);
            --primary-hover: #7c4b2e;
            --surface-color: #ffffff;
            --card-inner-bg: var(--sand);
            --bg-color: var(--cream);
            --card-bg: #ffffff;
            --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);
            --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
            --font-display: 'Fraunces', Georgia, serif;

            --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.18);
            --shadow-brand: 0 12px 30px -10px rgba(197, 142, 105, 0.50);

            --success: #dcfce7;
            --success-border: #15803d;
            --warning: #fef3c7;
            --warning-border: #f59e0b;
            --danger: #fee2e2;
            --danger-text: #991b1b;
            --danger-border: #fca5a5;
        }

        /* 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;
            --surface-color: #1c1815 !important;
            --border-color: rgba(251, 249, 244, 0.10) !important;
            --text-primary: #fbf9f4 !important;
            --text-secondary: #a69b91 !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;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            letter-spacing: -0.01em;
        }

        /* ---- Header & Navbar Soleille ---- */
        header {
            background-color: var(--card-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 12px 24px;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1160px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            max-height: 56px;
            width: auto;
            transition: transform 0.25s ease;
        }
        .logo img:hover {
            transform: scale(1.03);
        }

        /* Invert logos in dark mode so black strokes become bright luxury gold/white */
        html[data-theme="dark"] .logo img,
        html[data-theme="dark"] .hero img,
        html[data-theme="dark"] .hero-logo,
        html[data-theme="dark"] img[src*="completo.png"],
        html[data-theme="dark"] img[src*="far_ila.png"] {
            filter: invert(1) hue-rotate(180deg) brightness(1.2) drop-shadow(0 2px 10px rgba(197, 142, 105, 0.25)) !important;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 14.5px;
            font-family: var(--font-sans);
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .btn-book-nav {
            background: var(--ink) !important;
            color: var(--cream) !important;
            padding: 9px 22px !important;
            border-radius: 9999px !important;
            box-shadow: 0 4px 14px rgba(43, 36, 32, 0.15) !important;
            font-weight: 700 !important;
            transition: all 0.25s ease !important;
        }

        .btn-book-nav:hover {
            opacity: 0.92;
            transform: scale(1.02);
            color: var(--cream) !important;
        }

        /* ---- Alert Ferie / Chiusura Dinamico ---- */
        .holiday-alert {
            display: none;
            background-color: var(--card-inner-bg);
            color: var(--branddeep);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 20px;
            text-align: center;
            font-weight: 700;
            font-size: 13.5px;
            animation: fadeIn 0.5s ease-out;
        }

        /* ---- Hero Section Soleille Haute Couture ---- */
        .hero {
            padding: 70px 20px 50px;
            text-align: center;
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 22px;
        }

        .hero img.hero-logo {
            max-width: 250px;
            height: auto;
            margin-bottom: 8px;
            filter: drop-shadow(0 4px 12px rgba(43, 36, 32, 0.06));
        }

        .hero-tagline {
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--branddeep);
            background: var(--sand);
            padding: 5px 16px;
            border-radius: 9999px;
            display: inline-block;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .hero h1 em {
            font-style: italic;
            font-family: var(--font-display);
            color: var(--branddeep);
        }

        .hero p {
            font-size: 16.5px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.65;
        }

        .btn-hero-cta {
            text-decoration: none;
            background: var(--ink);
            color: var(--cream);
            font-family: var(--font-sans);
            font-size: 15px;
            font-weight: 700;
            padding: 15px 36px;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-lift);
            transition: all 0.25s ease;
            margin-top: 8px;
        }

        .btn-hero-cta:hover {
            opacity: 0.92;
            transform: translateY(-2px) scale(1.02);
            color: var(--cream);
        }

        /* ---- Section Layout ---- */
        .section {
            padding: 70px 20px;
            max-width: 1160px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 45px;
            position: relative;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 2px;
            background-color: var(--brand);
            margin: 12px auto 0;
            border-radius: 2px;
        }

        /* ---- Listino Prezzi Categorizzato ---- */
        .listino-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .listino-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 32px 28px;
            box-shadow: var(--shadow-lift);
            transition: border-color 0.2s ease, transform 0.2s ease;
        }
        .listino-card:hover {
            border-color: var(--clay);
            transform: translateY(-2px);
        }

        .listino-header {
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 14px;
            margin-bottom: 22px;
        }

        .listino-header h3 {
            font-family: var(--font-display);
            font-size: 21px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .listino-header i {
            color: var(--branddeep);
            font-size: 20px;
        }

        .listino-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 15px;
            font-size: 14px;
        }
        .listino-item:last-child {
            margin-bottom: 0;
        }

        .item-name {
            font-weight: 600;
            color: var(--text-primary);
            padding-right: 10px;
            background-color: var(--card-bg);
            position: relative;
            z-index: 2;
        }

        .item-dots {
            flex-grow: 1;
            border-bottom: 1px dashed var(--border-color);
            position: relative;
            top: -4px;
            z-index: 1;
        }

        .item-price {
            font-weight: 700;
            color: var(--branddeep);
            padding-left: 10px;
            background-color: var(--card-bg);
            position: relative;
            z-index: 2;
            font-family: var(--font-sans);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .listino-note {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 18px;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ---- Foto Gallery Section ---- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .gallery-item {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ---- Info Section ---- */
        .info-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px 30px;
            box-shadow: var(--shadow-lift);
        }

        .info-box h3 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
        }

        .info-box h3 i {
            color: var(--branddeep);
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-color);
            font-size: 14px;
            color: var(--text-primary);
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list li.closed {
            color: var(--text-secondary);
            opacity: 0.7;
        }
        
        .hours-list li.today-active {
            background-color: var(--card-inner-bg);
            border: 1px solid var(--brand);
            border-radius: 8px;
            padding: 8px 12px;
            font-weight: 800;
            color: var(--branddeep);
        }
        .hours-list li.today-closed {
            background-color: var(--card-inner-bg);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            border-radius: 8px;
            padding: 8px 12px;
            font-weight: 700;
        }

        .address-box p {
            font-size: 14.5px;
            color: var(--text-secondary);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* ---- Call to Action Buttons ---- */
        .cta-buttons-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }

        .btn-cta-link {
            text-decoration: none;
            padding: 11px 20px;
            border-radius: 9999px;
            font-size: 13.5px;
            font-weight: 700;
            font-family: var(--font-sans);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .btn-direction {
            background: var(--card-inner-bg);
            border: 1px solid var(--border-color);
            color: var(--branddeep);
        }
        .btn-direction:hover {
            border-color: var(--brand);
            transform: translateY(-2px);
        }

        .btn-call {
            background: var(--ink);
            color: var(--cream);
            box-shadow: 0 4px 12px rgba(43, 36, 32, 0.15);
        }
        .btn-call:hover {
            opacity: 0.92;
            transform: translateY(-2px);
            color: var(--cream);
        }

        .btn-whatsapp {
            background: #15803d;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(21, 128, 61, 0.25);
        }
        .btn-whatsapp:hover {
            opacity: 0.92;
            transform: translateY(-2px);
            color: #ffffff;
        }

        /* ---- Cookie / GDPR Banner ---- */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--card-bg);
            border-top: 1px solid var(--border-color);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            padding: 20px;
            z-index: 2000;
            display: none;
            animation: slideUp 0.4s ease-out;
        }

        .cookie-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        @media (min-width: 768px) {
            .cookie-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 30px;
            }
        }

        .cookie-text {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-cookie {
            padding: 10px 22px;
            border-radius: 9999px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
            font-family: var(--font-sans);
        }

        .btn-cookie-accept {
            background-color: var(--ink);
            color: var(--cream);
        }

        .btn-cookie-accept:hover {
            opacity: 0.9;
        }

        .btn-cookie-deny {
            background-color: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        .btn-cookie-deny:hover {
            background-color: var(--sand);
        }

        /* ---- Footer ---- */
        footer {
            background-color: #ffffff;
            border-top: 1px solid var(--border-color);
            padding: 30px 20px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
        }

        footer p {
            margin-bottom: 10px;
        }

        footer a {
            color: var(--text-secondary);
            text-decoration: underline;
            margin: 0 10px;
        }

        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ---- Mobile Header & Sticky Tabs ---- */
        .mobile-tabs-bar {
            display: none;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 69px; /* height of header on mobile */
            z-index: 999;
            padding: 8px 12px;
            overflow-x: auto;
            white-space: nowrap;
        }

        .mobile-tabs-container {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .mobile-tab-pill {
            text-decoration: none;
            padding: 7px 16px;
            border-radius: 9999px;
            font-size: 13px;
            font-weight: 700;
            font-family: var(--font-sans);
            color: var(--text-secondary);
            background: var(--sand);
            border: 1px solid var(--border-color);
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .mobile-tab-pill.active {
            background: var(--brand);
            color: #ffffff;
            border-color: var(--brand);
            box-shadow: 0 2px 8px rgba(197, 142, 105, 0.35);
        }

        /* Mobile Floating / Bottom CTA Button */
        .mobile-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(251, 249, 244, 0.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--border-color);
            padding: 12px 18px;
            z-index: 1000;
            box-shadow: 0 -8px 24px rgba(43, 36, 32, 0.08);
        }

        .btn-mobile-book-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            background: var(--ink);
            color: var(--cream);
            text-decoration: none;
            padding: 13px;
            border-radius: 9999px;
            font-family: var(--font-sans);
            font-size: 14.5px;
            font-weight: 700;
            box-shadow: var(--shadow-lift);
        }

        .btn-mobile-clienti-top {
            display: none;
            background: var(--sand);
            color: var(--branddeep) !important;
            border: 1px solid var(--border-color);
            text-decoration: none;
            padding: 7px 14px;
            border-radius: 9999px;
            font-size: 12.5px;
            font-weight: 700;
            font-family: var(--font-sans);
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        @media (max-width: 768px) {
            header {
                padding: 10px 15px;
            }
            .logo img {
                max-height: 48px;
            }
            .nav-links { 
                display: none; 
            }
            .btn-mobile-clienti-top {
                display: inline-flex;
            }
            .mobile-tabs-bar {
                display: block;
                background: var(--card-bg);
            }
            .mobile-bottom-bar {
                display: block;
            }
            body {
                padding-bottom: 75px; /* Spazio per la bottom bar */
            }
            .hero {
                padding: 40px 16px 30px;
            }
            .hero h1 { font-size: 30px; }
            .hero p { font-size: 14.5px; }
            .hero img.hero-logo { max-width: 210px; }
        }