/* Promotional Modal Styles */
.promo-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.promo-modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.promo-modal-overlay.closing {
    opacity: 0;
}

.promo-modal-content {
    background-color: #ffffff;
    border-radius: 15px;
    max-width: 520px;
    width: 85%;
    max-height: 92vh;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.promo-modal-overlay.active .promo-modal-content {
    animation: slideIn 0.4s ease-out;
}

.promo-modal-overlay.closing .promo-modal-content {
    transform: scale(0.95);
}

.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(62, 62, 62, 0.95);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.promo-modal-close:hover {
    background-color: rgba(253, 186, 49, 0.95);
    border-color: rgba(253, 186, 49, 1);
    transform: rotate(90deg) scale(1.1);
}

.promo-modal-header {
    background: linear-gradient(135deg, #3e3e3e 0%, #2a2a2a 100%);
    padding: 18px 20px 15px;
    text-align: center;
    flex-shrink: 0;
}

.promo-modal-image {
    width: 100%;
    max-height: 45vh;
    object-fit: cover;
    display: block;
    margin: 0;
    flex-shrink: 1;
}

.promo-modal-footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 15px 20px 18px;
    text-align: center;
    flex-shrink: 0;
}

.promo-modal-title {
    font-family: 'Gotham Bold', arial, sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-modal-text {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
    margin: 10px 0 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.promo-modal-disclaimer {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    margin: 6px 0 0 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-modal-cta {
    margin-top: 15px;
}

.promo-modal-button {
    display: inline-block;
    background-color: #FDBA31;
    color: #000000;
    font-family: 'Gotham Med', arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    border: 3px solid #FDBA31;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    box-shadow: 0 5px 20px rgba(253, 186, 49, 0.5);
}

.promo-modal-button:hover {
    background-color: transparent;
    color: #FDBA31;
    border-color: #FDBA31;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 186, 49, 0.7);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Countdown Timer Styles */
.promo-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px 0;
    padding: 12px 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 2px solid rgba(253, 186, 49, 0.3);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 55px;
}

.countdown-value {
    font-family: 'Gotham Bold', arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #FDBA31;
    line-height: 1;
    display: block;
    text-shadow: 0 0 15px rgba(253, 186, 49, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.countdown-label {
    font-family: 'Gotham Med', arial, sans-serif;
    font-size: 9px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 6px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.countdown-expired {
    font-family: 'Gotham Bold', arial, sans-serif;
    font-size: 24px;
    color: #ff4444;
    text-align: center;
    padding: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* In-Store Badge Style */
.promo-modal-badge {
    display: inline-block;
    background-color: #FDBA31;
    color: #000000;
    font-family: 'Gotham Bold', arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    padding: 7px 18px;
    border-radius: 20px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 3px 12px rgba(253, 186, 49, 0.5);
    border: 2px solid #FDBA31;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .promo-modal-content {
        width: 95%;
    }

    .promo-modal-header {
        padding: 25px 25px 20px;
    }

    .promo-modal-footer {
        padding: 25px 25px 30px;
    }

    .promo-modal-title {
        font-size: 26px;
    }

    .promo-modal-text {
        font-size: 14px;
        margin-top: 15px;
    }

    .promo-modal-disclaimer {
        font-size: 9px;
        margin-top: 12px;
    }

    .promo-countdown {
        gap: 15px;
        padding: 18px 15px;
    }

    .countdown-item {
        min-width: 65px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .promo-modal-button {
        font-size: 16px;
        padding: 15px 35px;
    }

    .promo-modal-badge {
        font-size: 13px;
        padding: 9px 20px;
    }
}

@media screen and (max-width: 480px) {
    .promo-modal-content {
        width: 98%;
    }

    .promo-modal-header {
        padding: 20px 20px 18px;
    }

    .promo-modal-footer {
        padding: 20px 20px 25px;
    }

    .promo-modal-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .promo-modal-text {
        font-size: 13px;
        margin-top: 14px;
        line-height: 1.8;
    }

    .promo-modal-disclaimer {
        font-size: 8px;
        margin-top: 12px;
    }

    .promo-modal-button {
        padding: 14px 28px;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .promo-countdown {
        gap: 10px;
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 9px;
        margin-top: 6px;
    }

    .promo-modal-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .promo-modal-close {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
        font-size: 22px;
    }
}
