:root{
    --gradient-bg: linear-gradient(135deg, var(--background-gradient) 0%, hsl(0, 0%, 5%) 100%);
}

.card-gallery-offer {
    --background: #ebeae9;
    --primary: #d7e8c4;
    --brand: #70c232;
    --text-dark: #111827;
    --muted: #6b7280;
    --white: #ffffff;
}


.card-gallery-offer {
    position: relative;
    padding: 52px 0 44px;
    background: var(--gradient-bg);
    overflow: hidden;
}

.card-gallery-offer .container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
  }

/* Lava lamp effect for the card gallery offer section */
.card-gallery-offer::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Use brand greens for the glows, matching bg-gradient */
    background:
        radial-gradient(46% 58% at 18% 72%, hsla(89, 64%, 47%, 0.32) 0%, transparent 62%),
        radial-gradient(38% 52% at 76% 28%, hsla(127, 100%, 50%, 0.26) 0%, transparent 62%),
        radial-gradient(58% 44% at 84% 86%, hsla(89, 64%, 47%, 0.26) 0%, transparent 62%);
    background-repeat: no-repeat;
    filter: blur(150px) saturate(118%);
    mix-blend-mode: screen;
    animation: lavaMoveOffer 14s ease-in-out infinite;
}

/* Ensure content stays above the glow */
.card-gallery-offer .container,
.card-gallery-offer .section-title,
.card-gallery-offer .section-header,
.card-gallery-offer .section-timer,
.card-gallery-offer .section-content{
    position: relative;
    z-index: 1;
}

@keyframes lavaMoveOffer{
    0%{
        transform: translate(0, 0) scale(1);
        background-position: 18% 72%, 76% 28%, 84% 86%;
        background-size: 46% 58%, 38% 52%, 58% 44%;
    }
    50%{
        transform: translate(-2%, -44px) scale(1.05);
        background-position: 24% 64%, 70% 36%, 82% 76%;
        background-size: 52% 62%, 42% 56%, 62% 46%;
    }
    100%{
        transform: translate(0, 0) scale(1);
        background-position: 20% 74%, 78% 32%, 86% 88%;
        background-size: 46% 58%, 38% 52%, 58% 44%;
    }
}

.section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.section-header i {
    width: 24px;
    height: 24px;
    color: var(--brand);
}

.section-header span {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .2px;
    color: var(--primary);
}

.section-timer { 
    display: grid;
    place-items: center;
    gap: 4px;
    background: var(--brand);
    padding: 12px 24px;
    border-radius: 14px;
    min-width: 400px;
    margin-bottom: 30px;
}

.timer-text {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .3px !important;
    color: #4b5563 !important;
    margin-bottom: -5px !important;
}

.timer {
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: .2px !important;
    color: var(--primary) !important;
}

.section-content{
    margin-top: 18px;
}

