/* Main Modal Styles */
#imageModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-flex-container {
    display: flex;
    min-height: 400px;
}

/* Image Container */
.modal-image-container {
    width: 50%;
    display: none;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content Container */
.modal-content-container {
    width: 100%;
    background-color: #332e58;
    color: white;
    padding: 30px;
    position: relative;
}

.modal-content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Text Styles */
.modal-offer-title {
    color: #f6520a;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-main-text {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.modal-subtext {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 30px;
}

.coupon-label {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.coupon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.coupon-code {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Buttons */
.copy-btn {
    background-color: #f6520a;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background-color: #e04a09;
}

.cta-btn {
    background-color: #f6520a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #e04a09;
}

/* Close Button */
.modal-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    background: transparent;
    border: none;
    color: #f6520a;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .modal-image-container {
        display: block;
    }
    .modal-content-container {
        width: 50%;
    }
}