/* .widget__form--check__label {
            border: none;
        } */

.widget__categories--menu__list {
    border: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.page-item .page-link {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 34px;
    color: #0d1f2d;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.page-item.active .page-link {
    background-color: #4eb9f4;
    color: #fff;
    border-color: #4eb9f4;
}

.page-item .page-link:hover {
    background-color: #4eb9f4;
    color: #fff;
    border-color: #4eb9f4;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 🎯 تنسيق الأسعار في الموبايل */
@media (max-width: 767.98px) {
    .product__items--price {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        /* 👈 السعر يبدأ من اليسار */
        gap: 6px;
        font-size: 13px !important;
    }

    .product__items--price .current__price {
        font-size: 13px !important;
        font-weight: 600;
    }

    .product__items--price .old__price {
        font-size: 12px !important;
        opacity: 0.7;
    }

    .product__items--price .price__divided {
        display: none;
    }

    /* تقليل المسافات بين السعر وباقي العناصر */
    .product__items--content {
        padding-bottom: 6px;
    }
}

/* 🖥️ الديسكتوب يظل كما هو */
@media (min-width: 768px) {
    .product__items--price {
        font-size: 15px;
        justify-content: flex-start;
    }
}
/* 🎯 تنسيق أنيق لمربع البحث */
.search__widget {
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    padding: 8px 12px !important;
    display: flex;
    align-items: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search__widget:hover {
    border-color: #4eb9f4;
}

.search__widget input.form-control {
    border: none !important;
    /* ❌ حذف البوردر الداخلي */
    outline: none !important;
    box-shadow: none !important;
    font-size: 14.5px !important;
    color: #222;
    width: 100%;
    height: 38px;
    padding-left: 5px;
    background: transparent;
}

.search__widget input.form-control::placeholder {
    color: #999;
    font-weight: 400;
    font-size: 14px;
}

.search__widget svg {
    width: 17px;
    height: 17px;
    color: #666;
    flex-shrink: 0;
}

/* 💡 أثناء الكتابة */
.search__widget:focus-within {
    border-color: #4eb9f4;
    box-shadow: 0 0 0 2px rgba(78, 185, 244, 0.2);
}

/* 📱 تحسينات للموبايل */
@media (max-width: 767.98px) {
    .search__widget {
        padding: 7px 10px !important;
    }

    .search__widget input.form-control {
        font-size: 13.5px !important;
        height: 36px;
    }

    .search__widget svg {
        width: 15px;
        height: 15px;
    }
}
