﻿/* ============================================
 * HONEYPOT FIELD - Protezione anti-spam
 * ============================================ */
.hidden-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
 * KELI SCARABELLI - MINI SITO
 * GLOBAL CSS FILE - Solo stili globali condivisi
 * 
 * Questo file contiene SOLO:
 * - Reset CSS
 * - Variabili globali
 * - Font globali
 * - Utility comuni
 * - Navbar e Footer comuni
 * - Componenti globali (loader, language selector, scrollbar, cursor)
 * 
 * Gli stili specifici per pagina sono in:
 * - assets/css/landing_page.css
 * - assets/css/beauty_influencer.css
 * - assets/css/portfolio.css
 * - assets/css/beacons.css
 * ============================================ */

/* ============================================
 * VARIABILI GLOBALI
 * ============================================ */
        :root {
            /* Premium Velvet Black Background - Luxury Sites Style */
            --luxury-velvet: #000000;
            --velvet-light: #0a0a0a;
            --velvet-lighter: #111111;
            --velvet-accent: #1a1a1a;

            /* Metallic Gold + Rose Gold Shimmer Gradient */
            --metallic-gold: #d4af37;
            --rose-gold: #e8b4cb;
            --copper-rose: #c97064;
            --platinum: #e5e4e2;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --rose-gold-dark: #c97064;

            /* Ultra Premium Golden Rose Gradient */
            --gradient-golden-rose: linear-gradient(135deg,
                    #d4af37 0%,
                    #f4d03f 15%,
                    #e8b4cb 35%,
                    #c97064 65%,
                    #d4af37 85%,
                    #f4d03f 100%);

            --gradient-luxury: linear-gradient(135deg,
                    rgba(212, 175, 55, 0.9) 0%,
                    rgba(232, 180, 203, 0.9) 50%,
                    rgba(201, 112, 100, 0.9) 100%);

            /* Premium Velvet Glassmorphism Effects */
            --glass-bg: rgba(255, 255, 255, 0.06);
            --glass-border: rgba(255, 255, 255, 0.12);
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
            --glass-backdrop: blur(10px); /* Ridotto per performance */

            /* Luxury Shadows & Glows */
            --glow-golden: 0 0 30px rgba(212, 175, 55, 0.3);
            --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.7);
            --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.8);
    --shadow-soft: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-strong: rgba(0, 0, 0, 0.7);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #F8F9FA;
    --text-muted: rgba(255, 255, 255, 0.8);
    --white-opaque: rgba(255, 255, 255, 0.9);
    --white-soft: rgba(255, 255, 255, 0.95);

    /* Legacy support for existing classes */
    --farmasi-primary: #d4af37;
    --farmasi-secondary: #e8b4cb;
    --farmasi-accent: #d4af37;
    --farmasi-dark: #0a0a0a;
    --farmasi-gradient-main: var(--gradient-golden-rose);
    --farmasi-gradient-gold: linear-gradient(135deg, #d4af37 0%, #e8b4cb 100%);
    --farmasi-gradient-dark: var(--luxury-velvet);
    --shadow-primary: var(--shadow-luxury);
    --shadow-secondary: var(--shadow-luxury);
    --success-color: rgba(255, 255, 255, 0.9);

    /* Black Velvet (per beacons) */
    --black-velvet: #000000;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Blur */
    --blur-glass: blur(20px);
}

/* ============================================
 * RESET CSS
 * ============================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
    color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
            /* Background unificato per brand consistency - stesso di beacons */
            background: #000000;
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../../portfolio_keli/src_img/IMAGES/logo_minisito.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            /* Cursore: none gestito via JS (solo se non è touch) */
        }
        
        /* Assicura che tutti gli elementi interattivi usino il cursore personalizzato SOLO su desktop */
        @media (hover: hover) and (pointer: fine) {
            a, button, input, textarea, select, .btn, .nav-link, .nav-item, .cta-button, 
            [onclick], [role="button"], .service-card, .portfolio-item {
                cursor: none !important;
            }
        }
        
        /* Su mobile/touch: cursore standard */
        @media (hover: none), (pointer: coarse) {
            a, button, input, textarea, select, .btn, .nav-link, .nav-item, .cta-button, 
            [onclick], [role="button"], .service-card, .portfolio-item {
                cursor: pointer !important;
            }
        }

/* ============================================
 * AOS DISABILITATO - Fallback minimale per visibilità
 * ============================================ */
