/* Popup Container - Handles fade in/out and background overlay */
body #cfd-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay for more focus */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body #cfd-popup-container:not(.cfd-popup-hidden) {
    opacity: 1;
    visibility: visible;
}

/* Class to hide the popup */
body #cfd-popup-container.cfd-popup-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Popup Content Box - Modern and catchy design */
body #cfd-popup-container .cfd-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    padding: 30px 40px;
    border: none; /* Override theme borders */
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body #cfd-popup-container:not(.cfd-popup-hidden) .cfd-popup-content {
    transform: scale(1);
}

/* Popup Header - For the main title */
body #cfd-popup-container .cfd-popup-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Popup Title: "Special Discount!" */
body #cfd-popup-container .cfd-popup-content h2 {
    font-family: 'Montserrat', 'Georgia', serif;
    color: #c5a520; /* UPDATED to golden-yellow */
    margin: 0 !important;
    padding: 0 !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

/* Popup Body Text */
body #cfd-popup-container .cfd-popup-content p {
    line-height: 1.6 !important;
    font-size: 16px !important;
    font-weight: 400 !important; /* Override theme bolding */
    color: #4f4f4f; /* Softer text color */
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

/* Last paragraph "Happy shopping!" */
body #cfd-popup-container .cfd-popup-content p.cfd-happy-shopping {
    margin-bottom: 0 !important;
    font-style: italic;
    color: #757575;
}

/* Highlighted text like "€2.50 discount" */
body #cfd-popup-container .cfd-popup-content p strong {
    color: #D6111E; /* Your brand red */
    font-weight: 600 !important;
}

/* Close Button 'x' */
body #cfd-popup-container .cfd-popup-close-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #D6111E; /* Your brand red */
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: color 0.3s, transform 0.3s;
}

body #cfd-popup-container .cfd-popup-close-icon:hover {
    color: #c5a520; /* Hover color matches new title color */
    transform: scale(1.1) rotate(90deg);
}