/* ══════════════════════════════════════════
       CATEGORY PROMO
    ══════════════════════════════════════════ */
.cat-promo {
    border-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.cat-promo.grn {
    background: linear-gradient(to bottom, #c8e6c9, #ffffff);
}

.cat-promo.blu {
    background: linear-gradient(to bottom, #bbdefb, #ffffff);
}

.cat-promo .cp-art {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.cat-promo h3 {
    font-weight: 800;
    font-size: .9rem;
    line-height: 1.25;
}

.cat-promo p {
    font-size: .7rem;
    color: var(--muted);
    margin-top: 2px;
}

.cp-btn {
    margin-left: auto;
    background: #111827;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: .72rem;
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 24px;
}

/* ══════════════════════════════════════════
       MARQUEE STRIP
    ══════════════════════════════════════════ */
.marquee-strip {
    background: var(--accent);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0 2rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* ——— TOP ROW: heading + button ——— */
.offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.offers-title {
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    font-weight: bold;
    letter-spacing: -0.01em;
    color: #1a1a0e;
    text-transform: uppercase;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.1rem;
    border: 1.5px solid #1a1a0e;
    border-radius: 999px;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a0e;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.shop-btn:hover {
    background: var(--mzansi-orange);
    border-color: var(--mzansi-orange);
    color: #fff;
    transform: scale(1.04);
}

.shop-btn:hover .arrow-circle {
    background: #fff;
}

.shop-btn:hover .arrow-circle svg {
    stroke: var(--mzansi-orange);
}

.arrow-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--mzansi-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.arrow-circle svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease;
}

/* ——— BANNER CARD ——— */
.banner-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(to bottom, #7dd8f0, #c5f0fa00);
    min-height: 200px;
    display: flex;
    align-items: center;
    animation: fadeUp 0.6s cubic-bezier(.22, 1, .36, 1) both;
}

/* Subtle light-ray overlay */
.banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
    pointer-events: none;
}

/* ——— LEFT CONTENT ——— */
.banner-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem 2.5rem 2.4rem;
    flex: 1;
    max-width: 52%;
}

.tag-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: #2d6a4f;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
    width: fit-content;
}

.banner-heading {
    font-size: clamp(1.4rem, 3.8vw, 2.1rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0d2b1a;
}

/* ——— RIGHT IMAGE ——— */
.banner-image-wrap {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 52%;
    max-width: 460px;
    height: 110%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.banner-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    /* pop the image slightly up to overflow the card */
    transform: translateY(0px);
    filter: drop-shadow(0 -18px 32px rgba(0, 80, 30, 0.18));
    transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.banner-card:hover .banner-image-wrap img {
    transform: translateY(-8px) scale(1.03);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 560px) {
    .banner-content {
        max-width: 60%;
        padding: 1.6rem 1rem 1.6rem 1.4rem;
        padding: 1.5rem .8rem;
    }

    .banner-image-wrap {
        width: 46%;
        right: -6px;
    }

    .banner-heading {
        font-size: 1.15rem;
    }

    .offers-title {
        font-size: 1.1rem;
    }
}

/* *********** PROMO ************ */

/* Promo strip */
.promo-strip {
    position: relative;
    border-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #f0df7d, #faeec500);
    min-height: 200px;
    display: flex;
    align-items: center;
    animation: fadeUp 0.6s cubic-bezier(.22, 1, .36, 1) both;

}

/* Subtle light-ray overlay */
.promo-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
    pointer-events: none;
}

/* ——— LEFT CONTENT ——— */
.promo-strip-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem 2.5rem 2.4rem;
    flex: 1;
    max-width: 52%;
    color: #0d2b1a;
    display: flex;
    flex-direction: column;
    ;
    gap: 5px;
}

.promo-strip-content h4 {
    font-size: clamp(1.4rem, 3.8vw, 2.1rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.promo-strip-content p {
    font-size: .72rem;
    margin-top: 2px;
}


/* ——— RIGHT IMAGE ——— */
.promo-strip-image-wrap {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 52%;
    max-width: 460px;
    height: 110%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    top: 5px;
}

.promo-strip-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    /* pop the image slightly up to overflow the card */
    transform: translateY(0px);
    filter: drop-shadow(0 18px 32px rgba(0, 80, 30, 0.18));
    transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.promo-strip:hover .promo-strip-image-wrap img {
    transform: translateY(-8px) scale(1.03);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 560px) {
    .banner-card {
        overflow: hidden;
    }

    .promo-strip-content {
        max-width: 60%;
        padding: 1.5rem .8rem;
    }

    .promo-strip-image-wrap {
        width: 46%;
        right: -6px;
    }

    .promo-strip h4 {
        font-size: 1rem;
    }

    .promo-strip-image-wrap {
        right: 0px;
        top: 0px;
        height: 80%;
    }

    .promo-strip-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
        transform: translateY(0px);
        filter: drop-shadow(0 18px 32px rgba(0, 80, 30, 0.18));
    }

    .tag-pill {
        font-size: .7rem;
        margin-bottom: .5rem;
    }
}

/* ══════════════════════════════
   DESKTOP (≥820px)
══════════════════════════════ */
@media (min-width: 820px) {

    .promo-strip,
    .banner-card {
        overflow: visible;
    }

    .promo-strip {
        margin: 14px 24px;
    }
}

@media (min-width: 1100px) {

    .promo-strip {
        margin: 14px 0 0;
    }
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}