/**
 * Round-Up Popup Styles - Luxury Theme
 */

/* Popup Overlay: Covers the whole screen */
#round-up-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.8); /* Darker, slightly transparent overlay */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup Container: The main popup box */
#round-up-popup-container {
    color: white; /* Dark charcoal for text */
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Clean sans-serif for body */
    position: relative;
    border: 1px solid #E0DCD7; /* Subtle border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	background: #231b15;
    background: -webkit-linear-gradient(to bottom right, #7d6d64, #231b15);
    background: linear-gradient(to bottom right, #7d6d64, #231b15);
}

#round-up-popup-container * {
	color: white !important;
}

/* Close Button */
#round-up-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

#round-up-popup-close:hover {
    color: #3D3D3D;
}

/* Headings and Text */
#round-up-popup-container h3 {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f4f4f4;
    margin: 0 0 20px;
	color: white;
}

.round-up-main-offer h2 {
    font-family: 'Georgia', 'Times New Roman', Times, serif; /* Elegant serif font */
    font-size: 36px;
    margin: 10px 0;
    font-weight: 400;
    line-height: 1.2;
	color: white;
}

.round-up-main-offer p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #7a7a7a;
    line-height: 1.6;
}

/* This button is hidden as it doesn't fit the luxury design */
.round-up-main-btn {
   display: none;
}

/* Purchase Options section */
.round-up-purchase-options p {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #3D3D3D;
    font-size: 16px;
    font-weight: 500;
}

.round-up-amounts {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.round-up-amount-btn {
    background: transparent;
    color: white;
    border: 2px solid #E0DCD7;
    border-radius: 40px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.round-up-amount-btn:hover {
    border-color: #3D3D3D;
}

.round-up-amount-btn.active {
    background: #3D3D3D;
    color: #FDFBF8;
    border-color: #3D3D3D;
}

/* Footer section */
.popup-footer .info-notice {
    background-color: transparent;
    color: #7a7a7a;
    padding: 0 15px 15px;
    border-radius: 0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.popup-actions button {
    flex: 1;
    max-width: 220px;
    padding: 16px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#skip-round-up {
    background-color: transparent;
    color: white;
    border: 2px solid #E0DCD7;
}

#skip-round-up:hover {
    border-color: #3D3D3D;
    background-color: #f7f4f1;
}

#add-to-basket-round-up {
    background-color: #3D3D3D;
    color: #fff;
    border: 2px solid #3D3D3D;
}

#add-to-basket-round-up:hover {
    background-color: #2b2b2b;
    border-color: #2b2b2b;
}

/* Responsive adjustments for mobile devices */
@media screen and (max-width: 480px) {
    #round-up-popup-container {
        padding: 25px 20px;
        width: 95%;
    }

    #round-up-popup-container h3 {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .round-up-main-offer h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .round-up-main-offer p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .round-up-purchase-options p {
        margin-bottom: 20px;
    }

    .round-up-amounts {
        gap: 10px;
        margin-bottom: 30px;
    }

    .round-up-amount-btn {
        padding: 12px 22px;
        font-size: 15px;
    }

    .popup-footer .info-notice {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .popup-actions {
        flex-direction: column;
        gap: 15px;
    }

    .popup-actions button {
        width: 100%;
        max-width: none;
        padding: 16px;
    }
} 