/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1761916669
Updated: 2025-10-31 13:17:49

*/

.jeng-popup-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .jeng-popup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
    }
    
    .jeng-popup-content {
        position: relative;
        background: #fff;
        border-radius: 20px;
        max-width: 1200px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        z-index: 1;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .jeng-popup-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 32px;
        color: #000;
        cursor: pointer;
        z-index: 10;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        transition: all 0.3s ease;
    }
    
    .jeng-popup-close:hover {
        transform: rotate(90deg);
        color: #d7959a;
    }
    
    .jeng-popup-inner {
        display: flex;
        padding: 40px;
        gap: 40px;
    }
    
    .jeng-popup-left {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .jeng-popup-image-wrapper {
        width: 100%;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .jeng-popup-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .jeng-popup-right {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .jeng-popup-title {
        font-family: "Poppins", sans-serif;
        font-size: 40px;
        font-weight: 700;
        line-height: 1;
        color: #000;
        margin: 0;
    }
    
    .jeng-popup-price {
        font-family: "Poppins", sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #000;
        margin: 0;
    }
    
    .jeng-popup-pack-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .jeng-popup-pack-title {
        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 400;
        color: #000;
        margin: 0;
    }
    
    .jeng-popup-pack-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .jeng-popup-pack-option {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .jeng-popup-pack-option input {
        display: none;
    }
    
    .jeng-popup-pack-option p {
        background-color: transparent;
        padding: 10px 20px;
        border: 1px solid rgba(18, 18, 18, 0.55);
        border-radius: 100px;
        transition: all 0.3s ease;
        color: #121212;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
        font-weight: 400;
        margin: 0;
    }
    
    .jeng-popup-pack-option:hover p {
        border-color: #000;
    }
    
    .jeng-popup-pack-option input:checked + p {
        background-color: #d7959a;
        border-color: #000;
        color: #fff;
    }
    
    .jeng-popup-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    
    .jeng-popup-add-to-cart,
    .jeng-popup-buy-now {
        width: 100%;
        max-width: 500px;
        border-radius: 100px;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 1.2;
        color: #fff;
        text-align: center;
        padding: 14px 20px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .jeng-popup-add-to-cart {
        background-color: #d7959a;
    }
    
    .jeng-popup-add-to-cart:hover {
        box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.4);
    }
    
    .jeng-popup-buy-now {
        background-color: #45647c;
        font-weight: 700;
    }
    
    .jeng-popup-buy-now:hover {
        box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.4);
    }
    
    .jeng-popup-buy-now:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    .jeng-popup-warning {
        margin-top: 12px;
        background-color: rgba(218, 218, 218, 0.2);
        border-radius: 8px;
        color: #000;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 0.6px;
        padding: 16px;
        display: none;
    }
    
    .jeng-warn-icon {
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        height: auto;
    }
    
    .jeng-bold-text {
        font-weight: 700;
    }
    
    .jeng-warn-link {
        display: block;
        color: #000;
        text-decoration: underline;
    }
    
    @media (max-width: 1024px) {
        .jeng-popup-inner {
            flex-direction: column;
            padding: 30px;
            gap: 30px;
        }
        
        .jeng-popup-left,
        .jeng-popup-right {
            width: 100%;
        }
        
        .jeng-popup-title {
            font-size: 32px;
        }
    }
    
    @media (max-width: 767px) {
        .jeng-popup-content {
            width: 95%;
            max-height: 95vh;
        }
        
        .jeng-popup-inner {
            padding: 20px;
            gap: 20px;
        }
        
        .jeng-popup-title {
            font-size: 28px;
        }
        
        .jeng-popup-close {
            top: 10px;
            right: 10px;
            font-size: 28px;
        }
    }