.goe-promo-box {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 18px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid #e6ecf5;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
    margin-top: 16px;
    margin-bottom: 36px;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.goe-promo-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #afcb20 0%, #ef4444 100%);
}

.goe-promo-box .title-top {
    font-size: 1.35rem;
    line-height: 1.25;
    color: #dc2626;
    font-weight: 800;
    letter-spacing: .3px;
    margin: 4px 0 6px;
}

.goe-promo-box .title-bottom {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #475569;
    font-weight: 800;
    margin: 2px 0 8px;
}

.goe-promo-box .promo-prices p,
.goe-promo-box .countdown-subtitle {
    font-size: .95rem;
    line-height: 1.45;
    color: #1f2937;
    font-weight: 700;
    margin: 6px 0;
}

.goe-promo-box .countdown-subtitle {
    color: #475569;
}

.goe-promo-box .countdown-subtitle span {
    color: #afcb20;
    font-weight: 800;
}

.goe-promo-box .goe-disclaimer,
.goe-promo-box .offer-end {
    font-size: .78rem;
    font-style: italic;
    color: #6b7280;
    font-weight: 600;
    margin-top: 6px;
}

.goe-promo-box .promo-prices {
    margin: 8px 0 10px;
}

.goe-promo-box .promo-prices del {
    text-decoration-color: #d9534f;
}

.goe-promo-box .promo-prices span {
    color: #afcb20;
    font-weight: 800;
}

.goe-promo-box .modern-countdown {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 12px 0 8px;
}

.goe-promo-box .countdown-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 98px;
    height: 98px;
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border-radius: 16px;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.18);
    opacity: 0;
    transform: scale(.9);
    transition: opacity .35s ease, transform .35s ease;
}

.goe-promo-box .countdown-element span {
    font-size: .78rem;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    color: #fff;
}

.goe-promo-box .countdown-element.show {
    opacity: 1;
    transform: scale(1);
}

.goe-promo-box .btn-goe a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: .72rem 1.15rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #b9d92f 0%, #afcb20 100%);
    border: 1px solid #9fb016;
    color: #ffffff;
    font-weight: 800;
    font-size: .95rem;
    line-height: 1;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    will-change: transform, box-shadow;
    box-shadow: 0 12px 24px rgba(175, 203, 32, .22);
}

.goe-promo-box .btn-goe a::before {
    content: "→";
    display: inline-block;
    font-weight: 900;
    font-size: 1.75em;
    line-height: 1;
    transform: translateX(0);
    transition: transform .18s ease;
}

.goe-promo-box .btn-goe a:hover {
    background: #bad63a;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(175, 203, 32, .3);
}

.goe-promo-box .btn-goe a:hover::before {
    transform: translateX(2px);
}

.goe-promo-box .btn-goe a:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 640px) {
    .goe-promo-box {
        padding: 14px 12px;
        border-radius: 18px;
    }

    .goe-promo-box .modern-countdown {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        align-items: center;
        gap: 6px 8px;
        margin: 10px 0 8px;
    }

    .goe-promo-box .countdown-element {
        width: 88px;
        height: 88px;
        font-size: 1.6rem;
    }

    .goe-promo-box .title-top {
        font-size: 1.2rem;
    }

    .goe-promo-box .title-bottom {
        font-size: 1rem;
    }

    .goe-promo-box .promo-prices p,
    .goe-promo-box .countdown-subtitle {
        font-size: .92rem;
    }

    .goe-promo-box .goe-disclaimer,
    .goe-promo-box .offer-end {
        font-size: .75rem;
    }
}