[data-aos] {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* ============================================
 * FONT GLOBALI
 * ============================================ */
        .font-playfair {
            font-family: 'Playfair Display', serif;
        }

/* ============================================
 * CUSTOM CURSOR
 * ============================================ */
        .lipstick-cursor {
            position: fixed;
            width: 28px;
            height: 70px;
            pointer-events: none !important;
            z-index: 30000; /* Sopra il modal (20000) e language selector (10000) */
            left: 0;
            top: 0;
            /* IMPORTANTE: transition solo su transform, NON su left/top */
            transition: transform 0.08s ease-out;
            will-change: transform;
            transform-origin: center center;
            /* Pennello 3D luxury - design realistico e sofisticato con golden-rose della piattaforma */
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 140"><defs><linearGradient id="rose-gold-metallic" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23d4af37"/><stop offset="15%" stop-color="%23f4d03f"/><stop offset="35%" stop-color="%23e8b4cb"/><stop offset="65%" stop-color="%23c97064"/><stop offset="85%" stop-color="%23d4af37"/><stop offset="100%" stop-color="%23f4d03f"/></linearGradient><linearGradient id="rose-gold-shine" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.4"/><stop offset="50%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></linearGradient><linearGradient id="handle-shadow" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="%23000000" stop-opacity="0.3"/><stop offset="100%" stop-color="%23000000" stop-opacity="0.1"/></linearGradient><radialGradient id="bristles-ombre" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="%23f4d03f" stop-opacity="0.98"/><stop offset="20%" stop-color="%23d4af37" stop-opacity="0.95"/><stop offset="40%" stop-color="%23e8b4cb" stop-opacity="0.92"/><stop offset="65%" stop-color="%23c97064" stop-opacity="0.9"/><stop offset="85%" stop-color="%23d4af37" stop-opacity="0.88"/><stop offset="100%" stop-color="%23f4d03f" stop-opacity="0.85"/></radialGradient><radialGradient id="bristles-highlight" cx="50%" cy="0%" r="80%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.6"/><stop offset="30%" stop-color="%23f4d03f" stop-opacity="0.5"/><stop offset="100%" stop-color="%23d4af37" stop-opacity="0"/></radialGradient><filter id="shadow-3d"><feGaussianBlur in="SourceAlpha" stdDeviation="2"/><feOffset dx="1" dy="2" result="offsetblur"/><feComponentTransfer><feFuncA type="linear" slope="0.3"/></feComponentTransfer><feMerge><feMergeNode/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><!-- Base nera opaca --><ellipse cx="25" cy="130" rx="6" ry="8" fill="%23000000" opacity="0.95"/><ellipse cx="25" cy="128" rx="5" ry="6" fill="%231a1a1a" opacity="0.8"/><!-- Manico rose-gold metallico lucido --><rect x="19" y="50" width="12" height="80" rx="6" fill="url(%23rose-gold-metallic)" opacity="0.98"/><rect x="20" y="51" width="10" height="78" rx="5" fill="url(%23rose-gold-shine)"/><!-- Ombra manico 3D --><rect x="19" y="50" width="12" height="80" rx="6" fill="url(%23handle-shadow)"/><!-- Highlight verticale manico --><path d="M22,50 Q22,90 22,130" fill="none" stroke="%23ffffff" stroke-width="1.2" opacity="0.5"/><path d="M23,50 Q23,90 23,130" fill="none" stroke="%23ffffff" stroke-width="0.8" opacity="0.3"/><!-- Riflesso laterale manico --><ellipse cx="21" cy="90" rx="1.5" ry="35" fill="%23ffffff" opacity="0.2"/><!-- Ferrule metallico integrato --><rect x="18" y="45" width="14" height="6" rx="3" fill="url(%23rose-gold-metallic)" opacity="0.98"/><rect x="19" y="46" width="12" height="4" rx="2" fill="url(%23rose-gold-shine)"/><rect x="18" y="45" width="14" height="6" rx="3" fill="url(%23handle-shadow)"/><!-- Setole con effetto golden-rose metallico --><ellipse cx="25" cy="30" rx="18" ry="22" fill="url(%23bristles-ombre)" opacity="0.98" filter="url(%23shadow-3d)"/><ellipse cx="25" cy="25" rx="15" ry="18" fill="url(%23bristles-highlight)"/><ellipse cx="25" cy="20" rx="12" ry="15" fill="url(%23rose-gold-metallic)" opacity="0.8"/><ellipse cx="25" cy="15" rx="9" ry="12" fill="url(%23rose-gold-metallic)" opacity="0.6"/><!-- Dettagli texture setole golden-rose --><path d="M15,35 Q20,30 25,25 Q30,30 35,35" fill="none" stroke="%23d4af37" stroke-width="0.6" opacity="0.5"/><path d="M12,40 Q18,35 25,30 Q32,35 38,40" fill="none" stroke="%23e8b4cb" stroke-width="0.5" opacity="0.4"/><!-- Ombra sotto setole --><ellipse cx="25" cy="48" rx="16" ry="4" fill="%23000000" opacity="0.2"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            /* Nascosto di default - il JavaScript lo mostra solo su desktop */
            opacity: 0;
            visibility: hidden;
            display: none;
        }

        .lipstick-cursor::after {
            display: none; /* Rimossa completamente la pallina */
        }
        
        /* Hotspot invisibile per hover sensibile */
        #cursorHotspot {
            pointer-events: auto !important;
            z-index: 30001 !important; /* Sopra il cursore stesso e tutto il resto */
        }
        

