/* Variation Grid Styles - Matching your existing CSS */
.variation-options {
    justify-content: center;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 1200px;
    width: 100%;
}

.variation-options button,
.variation-options a.variation-button {
    width: calc((100% - 20px) / 2);
    background: #011024;
    color: #FFF;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    border: none;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive styles from your CSS */
@media (min-width: 768px) {
    .variation-options button,
    .variation-options a.variation-button {
        width: calc((100% - 40px) / 3);
    }
}

@media (min-width: 1200px) {
    .variation-options button,
    .variation-options a.variation-button {
        width: calc((100% - 80px) / 5);
    }
}

.variation-options button span,
.variation-options a.variation-button span {
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.variation-options button .select {
    padding: 10px;
    border-radius: 20px;
    background: #FFEA29;
    color: #011024;
    transition: 0.5s;
}

.variation-options button .price,
.variation-options a.variation-button .price {
    font-size: 32px;
}

.variation-options button:hover .select {
    background: #FFF;
}

.variation-upsell-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 16, 33, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
}

.upsell-popup-content {
    background: #011024;
    position: relative;
    max-width: 600px;
    width: 90%;
    overflow: hidden;
    padding: 10px;
    border-radius: 15px;
    color: white;
    border: 1px solid white;
}

.popup-body {
    padding: 20px;
}

.popup-body h1,
.popup-body h2, 
.popup-body h3, 
.popup-body h4, 
.popup-body h5,
.popup-body h6 {
    margin: 0 0 15px;
} 


/* Text Elements */
.popup-title {
    margin-bottom: 10px;
    font-size: 2.3rem;
    text-transform: capitalize;
}
.popup-title span {
    color: #FFEA29;
    font-size: 2.3rem;
}

.special-offer-title {
    color: #FFEA29;
    margin-bottom: 15px;
}

.popup-body .entries-count {
    margin: 0;
    color: #FFEA29;
    font-size: 2.3rem;
}

/* Price Elements */
.offer-price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.offer-price-new {
    margin-right: 15px;
    color: #4bd28f;
    font-size: 2.3rem;
    font-weight: 700;
}

.offer-price-old {
    text-decoration: line-through;
    color: white;
    font-size: 1.7rem;
}

/* Buttons & Controls */
.upsell-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.discount-tag {
    font-size: 2rem;
    color: #4bd28f;
}

.upsell-buttons .btn {
    width: 100%;
    font-size: 1.6rem;
    font-family: "Montserrat", sans-serif;
    flex-grow: 1;
    flex-shrink: 0;
    line-height: 1.3;
}

.upsell-buttons .btn span {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
}

.upsell-buttons .btn.btn.btn:hover {
    border: 1px solid #FFEA29 !important;
    cursor: pointer;
}

.btn.upsell-decline.upsell-decline.upsell-decline.upsell-decline {
    background: none !important;
    color: white !important;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #011024;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: white;
}

.upsell-message {
    display: none;
}