/* Mom's Hour Promo Banner Styles */
.moms-hour-promo-banner {
    position: relative;
    background: #111;
    padding: 20px 20px;
    overflow: hidden;
    margin: 0;
}

.promo-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-content {
    animation: fadeInLeft 0.8s ease-out;
    display: flex;
}

.promo-badge {
    display: flex;
    margin-bottom: 12px;
    /* animation: pulse 2s ease-in-out infinite; */
}
.promo-image{
    margin-right: auto;
    overflow: hidden;
    border-radius: 12px;
}
.badge-text {
    background: #f36100;
    color: white;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(247, 79, 20, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.promo-title {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.title-highlight {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
}

.promo-description {
    font-size: 15px;
    color: #f8dcca;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 480px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 13px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    margin-right: 10px;
}

.feature-pill:hover {
    background: rgba(247, 79, 20, 0.1);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 16px;
}

.promo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f36100;
    color: white;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(247, 79, 20, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-top: 10px;
}

.promo-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.promo-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(247, 79, 20, 0.6);
    color: white;
}

.promo-cta-button:hover::before {
    left: 100%;
}

.button-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.promo-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.promo-visual {
    position: relative;
    height: 320px;
    animation: fadeInRight 0.8s ease-out;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.visual-circle-1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(247, 79, 20, 0.3), transparent);
    top: -40px;
    right: -40px;
    animation-delay: 0s;
}

.visual-circle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent);
    bottom: 30px;
    left: -20px;
    animation-delay: 2s;
}

.visual-circle-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(247, 79, 20, 0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}



.promo-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.decoration-shape {
    position: absolute;
    opacity: 0.03;
}

.decoration-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-primary), transparent);
    top: -200px;
    right: -200px;
    animation: rotate 20s linear infinite;
}

.decoration-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--brand-secondary), transparent);
    bottom: -150px;
    left: -150px;
    animation: rotate 15s linear infinite reverse;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .promo-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-visual {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .moms-hour-promo-banner {
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 26px;
    }

    .promo-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .promo-features {
        gap: 8px;
        margin-bottom: 20px;
    }

    .feature-pill {
        padding: 7px 12px;
        font-size: 12px;
    }

    .promo-cta-button {
        padding: 12px 28px;
        font-size: 13px;
    }

    .promo-visual {
        height: 240px;
    }

    .visual-circle-1 {
        width: 160px;
        height: 160px;
    }

    .visual-circle-2 {
        width: 120px;
        height: 120px;
    }

    .visual-circle-3 {
        width: 80px;
        height: 80px;
    }
    .promo-content {
        flex-direction: column;
    }
    .promo-image{
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .moms-hour-promo-banner {
        padding: 30px 15px;
    }

    .promo-title {
        font-size: 20px;
    }

    .promo-description {
        font-size: 13px;
    }

    .promo-features {
        flex-direction: column;
        gap: 6px;
    }

    .feature-pill {
        justify-content: center;
        padding: 6px 12px;
    }

    .promo-cta-button {
        width: 80%;
        justify-content: center;
        padding: 2px 12px;
    }

    .promo-visual {
        height: 200px;
    }
}