.promo-banner {
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    min-height: 160px;
    margin: 40px 0;
    align-items: stretch;
    box-shadow: 0 4px 24px rgba(19,23,43,0.12);
}

.promo-banner-img-wrap {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 160px;
}

.promo-banner-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(19,23,43,0.1) 0%, transparent 60%);
    z-index: 1;
}

.promo-banner-eyebrow {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FA5026;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 999px;
    z-index: 2;
}

.promo-banner-eyebrow::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: promo-pulse 1.8s infinite;
}

@keyframes promo-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.65); }
}

.promo-banner-left {
    background: #1A2B4A;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-banner-left::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 52px solid rgba(255,255,255,0.05);
    right: -70px;
    bottom: -70px;
    pointer-events: none;
}

.promo-banner-left::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 26px solid rgba(255,255,255,0.04);
    left: -28px;
    top: -28px;
    pointer-events: none;
}

.promo-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.promo-banner-sub {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

.promo-banner-cruise {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 17px;
    color: rgba(255,255,255,0.55);
    position: relative;
    z-index: 1;
}

.promo-banner-footer {
    background: #fff;
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    min-width: 260px;
}

.promo-banner-price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
}

.promo-price-space {
    flex-grow: 1;
}

.promo-price-from {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9CA3AF;
}

.promo-price-amt {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #13172B;
    line-height: 1;
}

.promo-price-per {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #9CA3AF;
}

.promo-banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FA5026;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 22px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
    width: 100%;
}

.promo-eyebrow-mobile {
    display: none;
}

.promo-banner-btn:hover {
    opacity: 0.88;
}

.promo-banner-urgency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFF0EC;
    border: 1px solid rgba(250,80,38,0.2);
    color: #FA5026;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 17px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    width: 100%;
}

@media (max-width: 1024px) {
    .promo-banner-eyebrow {
        font-size: 13px;
    }
    .promo-banner {
        grid-template-columns: 0.3fr 0.6fr 0.5fr;
    }
    .promo-banner-left {
        padding: 20px 20px;
    }
    .promo-banner-footer {
        padding: 20px 16px;
    }
    .promo-banner-sub {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .promo-price-amt {
        font-size: 26px;
    }
    .promo-price-from,
    .promo-price-per {
        font-size: 14px;
    }
    .promo-banner-btn {
        font-size: 14px;
        padding: 10px 14px;
    }
    .promo-banner-urgency {
        font-size: 14px;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .promo-banner-title {
        margin-top: 40px;
        font-size: 22px;
    }
    .promo-banner-sub {
        white-space: normal;
    }
    .promo-banner-left {
        padding: 18px 20px;
    }
    .promo-banner-footer {
        padding: 18px 20px;
        min-width: auto;
    }
    .promo-banner-img-wrap {
        display: none;
    }
    .promo-eyebrow-mobile {
        display: inline-flex;
        top: 10px;
        left: auto;
        right: 16px;
        width: fit-content;
        border: 1px solid rgba(250,80,38,0.3);
    }
    .promo-banner-cruise {
        margin-bottom: 10px;
    }
}