.elementor-10 .elementor-element.elementor-element-54605eb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-41db8d3 *//* --- GLOBAL VARIABLES --- */
        :root {
            --bg-dark: #0a0a0a;
            --text-light: #ffffff;
            --rose-gold-light: #f4d1c6;
            --rose-gold-dark: #b96f5b;
            --gradient-gold: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold-dark) 100%);
            --header-height: 90px;
        }

        /* Base Reset */
        .ay-header * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
        }

        /* --- HEADER STYLING --- */
        .ay-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(244, 209, 198, 0.15);
            z-index: 9999;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .ay-container {
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .ay-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .ay-logo img {
            height: 100px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .ay-nav {
            flex-grow: 1;
            display: flex;
            justify-content: center;
        }

        .ay-nav-list {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            position: relative;
            padding: 10px 0;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        /* Animated Underline Effect */
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--gradient-gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--rose-gold-light);
        }

        /* The logic here: if active class is present, width is 100% */
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .btn-gold {
            background: var(--gradient-gold);
            color: var(--bg-dark);
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        /* --- MOBILE MENU --- */
        .menu-toggle-checkbox { display: none; }
        .menu-toggle-label {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            z-index: 10001;
        }
        .hamburger-line {
            display: block;
            height: 2px;
            width: 100%;
            background-color: var(--rose-gold-light);
        }

        @media (max-width: 991px) {
            .ay-header-cta { display: none; }
            .menu-toggle-label { display: flex; }
            .ay-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: #111;
                flex-direction: column;
                padding: 100px 40px;
                transition: right 0.4s ease;
            }
            .ay-nav-list { flex-direction: column; }
            .nav-link { font-size: 16px; padding: 20px 0; }
            .menu-toggle-checkbox:checked ~ .ay-nav { right: 0; }
        }/* End custom CSS */