.sticky-offer-bar {bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; box-shadow: 0 -1px 1px #f0f0f0; position: relative;}

.sticky-offer-bar .row {row-gap: 10px;}


.sticky-offer-bar .item-rating {
    display: flex;
    border-radius: 4px;
    border: 1px solid rgba(118, 129, 173, 0.20);
    overflow: hidden;

}

.sticky-offer-bar .item-rating .rating-number {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #34997D;
    padding: 0 10px;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.sticky-offer-bar .item-rating .rating-level {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    color: #657E79;
    text-align: center;
    font-size: 8px;
    font-weight: 800;
    line-height: 16.5px;
    text-transform: uppercase;
    width: max-content;
    white-space: nowrap;
}

.sticky-offer-bar .item-rating .rating-level .rating-stars {
    display: flex;
}

.sticky-offer-bar-btn {background: #34997d; border-radius: 7px; padding: 10px 20px; color: #fff; font-weight: 700;}
.sticky-offer-bar-btn:hover {color: #fff;}
/* Close button for mobile */
.sticky-offer-bar-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
    transition: background 0.2s ease;
}

.sticky-offer-bar-close:hover {
    background: #e0e0e0;
}

.sticky-offer-bar-close svg {
    width: 14px;
    height: 14px;
}

/* Updated rating box to match custom design */
.sticky-rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #46b2aa;
    border-radius: 6px;
    padding: 8px 12px;
    min-width: 140px;
}

.sticky-rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: 'Inter', 'Poppins', sans-serif;
}

.sticky-rating-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.sticky-rating-label {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    font-family: 'Inter', 'Poppins', sans-serif;
}

.sticky-rating-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.sticky-rating-stars img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

/* Hide close button on desktop */
@media screen and (min-width: 768px) {
    .sticky-offer-bar-close {
        display: none !important;
    }
}

/* Update existing rating styles to be hidden */
.sticky-offer-bar .item-rating {
    display: none !important;
}


/* Tiny mobile screens - reduce text size to fit on one line */
@media screen and (max-width: 360px) {
    .sticky-offer-bar .font-poppins {
        font-size: 0.85em !important;
        white-space: nowrap;
    }
}
