

           /* Premium Popup Overlay */
        .luxe-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            padding: 20px;
            box-sizing: border-box;
        }

        .luxe-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Premium Popup Container */
        .luxe-popup-container {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 20px;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            position: relative;
            box-shadow:
                0 32px 64px rgba(0, 0, 0, 0.2),
                0 16px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transform: scale(0.8) translateY(20px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .luxe-popup-overlay.active .luxe-popup-container {
            transform: scale(1) translateY(0);
        }

        /* Premium Image Section */
        .luxe-image-section {
            flex: 1;
            background: linear-gradient(135deg, #0f2f6d 0%, #1a3f85 50%, #2452a8 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            min-height: 400px;
        }

        .luxe-image-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 100%);
        }

        .luxe-image-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            width: 100%;
        }

        .luxe-popup-image {
            max-width: 400px;
            height: auto;
            border-radius: 16px;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .luxe-popup-image:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .luxe-image-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            color: #fff;
        }

        .luxe-image-subtitle {
            font-size: 14px;
            opacity: 0.9;
            font-weight: 500;
            line-height: 1.4;
            color: #fff;
        }

        /* Premium Content Section */
        .luxe-content-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 35px 30px;
            position: relative;
            overflow-y: auto;
            max-height: 100%;
        }

        /* Premium Header */
        .luxe-popup-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .luxe-popup-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #0a2b62 0%, #e94132 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .luxe-popup-subtitle {
            font-size: 16px;
            color: #64748b;
            font-weight: 500;
            line-height: 1.4;
        }

        /* Premium Content */
        .luxe-popup-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .luxe-discount-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #e94132 0%, #ff6b5e 100%);
            color: #ffffff;
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 25px;
            box-shadow:
                0 8px 20px rgba(233, 65, 50, 0.4),
                0 4px 8px rgba(233, 65, 50, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            justify-content: center;
        }

        .luxe-discount-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        .luxe-popup-text {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: center;
        }

        /* Premium Form Elements */
        .luxe-form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .luxe-email-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            box-sizing: border-box;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .luxe-email-input:focus {
            border-color: #0a2b62;
            outline: none;
            box-shadow:
                0 0 0 3px rgba(10, 43, 98, 0.1),
                0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }

        .luxe-email-input::placeholder {
            color: #94a3b8;
        }

        /* Premium Buttons */
        .luxe-buttons-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .luxe-primary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 20px;
            background: linear-gradient(135deg, #0a2b62 0%, #0d3570 100%);
            color: #ffffff;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .luxe-primary-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .luxe-primary-btn:hover::before {
            left: 100%;
        }

        .luxe-primary-btn:hover {
            transform: translateY(-2px);
            box-shadow:
                0 8px 20px rgba(10, 43, 98, 0.3),
                0 4px 8px rgba(10, 43, 98, 0.2);
        }

        .luxe-secondary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            background: transparent;
            color: #64748b;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
            cursor: pointer;
            width: 100%;
        }

        .luxe-secondary-btn:hover {
            border-color: #0a2b62;
            color: #0a2b62;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Premium Footer Text */
        .luxe-footer-text {
            font-size: 11px;
            color: #94a3b8;
            line-height: 1.5;
            margin-top: 20px;
            padding-top: 18px;
            border-top: 1px solid #f1f5f9;
            text-align: center;
        }

        .luxe-footer-text a {
            color: #0a2b62;
            text-decoration: none;
            font-weight: 600;
        }

        .luxe-footer-text a:hover {
            text-decoration: underline;
        }

        /* Premium Close Button */
        .luxe-close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a2b62;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10001;
            box-shadow:
                0 4px 12px rgba(0, 0, 0, 0.15),
                0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .luxe-close-button:hover {
            background: #e94132;
            color: #ffffff;
            transform: rotate(90deg) scale(1.1);
        }

        /* Premium Animations */
        @keyframes shine {
            0% {
                transform: rotate(45deg) translateX(-100%);
            }
            100% {
                transform: rotate(45deg) translateX(100%);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .luxe-popup-image {
            animation: float 6s ease-in-out infinite;
        }

        /* Premium Responsive Design */
        @media (max-width: 968px) {
            .luxe-popup-container {
                max-width: 800px;
            }

            .luxe-image-section {
                padding: 30px 25px;
                min-height: 350px;
            }

            .luxe-popup-image {
                max-width: 250px;
            }

            .luxe-image-title {
                font-size: 20px;
            }

            .luxe-content-section {
                padding: 30px 25px;
            }

            .luxe-popup-title {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .luxe-popup-overlay {
                padding: 15px;
            }

            .luxe-image-section {
                display: none;
            }

            .luxe-popup-container {
                max-width: 500px;
                max-height: 85vh;
            }

            .luxe-content-section {
                padding: 30px 25px;
                width: 100%;
            }

            .luxe-popup-title {
                font-size: 22px;
            }

            .luxe-popup-subtitle {
                font-size: 15px;
            }

            .luxe-discount-badge {
                font-size: 16px;
                padding: 12px 20px;
            }
        }

        @media (max-width: 480px) {
            .luxe-popup-overlay {
                padding: 10px;
            }

            .luxe-popup-container {
                width: 100%;
                max-height: 90vh;
                border-radius: 16px;
            }

            .luxe-content-section {
                padding: 25px 20px;
            }

            .luxe-popup-title {
                font-size: 20px;
            }

            .luxe-discount-badge {
                font-size: 15px;
                padding: 10px 18px;
            }

            .luxe-email-input {
                padding: 14px 18px;
                font-size: 14px;
            }

            .luxe-primary-btn,
            .luxe-secondary-btn {
                padding: 14px 18px;
                font-size: 14px;
            }

            .luxe-close-button {
                top: 12px;
                right: 12px;
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            .luxe-content-section {
                padding: 20px 15px;
            }

            .luxe-popup-title {
                font-size: 18px;
            }

            .luxe-discount-badge {
                font-size: 14px;
            }

            .luxe-popup-text {
                font-size: 14px;
            }
        }

        /* Prevent horizontal scroll on mobile */
        @media (max-width: 480px) {
            body {
                overflow-x: hidden;
            }
        }
