/* ────────────────────────────────────────────────────────────
   AB Sale Banners – Front-end Styles
   ──────────────────────────────────────────────────────────── */

.ab-sale-banners-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.ab-sale-banner {
    border-radius: 8px;
    padding: 16px 24px;
    box-sizing: border-box;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ab-sale-banner:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Main horizontal layout: content left, CTA right */
.ab-sale-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Left content block */
.ab-sale-banner__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

/* Title + End Date side by side */
.ab-sale-banner__top-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.ab-sale-banner__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.ab-sale-banner__ends {
    font-size: 13px;
    opacity: 0.75;
    font-weight: 500;
    white-space: nowrap;
}

/* Description below the top row */
.ab-sale-banner__desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.92;
    margin-top: 2px;
}

/* CTA button on the right */
.ab-sale-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.ab-sale-banner__cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .ab-sale-banner {
        padding: 14px 18px;
    }

    .ab-sale-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ab-sale-banner__top-row {
        flex-direction: column;
        gap: 2px;
    }

    .ab-sale-banner__title {
        font-size: 16px;
    }

    .ab-sale-banner__cta {
        align-self: flex-start;
    }
}
