/* ===== FEATURED OFFERS CARD ===== */
.offerList {
    background: #14181D !important;
    width: 160px !important;
    height: auto !important;
    min-height: unset !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
    animation: popIn .25s ease both !important;
    position: relative !important;
    padding: 0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.3) !important;
}
.offerList:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 14px 36px rgba(0,0,0,.55) !important;
    border-color: rgba(255,255,255,.2) !important;
}
.offerList:active {
    transform: scale(.97) !important;
}
/* ===== IMAGE ===== */
.offerList__img-wrap {
    position: relative !important;
    width: calc(100% - 20px) !important;
    height: 95px !important;
    margin: 10px auto 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
    background: #1b2028 !important;
}
.offerList__img-wrap img,
.offerList img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: inherit !important;
}
/* ===== TITLE ===== */
.offer_text {
    display: block;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 6px 10px 2px !important;
    margin: 0 !important;
    width: 100%;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    height: auto !important;
}
/* ===== META ===== */
.offer_meta {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0 !important;
    padding: 4px 8px !important;
    flex-shrink: 0 !important;
}
.offer_chip {
    font-size: 9px;
    color: #cbd5e1;
    background: rgba(255,255,255,0.06);
    padding: 3px 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    line-height: 1 !important;
}
/* ===== PRICE ROW ===== */
.offer-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 12px 8px !important;  /* ✅ بدل 4px 12px 12px */
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
}
/* ===== PRICE ===== */
.offer-price {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    text-align: center !important;
    letter-spacing: 0.3px;
}
/* ===== ANIMATION ===== */
@keyframes popIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}