.offer-bar {
    font-family: 'Montserrat', sans-serif;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #30af35, #0d7312);
    color: #FFFFFF;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.special-text {
    font-weight: 700;
    font-size: 22px;
    color: #FFD700;
}

.offer-btn {
    background: #FFFFFF;
    color: #114A24;
    padding: 12px 24px;
    border: 2px solid #114A24;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.4s ease, transform 0.3s ease;
}

.offer-btn:hover {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #FFFFFF;
    transform: scale(1.15);
    border-color: #FFA500;
}
