.lxd-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lxd-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lxd-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.lxd-popup-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.lxd-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    color: #666;
    transition: color 0.3s ease;
}


.lxd-popup-close:hover {
    color: #333;
}

.lxd-popup-body {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Animation classes */
.lxd-popup-modal.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}



/* styles.css */

/* Main popup container */
#lxd-price-guarantee-popup {
    display: none;
    /* Will be changed to flex by JS when showing */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

/* Popup content container */
.lxd-popup-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Popup header */
.lxd-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Close button */
.lxd-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Optional: Add hover state for close button */
.lxd-popup-close:hover {
    opacity: 0.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Best Price Guarantee trigger styles */
.best-price-guarantee-trigger:hover {
    opacity: 0.8;
}

/* FreeLink containers */
.bestprice-guarantee-link,
.free-return_link {
    cursor: pointer;
}

/* Headlines default state
#price_match_headline,
#free-return_headline {
    text-decoration: none;
} */