.promo-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.promo-strip {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #ffffff, #fcfdfc);
    border: none;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.05),
        0 4px 10px -3px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(32, 165, 58, 0.05);
    /* Subtle inner border hint */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    max-width: 90%;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.promo-strip:hover {
    box-shadow:
        0 20px 35px -10px rgba(32, 165, 58, 0.15),
        0 10px 15px -5px rgba(0, 0, 0, 0.05);
}

/* Shine effect on hover */
.promo-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 1;
}

.promo-strip:hover::before {
    left: 150%;
    transition: all 0.7s ease;
}

.promo-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #eefdf4 0%, #ffffff 100%);
    border-radius: 50%;
    margin-right: 15px;
    color: #20a53a;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(32, 165, 58, 0.1);
    border: 1px solid rgba(32, 165, 58, 0.1);
}

.promo-text-group {
    display: flex;
    flex-direction: column;
    margin-right: 25px;
    text-align: left;
}

.promo-main-text {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.promo-sub-text {
    font-size: 13px;
    color: #666;
    margin-top: 1px;
}

.promo-badge-pulse {
    background: linear-gradient(135deg, #fa625c 0%, #e53e3e 100%);
    color: white;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.8px;
    animation: pulse-red 2s infinite;
    box-shadow: 0 2px 6px rgba(250, 98, 92, 0.3);
}

.promo-arrow-btn {
    height: 38px;
    padding: 0 22px;
    background: linear-gradient(135deg, #20a53a 0%, #16a34a 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(32, 165, 58, 0.25);
}

.promo-arrow-btn:hover {
    box-shadow: 0 8px 20px rgba(32, 165, 58, 0.35);
    filter: brightness(1.1);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 98, 92, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(250, 98, 92, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 98, 92, 0);
    }
}

@media (max-width: 600px) {
    .promo-strip {
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        align-items: flex-start;
    }

    .promo-icon-box {
        margin-bottom: 10px;
    }

    .promo-arrow-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .promo-text-group {
        margin-right: 0;
    }
}

/* Bottom Promo Bar */
.bottom-promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #27ae60;
    color: white;
    z-index: 100000;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    /* controlled by JS */
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.bottom-promo-content {
    width: 1200px;
    max-width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-promo-text {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-promo-badge {
    background: white;
    color: #27ae60;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

.bottom-promo-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom-promo-btn {
    background: white;
    color: #27ae60;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s;
}

.bottom-promo-btn:hover {
    background: #f0fdf4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bottom-promo-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.bottom-promo-close:hover {
    color: white;
}

.bottom-promo-close svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .bottom-promo-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .bottom-promo-text {
        flex-direction: column;
        gap: 5px;
    }
}