/* ============================================
 * ANIMATED BACKGROUND (Globale)
 * ============================================ */
.animated-bg {
    position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
    background: transparent; /* Trasparente per mostrare lo sfondo globale del body (logo) */
}

.animated-bg::before,
.animated-bg::after {
            content: '';
            position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
}

.animated-bg::before {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    top: -50%;
    left: -50%;
}

.animated-bg::after {
    background: radial-gradient(circle, rgba(232, 180, 203, 0.02) 0%, transparent 70%);
    bottom: -50%;
    right: -50%;
}

/* ============================================
 * FORM CONTROLS (Utility comuni)
 * ============================================ */
        .form-control {
            border: 2px solid var(--glass-border);
            border-radius: 12px;
            padding: 1.2rem;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff !important;
            transition: all 0.3s ease;
            font-family: inherit;
            /* Mobile-friendly: previene zoom su iOS */
            font-size: 16px;
            width: 100%;
            box-sizing: border-box;
        }
        
        /* Su mobile: font size minimo 16px per evitare zoom automatico */
        @media (max-width: 768px) {
            .form-control {
                font-size: 16px !important;
                padding: 1rem;
                min-height: 44px; /* Touch-friendly */
            }
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-control:focus {
            border-color: var(--metallic-gold);
            box-shadow: 0 0 0 0.3rem rgba(212, 175, 55, 0.25);
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            color: #ffffff !important;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="number"],
        textarea {
            color: #ffffff !important;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="number"]:focus,
        textarea:focus {
            color: #ffffff !important;
        }

        .form-message {
            padding: 15px;
            margin: 20px 0;
            border-radius: 10px;
            text-align: center;
            font-weight: 500;
            display: none;
        }

        .form-success {
            background: rgba(40, 167, 69, 0.2);
            border: 1px solid rgba(40, 167, 69, 0.5);
            color: #28a745;
        }

        .form-error {
            background: rgba(220, 53, 69, 0.2);
            border: 1px solid rgba(220, 53, 69, 0.5);
            color: #dc3545;
        }
    
/* ============================================
 * NAVBAR (Globale)
 * ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px); /* Ridotto per performance */
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.8rem 0;
            background: rgba(0, 0, 0, 0.98);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 2rem);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: clamp(1rem, 2vw, 2rem);
            box-sizing: border-box;
            width: 100%;
        }

        .nav-menu {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--metallic-gold);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-link.active {
            color: var(--metallic-gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient-golden-rose);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-cta {
            background: var(--gradient-golden-rose);
            color: var(--luxury-velvet);
            padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            font-size: clamp(0.75rem, 2vw, 0.9rem);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-luxury);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            box-sizing: border-box;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: fit-content;
        }

        .nav-cta:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .nav-cta {
                white-space: normal;
                padding: clamp(0.6rem, 2vw, 0.8rem) clamp(0.8rem, 3vw, 1.5rem);
                font-size: clamp(0.7rem, 1.8vw, 0.85rem);
                line-height: 1.3;
                text-align: center;
                min-width: auto;
                width: auto;
                max-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .nav-cta {
                padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(0.7rem, 2.5vw, 1.2rem);
                font-size: clamp(0.65rem, 1.6vw, 0.8rem);
            }
        }
        
        @media (max-width: 375px) {
            .nav-cta {
                padding: clamp(0.5rem, 1.2vw, 0.6rem) clamp(0.6rem, 2vw, 1rem);
                font-size: clamp(0.6rem, 1.4vw, 0.75rem);
            }
        }
        
        @media (max-width: 320px) {
            .nav-cta {
                padding: 0.5rem 0.8rem;
                font-size: 0.7rem;
            }
        }

/* ============================================
 * FLOATING NAVIGATION (Globale)
 * ============================================ */
        .floating-nav {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--glass-bg);
            backdrop-filter: var(--glass-backdrop);
            -webkit-backdrop-filter: var(--glass-backdrop);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 15px 25px;
            display: flex;
            gap: 20px;
            flex-wrap: nowrap;
            align-items: center;
            min-height: 50px;
            max-width: 95vw;
            overflow-x: auto;
            overflow-y: hidden;
            z-index: 1000;
            box-shadow: var(--glass-shadow);
        }

        .nav-item {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
            cursor: none;
            font-size: 0.9rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

.nav-item:hover,
.nav-item.active {
            background: var(--gradient-golden-rose);
            color: var(--luxury-velvet);
            transform: translateY(-3px);
            font-weight: 700;
        }

@media (max-width: 768px) {
    .floating-nav {
        display: none;
    }
}

/* ============================================
 * FOOTER (Globale)
 * ============================================ */
.footer {
    background: var(--velvet-light);
    color: white;
    padding: 4rem 0 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
    border-top: 3px solid transparent;
    background-clip: padding-box;
}

.footer::before {
    content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
    height: 3px;
    background: var(--gradient-golden-rose);
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    margin: 0 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
            background: var(--gradient-golden-rose);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-links {
            display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
            flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
}

.footer-link::after {
    content: '';
            position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
            background: var(--gradient-golden-rose);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--metallic-gold);
    text-decoration: none;
}

.footer-link:hover::after {
            width: 100%;
}

@media (max-width: 768px) {
    .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ============================================
 * LANGUAGE SELECTOR (Globale)
 * ============================================ */
        .language-selector {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-backdrop);
            -webkit-backdrop-filter: var(--glass-backdrop);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 8px 15px;
            display: flex;
            gap: 10px;
            box-shadow: var(--glass-shadow);
        }

        .language-option {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            line-height: 1;
        }

        .language-option.active,
        .language-option:hover {
            background: var(--gradient-golden-rose);
            color: var(--luxury-velvet);
            transform: scale(1.1);
        }

/* ============================================
 * LOADER OVERLAY (Globale - Non bloccante)
 * ============================================ */
.loading-overlay,
.loader,
.preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--luxury-velvet);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* NON-BLOCCANTE DI DEFAULT */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
        }

        .loading-spinner {
            width: 70px;
            height: 70px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-top: 5px solid var(--metallic-gold);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
            box-shadow: var(--glow-golden);
        }

        @keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
 * SCROLL TO TOP BUTTON (Globale)
 * ============================================ */
        .scroll-to-top {
            position: fixed;
            left: 30px;
            bottom: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-golden-rose);
            color: var(--luxury-velvet);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-luxury);
            cursor: pointer;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-hover);
        }

