.sticky-offer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.sticky-offer-bar.visible {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.sticky-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-title {
    margin: 0;
    font-size: 14px;
    font-family: "Times New Roman", serif;
    color: #000;
    margin-bottom: 4px;
}

.sticky-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-current-price {
    font-weight: 700;
    color: #e27890;
    font-size: 18px;
}

.sticky-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.sticky-badge {
    background: #c88a9e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.sticky-btn {
    background-color: #3aa876;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(58, 168, 118, 0.3);
    transition: background 0.2s, transform 0.1s;
}

.sticky-btn:hover {
    background-color: #329166;
}

.sticky-btn:active {
    transform: scale(0.98);
}

@media (max-width: 600px) {
    .sticky-title {
        display: none;
    }

    .sticky-container {
        gap: 15px;
    }

    .sticky-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .sticky-current-price {
        font-size: 16px;
    }

    .sticky-badge {
        display: none;
    }

    .sticky-btn {
        flex-grow: 1;
        padding: 12px 10px;
        font-size: 13px;
    }
}