/* ... existing code ... */

/* =============================================
   SUMMER PROMO POPUP
   ============================================= */

.summer-promo-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.summer-promo-overlay.is-open {
    display: flex;
}

.summer-promo-modal {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 860px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    animation: summerPromoIn 0.3s ease-out;
}

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

/* Close button */
.summer-promo-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(0,0,0,0.25);
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
    font-weight: bold;
}
.summer-promo-close:hover {
    background: rgba(0,0,0,0.5);
}

/* Header */
.summer-promo-header {
    background-color: #ee3524;
    text-align: center;
    padding: 18px 50px 14px;
}
.summer-promo-header h2 {
    margin: 0 0 4px;
    font-family: "Bitter", sans-serif;
    font-size: 32px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.15;
}
.summer-promo-dates {
    margin: 0;
    font-family: "Bitter", sans-serif;
    font-size: 18px;
    color: #fff;
    font-style: italic;
    font-weight: 400;
}

/* Subheading */
.summer-promo-subheading {
    text-align: center;
    padding: 12px 30px 6px;
    margin: 0;
    font-size: 15px;
    color: #222;
    border-bottom: 1px solid #e0e0e0;
}

/* Two-column body */
.summer-promo-body {
    display: flex;
    align-items: stretch;
    padding: 18px 0 10px;
}
.summer-promo-col {
    flex: 1;
    padding: 0 28px 10px;
}
.summer-promo-divider {
    width: 1px;
    background-color: #ccc;
    align-self: stretch;
    margin: 0;
    flex-shrink: 0;
}
.summer-promo-col-title {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 8px;
    line-height: 1.3;
    color: #111;
    letter-spacing: 0.3px;
}
.summer-promo-col-desc {
    font-size: 13px;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.5;
}
.summer-promo-red {
    color: #ee3524;
}

/* Product image areas */
.summer-promo-img-wrap {
    position: relative;
    display: inline-block;
}
.summer-promo-devices {
    max-height: 130px;
    display: block;
}
.summer-promo-wsa {
    max-height: 110px;
    display: block;
}
.summer-promo-badge {
    position: absolute;
    bottom: -6px;
    right: -12px;
    background-color: #ee3524;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    padding: 6px 8px;
    border-radius: 50%;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.summer-promo-badge-sm {
    font-size: 11px;
    min-width: 40px;
    min-height: 40px;
}

/* Footer bar */
.summer-promo-footer {
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    color: #222;
    font-weight: 500;
}
.summer-promo-footer a {
    color: #222;
    text-decoration: underline;
}
.summer-promo-footer a:hover {
    color: #ee3524;
}

/* Responsive */
@media (max-width: 620px) {
    .summer-promo-header h2 {
        font-size: 22px;
    }
    .summer-promo-dates {
        font-size: 15px;
    }
    .summer-promo-body {
        flex-direction: column;
    }
    .summer-promo-divider {
        width: auto;
        height: 1px;
        margin: 0 20px;
    }
    .summer-promo-col {
        padding: 14px 20px 6px;
    }
    .summer-promo-footer {
        font-size: 12px;
    }
    .summer-promo-img-wrap {
        display: none;
    }
}