@media (max-width: 768px) {
    /* Nascondi scroll-to-top su mobile - non serve, si scrolla nativamente */
    .scroll-to-top {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* ============================================
 * CUSTOM SCROLLBAR (Globale) - SOLO DESKTOP
 * ============================================ */
/* Nascondi scrollbar custom su mobile - usa quella nativa */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: var(--velvet-light);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gradient-golden-rose);
        border-radius: 10px;
        cursor: pointer !important;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--metallic-gold);
        cursor: grab !important;
    }

    ::-webkit-scrollbar-thumb:active {
        cursor: grabbing !important;
    }
}

/* Su mobile: nascondi scrollbar custom ma mantieni scroll funzionante */
@media (max-width: 768px) {
    /* Nascondi scrollbar custom solo su html/body, non su tutti gli elementi */
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 0px;
        background: transparent;
        display: none;
    }
    
    /* Nascondi scrollbar su html/body per IE/Edge e Firefox */
    html, body {
        -ms-overflow-style: none; /* IE e Edge */
        scrollbar-width: none; /* Firefox */
    }
}

/* ============================================
 * UTILITY CLASSES (Globale)
 * ============================================ */
.refined-animation {
    transition: all 0.2s ease;
}

.refined-animation:hover {
    transform: translateY(-2px) !important;
}

.luxury-reflection {
    position: relative;
}

/* ============================================
 * FLOATING ICONS (Globale - DISABILITATO per performance)
 * Mantenuto CSS per retrocompatibilità, ma HTML rimosso dalle pagine
 * ============================================ */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    display: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--metallic-gold);
    opacity: 0.15;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; }
.floating-icon:nth-child(4) { top: 40%; right: 25%; }
.floating-icon:nth-child(5) { bottom: 60%; right: 10%; }

/* ============================================
 * ACCESSIBILITY
 * ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        transition-property: none !important;
        transition-timing-function: linear !important;
        will-change: auto !important;
        transition: none !important;
    }
}