/* Hide breadcrumb on checkout page */
.woocommerce-checkout .breadcrumb-section {
    display: none !important;
}

/* Hide checkbox label only on WooCommerce Checkout */
.woocommerce-checkout .woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: none !important;
}

/* ===============================
   FILTER HEADER – ARROW FIX
   Only for shop filters section
=============================== */

/* الأساس */
.shop-filters .filter-header {
    position: relative;
    cursor: pointer;
}

/* ===============================
   Arabic (RTL)
=============================== */
body.qtranxs-lang-ar .shop-filters {
    direction: rtl;
    text-align: right;
}

body.qtranxs-lang-ar .shop-filters .filter-header {
    padding-right: 15px;
    padding-left: 40px; /* مساحة للسهم */
    text-align: right;
}

/* السهم – عربي (شمال) */
body.qtranxs-lang-ar .shop-filters .filter-header::after {
    content: "▼";
    position: absolute;
    left: 15px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* ===============================
   English (LTR)
=============================== */
body.qtranxs-lang-en .shop-filters {
    direction: ltr;
    text-align: left;
}

body.qtranxs-lang-en .shop-filters .filter-header {
    padding-left: 15px;
    padding-right: 40px; /* مساحة للسهم */
    text-align: left;
}

/* السهم – إنجليزي (يمين) */
body.qtranxs-lang-en .shop-filters .filter-header::after {
    content: "▼";
    position: absolute;
    right: 15px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* ===============================
   عند الفتح (Accordion Active)
=============================== */
body.qtranxs-lang-ar .shop-filters .filter-accordion.active .filter-header::after,
body.qtranxs-lang-en .shop-filters .filter-accordion.active .filter-header::after {
    transform: translateY(-50%) rotate(180deg);
}

/* ==================================================
   XOO Login / Register – FINAL PRO STYLE
   ================================================== */

/* ====== Full Page Popup ====== */
.xoo-el-popup {
  position: fixed !important;
  inset: 0 !important;
  background: #f6f6f6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
}

/* ====== Form Container (طبقتين ظل) ====== */
body.rtl .xoo-el-form-container {
  width: 100% !important;
  max-width: 420px !important;
  background: #ffffff !important;
  padding: 28px 24px !important;
  border-radius: 22px !important;


}

/* ====== Hide WooCommerce Container BG ====== */
.page-content .container .woocommerce {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* ====== Tabs Vertical ====== */
.xoo-el-form-container ul.xoo-el-tabs {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin-bottom: 22px !important;
  border: none !important;
}

.xoo-el-form-container ul.xoo-el-tabs li a {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  background: #f2f2f2 !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: 1px solid #e0e0e0 !important;
}

.xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active a {
  background: #111 !important;
  color: #fff !important;
}

/* ====== Inputs ====== */
.xoo-el-fields-cont input {
  height: 54px !important;
  border-radius: 14px !important;
  border: 1px solid #ddd !important;
  padding: 0 16px !important;
  font-size: 15px !important;
}

.xoo-el-fields-cont input:focus {
  border-color: #111 !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,.08) !important;
}

/* ====== Action Button ====== */
.xoo-el-form-container button.xoo-el-action-btn {
  height: 56px !important;
  border-radius: 18px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-top: 12px !important;
}

/* ==================================================
   Privacy Policy – Circle Button + Oval Text
   ================================================== */

.xoo-aff-group {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 14px !important;
}

/* ✅ زر مربع صغير */
body.rtl .xoo-aff-checkbox_single input,
body.rtl .xoo-aff-checkbox_list input {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 3px !important;   /* ⬅️ مربع */
  border: 1.5px solid #aaa !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: all .25s ease !important;
  position: relative;
}
.xoo-aff-group {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 14px !important;
}

/* ✅ Checkbox مربع حقيقي */
body.rtl .xoo-aff-checkbox_single input,
body.rtl .xoo-aff-checkbox_list input {
  appearance: none !important;
  -webkit-appearance: none !important;

  width: 14px !important;
  height: 14px !important;

  padding: 0 !important;              /* 🔥 يمنع التحول لمستطيل */
  margin: 0 !important;

  border-radius: 3px !important;      /* مربع ناعم */
  border: 1.5px solid #aaa !important;
  background: transparent !important;

  box-sizing: border-box !important;  /* 🔒 تثبيت الأبعاد */
  cursor: pointer !important;
  transition: all .25s ease !important;
  position: relative;
  flex-shrink: 0 !important;          /* يمنع التمدد داخل flex */
}


/* عند التفعيل */
body.rtl .xoo-aff-checkbox_single input:checked,
body.rtl .xoo-aff-checkbox_list input:checked {
  background: #9e9e9e !important;
  border-color: #9e9e9e !important;
}

.xoo-aff-group label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 32px !important;
    height: 32px !important;
    padding: 0 10px !important;

    border-radius: 999px !important;
    background: #f2f2f2 !important;

    font-size: 13px !important;
    color: #555 !important;
    line-height: 1 !important;

    cursor: pointer !important;
}


/* ==================================================
   Mobile First
   ================================================== */
@media (max-width: 450px) {

  body.rtl .xoo-el-form-container {
    padding: 24px 16px !important;
    border-radius: 24px !important;
  }

  .xoo-el-fields-cont input {
    height: 56px !important;
    font-size: 16px !important;
  }

  .xoo-el-form-container button.xoo-el-action-btn {
    height: 58px !important;
    font-size: 17px !important;
  }

  .xoo-aff-group label {
    font-size: 14px !important;
  }

  body.rtl .xoo-aff-checkbox_single input {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ===============================
   ACCOUNT PAGE – GLOBAL
================================ */
.woocommerce-account {
    background: linear-gradient(135deg, #f5f5f5, #ececec);
    min-height: 100vh;
    padding: 40px 15px;
    font-family: 'Tajawal', sans-serif;
}

/* container */
.woocommerce-account .container {
    max-width: 420px;
    margin: auto;
}

/* ===============================
   CARD
================================ */
.woocommerce-account .woocommerce {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

/* ===============================
   TABS (Login / Register)
================================ */
.woocommerce-account .u-columns {
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    background: #f2f2f2;
    margin-bottom: 30px;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    color: #777;
}

.woocommerce-account .u-column1.is-active,
.woocommerce-account .u-column2.is-active {
    background: #000;
    color: #fff;
}

/* ===============================
   FORM HEADERS
================================ */
.woocommerce-account h2 {
    display: none;
}

/* ===============================
   INPUTS
================================ */
.woocommerce form .form-row {
    margin-bottom: 18px;
}

.woocommerce form .form-row input {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 14px;
    transition: .3s;
    background: #fff;
}

.woocommerce form .form-row input::placeholder {
    color: #aaa;
}

.woocommerce form .form-row input:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,.06);
    outline: none;
}

/* ===============================
   CHECKBOX & LINKS
================================ */
.woocommerce form .form-row label {
    font-size: 13px;
    color: #666;
}

.woocommerce .lost_password a {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

/* ===============================
   BUTTON
================================ */
.woocommerce button.button {
    width: 100%;
    height: 52px;
    border-radius: 16px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    border: none;
    transition: .3s;
}

.woocommerce button.button:hover {
    background: #222;
    transform: translateY(-1px);
}

/* ===============================
   FOOTER TEXT
================================ */
.woocommerce-account .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
    text-align: center;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {

    .woocommerce-account {
        padding: 25px 10px;
    }

    .woocommerce-account .woocommerce {
        padding: 2px 1px;
        border-radius: 14px;
    }

    .woocommerce form .form-row input {
        height: 48px;
        font-size: 14px;
    }

    .woocommerce button.button {
        height: 50px;
        font-size: 14px;
    }
}

/* ===============================
   DESKTOP ENHANCEMENT
================================ */
@media (min-width: 992px) {

    .woocommerce-account .container {
        max-width: 460px;
    }

    .woocommerce-account .woocommerce {
        padding: 45px 35px;
    }
}

.owl-dots {
  display: none !important;
}
.woocommerce-Price-amount.amount {
 /*display: ;*/
  align-items: center;
  gap: 4px;
  direction: rtl;
 /* unicode-bidi: isolate;*/
}

.woocommerce-Price-amount.amount img {
  width: 14px;
  height: auto;
  position: relative;
  top: -1px;
}

/* ✅ إزالة كل الحدود والإطارات */
/* ===== تصميم الكارت باللغة العربية ===== */
.partner-info {
  direction: rtl;
  text-align: right;
  font-weight: 700;         /* نفس وزن speciality-title */
  color: #000;              /* نفس لون speciality-title */
  font-size: 1rem;          /* نفس حجم الخط */
  margin-bottom: 12px;      /* تباعد مشابه */
}

.partner-info p {
  margin: 4px 0;
  color: #000;              /* خليها بنفس اللون الأسود */
}

.partner-info i {
  color: #000;
  margin-left: 6px;
  font-size: 0.9rem;
}

.partner-card {
  direction: rtl; /* يجعل كل شيء من اليمين لليسار */
  text-align: right; /* محاذاة النص لليمين */
}

/* الاسم */
.partner-card .partner-name {
  font-weight: 700;
  color: #000;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* النجمة بجانب الاسم */
  gap: 6px;
}

/* أيقونة التقييم */
.partner-card .partner-name i,
.partner-card .partner-name .rating {
  color: #f2b01e;
  font-size: 0.9rem;
}

/* العنوان */
.partner-card .partner-location {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

/* رقم الهاتف */
.partner-card .partner-phone {
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

/* التخصصات */
.partner-card .partner-specialities {
  margin-top: 0.5rem;
  text-align: right !important; /* إلغاء الـ text-center */
}
div.partner-info.text-center.mb-2 {
  text-align: right !important;
  direction: rtl !important;
}
.partner-info {
  direction: rtl;
  text-align: right;
}

.partner-info .partner-line {
  display: contents;
  align-items: center;
  justify-content: flex-start;
  gap: 6px; /* مسافة صغيرة بين الأيقونة والنص */
  color: #555;
  font-size: 0.95rem;
  margin: 3px 0;
}

.partner-info .partner-line i {
  color: #000;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.partner-info .partner-line span {
  display: inline-block;
  white-space: nowrap;
}

.partner-card .speciality-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #222;
}

.partner-card .brand-tag {
  display: inline-block;
  background-color: #f6f6f6;
  color: #444;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.85rem;
  margin-left: 5px;
  margin-bottom: 5px;
}

/* إخفاء رسالة الأخطاء العامة في صفحة إتمام الطلب */
.woocommerce-NoticeGroup-checkout,
.woocommerce-error,
.woocommerce-notices-wrapper {
  display: none !important;
}

/* 💬 تنسيق رسالة WooCommerce */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  z-index: 9999; /* ✅ فوق أي عناصر تانية زي النافبار */
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 15px 10px;
  transition: all 0.3s ease;
}

/* 🔘 زر عرض السلة */
.woocommerce-message a.button {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 10px;
  transition: 0.3s;
}

.woocommerce-message a.button:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* ✅ أيقونة الصح */
.woocommerce-message::before {
  color: #000;
}

/* 📱 في الجوال: ضمان ظهور الرسالة بالكامل فوق الهيدر */
@media (max-width: 768px) {
  .woocommerce-message {
    position: fixed; /* ✅ خليها تطفو فوق المحتوى */
    top: 70px; /* اضبط حسب ارتفاع النافبار */
    left: 10px;
    right: 10px;
    margin: 0;
    width: auto;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.5s ease;
  }

  .woocommerce-message a.button {
    display: block;
    margin: 10px auto 0;
    width: 100%;
    max-width: 220px;
  }
}

/* ✨ حركة دخول لطيفة */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-page .row {
    direction: revert;
}
.partner-card {
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.partner-card:hover {
  transform: translateY(-3px);
}
.partner-details p {
  margin-bottom: 6px;
}
/* ✅ تصميم عام للكروت */
.partner-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 0 rgba(0,0,0,0.05);
}

.partner-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.product-specs strong {
  color: #000;
}

.product-accessories ul li {
  padding: 4px 0;
  font-size: 15px;
}

/* ✅ العناوين */
.partner-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.partner-city {
  font-size: 0.9rem;
  color: #777;
}

/* ✅ التفاصيل */
.partner-details {
  margin-top: 15px;
  font-size: 0.875rem;
  color: #444;
  display: none;
}

/* عند الفتح */
.partner-card.active .partner-details {
  display: block;
}

/* ✅ الأزرار داخل التفاصيل */
.partner-details a.btn {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
}

.partner-details a.btn-primary {
  background-color: var(--bs-primary, #d6ae7b);
  border: none;
  color: #fff;
}

.partner-details a.btn-success {
  background-color: #999;
  border: none;
  color: #fff;
}

.partner-details a.btn:hover {
  opacity: 0.9;
}

/* ✅ مسافات الكروت */
.partners-section .row > div {
  margin-bottom: 20px;
}

/* ✅ موبايل فقط */
@media (max-width: 768px) {
  .partner-card {
    padding: 16px;
    font-size: 0.95rem;
  }

  .partner-title {
    font-size: 1rem;
  }

  .partner-details {
    text-align: center;
  }
}

/* 💡 تنسيق الكارد الأساسي */
.partner-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ✅ عنوان الشريك */
.partner-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

/* 📍 المدينة */
.partner-city {
  font-size: 0.9rem;
  color: #777;
}

/* 🔽 التفاصيل عند الفتح */
.partner-details {
  margin-top: 15px;
  font-size: 0.875rem;
  color: #333;
}

/* ✅ الروابط داخل التفاصيل */
.partner-details a.btn {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
}

/* زر عرض المنتجات */
.partner-details a.btn-primary {
  background-color:#000;  /* اللون الأساسي */
  border-color: #000;
  color: #fff;
}

.partner-details a.btn-primary:hover {
  background-color: #b48f63;
  border-color: #b48f63;
}

/* زر التواصل */
.partner-details a.btn-success {
  background-color: #aaa; /* لون محايد بدل الأخضر */
  border-color: #aaa;
  color: #fff;
}

.partner-details a.btn-success:hover {
  background-color: #888;
  border-color: #888;
}

/* المؤشر */
.partner-card {
  cursor: pointer;
}

.mobile-menu,
.mobile-menu ul,
.mobile-menu li,
.mobile-menu .sub-menu {
  border: none !important;
  box-shadow: none !important;
  background: #fff !important;
}

/* ✅ إخفاء الخطوط التي تشبه الجدول */
.mobile-menu li a {
  border: none !important;
  border-bottom: none !important;
  display: block;
  padding: 12px 20px !important;
  font-weight: 600;
  color: #111;
  transition: background 0.3s ease;
}

/* ✅ تأثير خفيف عند المرور */
.mobile-menu li a:hover {
  background: #f5f5f5 !important;
}

/* ✅ إخفاء أي pseudo elements (مثل الأسهم أو الخطوط) */
.mobile-menu li::before,
.mobile-menu li::after,
.mobile-menu ul::before,
.mobile-menu ul::after,
.mobile-menu li a::before,
.mobile-menu li a::after,
li.menu-item-has-children > a::before,
li.menu-item-has-children > a::after,
li.menu-item-has-children:hover > a::before,
li.menu-item-has-children:hover > a::after {
  content: none !important;
  display: none !important;
}

/* ✅ إخفاء الزر اللي فيه الأيقونة الجانبية (السهم) */
.shbl-submenu-toggle,
.shbl-submenu-toggle i {
  display: none !important;
}

/* ✅ تحسين عرض الـ submenu */
.mobile-menu .sub-menu {
  background: transparent !important;
  padding-left: 15px !important;
  margin: 0;
  border: none !important;
  box-shadow: none !important;
}

/* ✅ إزالة أي حدود خارجية للقائمة الجانبية */
.shbl-side,
.shbl-side-content {
  border: none !important;
  box-shadow: none !important;
  background: #fff !important;
}

.shbl-submenu-toggle i {
  display: none !important;
}

@media (max-width: 767px) {
  .slider-home .slider-img img {
    height: 100vh !important;
    width: 100vw !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
  }

  .slider-home .owl-item,
  .slider-home .owl-stage-outer,
  .slider-home .owl-carousel {
    height: 100vh !important;
  }
}
.contact-section,
.categories {
  background-color: #f4f3f3;
}

.clean-features-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.features-title h2 {
  color: #1A1A1A;
  font-weight: bold;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  text-align: center;
}

.feature-box {
  flex: 0 0 250px;
  background-color: #f4f3f3;
  
  border-radius: 12px;
  
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 15px;
}

.feature-box h4 {
  font-weight: bold;
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.partner-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.partner-filter-btn {
  padding: 10px 18px;
  border: 1px solid #000;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-filter-btn:hover,
.partner-filter-btn.active {
  background: #000;
  color: #fff;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.partner-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ✅ توحيد شكل اللوجو */
.partner-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
  background: #f8f8f8;
  padding: 10px;
}

/* ✅ العنوان والوصف */
.partner-name {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

.partner-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ✅ العنوان الجغرافي */
.partner-location {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
  direction: ltr;
  word-break: break-all;
}

.product-count {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

/* ✅ الأزرار */
.partner-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-dark,
.btn-light {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  display: inline-block;
}

.btn-dark {
  background-color: #000;
  color: #fff;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-light {
  background-color: #fff;
  color: #111;
  border: 1px solid #ccc;
}

.btn-light:hover {
  background-color: #f0f0f0;
}
.partners-section {
  padding: 50px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #111;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.partner-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.partner-logo {
  width: 100px;
  height: auto;
  margin: 0 auto 15px;
}

.partner-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.partner-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.partner-location {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}

.partner-actions a {
  display: inline-block;
  margin: 5px 8px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: #222;
}

.btn-light {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.btn-light:hover {
  background: #000;
  color: #fff;
}


.owl-carousel .owl-nav {
  display: none !important;
}
.mobile-bottom-nav {
  transition: transform 0.3s ease;
  will-change: transform;
}
body.post-type-archive-product .breadcrumb-section {
  display: none !important;
}
/* ✅ تنسيق صورة واسم المنتج في السلة */
.custom-cart-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.custom-cart-product .cart-img img.custom-cart-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.custom-cart-product .cart-img img:hover {
  transform: scale(1.05);
}

.custom-cart-product .cart-title {
  font-weight: 600;
  font-size: 16px;
  color: #222;
  line-height: 1.4;
}

/* ✅ للجوال */
@media (max-width: 480px) {
  .custom-cart-product .cart-img img.custom-cart-thumb {
    width: 70px;
    height: 70px;
  }

  .custom-cart-product .cart-title {
    font-size: 14px;
  }
}
.clean-features-section {
  background-color: #f4f3f3;
  padding: 60px 20px;
  text-align: center;
}

.features-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}


/* إخفاء كل الخطوط داخل جدول السلة أو الفاتورة */
.woocommerce table.shop_table,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}

/* إزالة أي خطوط فاصلة مضافة من الثيم */
.woocommerce table.shop_table tr {
  border: none !important;
  box-shadow: none !important;
}

/* لو في لون باهت للفواصل */
.woocommerce table.shop_table {
  border-collapse: collapse !important;
  background: transparent !important;
}
.woocommerce a.remove {
  display: inline-block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  color: var(--wc-red) !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.3s ease;
}

.woocommerce a.remove:hover {
  color: #ff0000 !important;
  transform: scale(1.1);
}

.louris-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.louris-product {
  margin-bottom: 30px;
}

/* ✅ الصورة ككارد */
.product-card-image {
  position: relative;
  overflow: hidden;
 /* border-radius: 10px;*/
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
  background: #fff;
}

.product-card-image img {
  width: 100%;
  transition: 0.4s;
  display: block;
  background-color: #f2f2f2; /* رمادي فاتح قريب من الأبيض */
}


.product-card-image .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-card-image:hover .hover-img {
  opacity: 1;
}
.product-card-image:hover .main-img {
  opacity: 0;
}

/* ✅ أيقونات الهوفر */
.product-card-image .hover-icons {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: 0.3s;
}
.product-card-image:hover .hover-icons {
  opacity: 1;
}

.product-card-image .icon {
  background: #fff;
  color: #000;
  padding: 8px;
  border-radius: 50%;
  font-size: 14px;
}

/* ✅ خصم */
.product-card-image .badge.sale {
  position: absolute;
  top: 10px;
  /*right: 10px;*/
  background: #000;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

/* ✅ معلومات المنتج خارج الكارد */
.product-info {
  padding-top: 12px;
  text-align: center;
}
.product-info h4.title {
  font-size: 16px;
  margin: 5px 0;
}
.product-info h5.brand {
  font-size: 13px;
  color: #999;
  margin-bottom: 4px;
}
.product-info .short-desc {
  font-size: 13px;
  color: #777;
  margin: 5px 0;
}
.product-info .price {
  font-weight: bold;
  color: #000;
  margin-top: 5px;
}

/* ======= شبكة المنتجات ======= */
.louris-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* ======= الكارت ======= */
.louris-product {
  background: #fff;
  /*border: 1px solid #e9e9e9;*/
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all .35s ease;
}
.louris-product:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* ======= الصور ======= */
.product-image {
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  transition: all .5s ease;
  display: block;
}
.product-image .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.louris-product:hover .main-img { opacity: 0; transform: scale(1.05); }
.louris-product:hover .hover-img { opacity: 1; transform: scale(1); }

/* ======= الخصم ======= */
.badge.sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #222;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 3px;
  z-index: 3;
}

/* ======= الأيقونات ======= */
.hover-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 3;
}
.louris-product:hover .hover-icons {
  opacity: 1;
  transform: translateY(0);
}
.hover-icons .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all .2s ease;
}
.hover-icons .icon:hover {
  background: #000;
  color: #fff;
}

/* ======= زر أضف للسلة ======= */
.add-to-cart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 60%);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 4;
}
/* عند تمرير الماوس - إظهار الزر */
.louris-product:hover .add-to-cart-center {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* زر الإضافة إلى السلة */
.add-to-cart-center .button {
  background: #111;
  color: #fff;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.3s ease;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

/* الهوفر */
.add-to-cart-center .button:hover {
  background: #000;
}

/* ⚠️ تحسين الشكل في الجوال */
@media (max-width: 768px) {
  .add-to-cart-center .button {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 20px;
  }
}

/* ======= معلومات المنتج ======= */
.product-info {
  text-align: center;
  padding: 16px 12px 25px;
}
.product-info .brand {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: .5px;
}
.product-info .title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.product-info .title a {
  text-decoration: none;
  color: inherit;
}
.product-info .title a:hover { color: #555; }

.product-info .short-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
 /* min-height: 40px;*/
  margin-bottom: 10px;
}

/* ======= الأسعار ======= */
.product-info .price {
  display: flex;
  justify-content: right;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}
.product-info .price ins {
  color: #111;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.product-info .price del {
  color: #6c757d;
  font-size: 13px;
  text-decoration: line-through;
  font-weight: 400;
  opacity: 0.9;
}

/* ======= الموبايل ======= */
@media (max-width: 767px) {
  .louris-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .louris-product {
    border-radius: 6px;
  }

  .product-info {
    padding: 10px 6px 14px;
  }
  .product-info .title {
    font-size: 13px;
  }
  .product-info .short-desc {
    font-size: 12px;
    line-height: 1.4;
  }
  .product-info .price ins {
    font-size: 13px;
  }
  .product-info .price del {
    font-size: 11px;
  }

  /* نفس مؤثرات الديسكتوب للموبايل */
  .hover-icons {
    opacity: 1;
    transform: none;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    top: auto;
    right: 0;
    left: 0;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 3px 8px;
    width: fit-content;
    margin: auto;
  }
  .hover-icons .icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .add-to-cart-center {
    display: none; /* الموبايل ما يحتاج زر كبير وسط الصورة */
  }
}


.best-seller-section {
 /* padding: 70px 0;*/
  background: #fff;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.view-all {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid #000;
  transition: all 0.3s ease;
}
.view-all:hover {
  color: #999;
  border-color: #999;
}

/* الشبكة */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
}

/* كارت المنتج */
.product-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
}
.product-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* الصورة */
.product-thumb {
  position: relative;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  transition: transform 0.4s ease;
}
.product-item:hover img {
  transform: scale(1.1);
}

/* بادج الخصم */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 5px 8px;
  border-radius: 4px;
}

/* الأزرار فوق الصورة */
.product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s ease;
}
.product-item:hover .product-actions {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.action-btn {
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}
.action-btn:hover {
  background: #000;
  color: #fff;
}

/* معلومات المنتج */
.product-info {
  padding: 15px;
}
.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 5px;
  color: #000;
}
.product-title a {
  color: inherit;
  text-decoration: none;
}
.product-title a:hover {
  color: #888;
}
.product-price {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.product-price del {
  color: #999;
  margin-right: 5px;
}
.product-price ins {
  color: #000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-product .summary.entry-summary form.cart {
    position: relative;
    z-index: 10000;
  }

  /* تأكد أن أي عنصر overlay (زي الشريط السفلي) لا يغطي المحتوى */
  .mobile-bottom-nav {
    z-index: 9999;
  }

  /* تأكد من وجود مسافة تحت الزر حتى لا يختفي تحت الشريط */
  .single-product .summary.entry-summary {
    padding-bottom: 80px; /* حسب ارتفاع شريط الجوال */
  }
}

/* تصميم عام للنقاط */
.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: transparent; /* شفاف من الداخل */
  border: 2px solid #000;   /* إطار أسود */
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

/* النقطة عند التحويم */
.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #555; /* لون أفتح عند المرور */
}

/* النقطة النشطة (الحالية) */
.owl-theme .owl-dots .owl-dot.active span {
  background: #000; /* نقطة سوداء ممتلئة */
  border-color: #000;
  transform: scale(1.1); /* تكبير بسيط لإبرازها */
}

/* اجعل العنصر الأساسي للسلايدر في وضع نسبي لتثبيت المحتوى عليه */
.slider.home-slider {
  position: relative;
  overflow: visible !important;
}

/* الصورة في الخلف */
.slider-home .slider-img {
  position: relative;
  z-index: 1;
}

/* معلومات السلايدر (العنوان + الزر) فوق الصورة */
.slider-home .carousel-info {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 800px;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* العنوان */
.slider-home .carousel-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

/* الزر */
.slider-home .carousel-info .read-more a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #fff;
  color: #000;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.slider-home .carousel-info .read-more a:hover {
  background-color: #000;
  color: #fff;
}

/* أيقونات السوشيال ميديا */
.hero-soch-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-soch-icon a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.hero-soch-icon a:hover {
  color: #ccc;
}

/* السماح بظهور العناصر رغم تحريك owl */
.owl-stage, .owl-item {
  overflow: visible !important;
}

:root{
    --main-color:#000;
    --sec-color:#1D1D1B;
    --bg-color:#F5F5F5;
}
@media (max-width: 768px) {
  .icons-fixed {
    position: fixed !important;
 
    bottom: 50px !important; /* المسافة فوق الشريط السفلي */
    display: flex;
    flex-direction: column;
   
    z-index: 99999;
    transition: bottom 0.3s ease;
  }

  .icons-fixed a {
    position: relative;
    bottom: auto !important;
  }
}

.woocommerce span.onsale{
 background-color: #000;}
.products-section {
    padding: 50px 0;
}

.products-section .section-title h2 {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

/* اللوجو */
.header-nav .logo img {
  max-height: 55px; /* صغّر اللوجو */
  width: auto;
}

/* القائمة الأساسية */
.header-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu li {
  position: relative;
}

.header-menu li a {
  color: #000; /* أسود */
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 5px;
  transition: color 0.3s;
}

.header-menu li a:hover {
  color: #FFAD14; /* لمسة هوفر بالبرتقالي */
}

/* القوائم المنسدلة */
.header-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  right: 0; /* RTL */
  min-width: 200px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.header-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-menu li ul.sub-menu li {
  display: block;
  padding: 0;
}

.header-menu li ul.sub-menu li a {
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s, color 0.3s;
}

.header-menu li ul.sub-menu li a:hover {
  background: #FFAD14;
  color: #fff;
}

/* ===== شبكة المنتجات متوافقة مع جميع الأجهزة ===== */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* منتجين جنب بعض */
    gap: 12px;
  }
}

/* الكارد */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100% !important;    /* يمنع التمدد الغريب */
  max-width: 100% !important;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* المعلومات */
.product-info {
  /*padding: 10px;*/
  text-align: center;
}

.product-title {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  margin: 5px 0;
  line-height: 1.4;
}

.product-price {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.product-price del {
  font-size: 11px;
  color: #aaa;
  margin-right: 5px;
}

.shop-now-btn:hover,
.view-all:hover {
  background: #fff;
}

.custom-banner-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 60px 20px;
  direction: rtl;
  flex-wrap: wrap;
  background-color: #fff;
}

.custom-banner-item {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.custom-banner-item:hover {
  transform: scale(1.02);
}

.custom-banner-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* غطاء غامق */
  z-index: 1;
}

.custom-banner-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #fff;
  text-align: right;
}

.custom-banner-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.custom-banner-content p {
  font-size: 15px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.custom-banner-btn {
  display: inline-block;
  padding: 6px 14px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.custom-banner-btn:hover {
  background-color: #f2f2f2;
}
/* ====== سكشن العنوان ====== */
.categories .section-title h4 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111;
}

/* ====== الشكل العام لكل عنصر ====== */
.new-cat-style {
  text-align: center;
  margin: 10px;
}

/* ====== دائرة الصورة ====== */
.cat-img-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #eee;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.cat-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== اسم القسم ====== */
.cat-name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0;
  text-transform: uppercase;
}

/* ====== تأثير hover ====== */
.cat-img-circle:hover {
  transform: scale(1.05);
}
.split-banner-v2 {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #f9f9f9;
}

.split-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 500px;
  direction: rtl;
}

.banner-text {
  background-color: #000;
  color: #fff;
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
}

.banner-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.banner-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background-color: #f0f0f0;
}

.banner-image {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.best-seller-section {
  /*padding: 60px 20px;*/
  background-color: #fff;
}

.best-seller-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.best-seller-section .section-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.best-seller-section .view-all {
  font-size: 13px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 
}

.product-card {
  background: #f9f9f9;
  padding: 1px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-thumb {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
}

.product-thumb img {
  max-width: 100%;
  height: auto;
}

.product-badge {
  position: absolute;
  top: -1px;
  left: 5px;
  background-color: #000;
  color: #fff;
  font-size: 9px;
  padding: 3px 6px;
  font-weight: bold;
  border-radius: 2px;
}

.product-info {
  text-align: center;
}

.product-brand {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.4px;
}

.product-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 1px;
  min-height: 20px;
}

.product-price del {
  font-size: 13px;
  color: #aaa;
  margin-right: 5px;
}

.product-price ins {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.section-footer {
  text-align: center;
  margin-top: 40px;
}

.shop-now-btn {
  padding: 10px 28px;
  font-size: 13px;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.shop-now-btn:hover {
  background-color: #000;
  color: #fff;
}

/* ===============================
   Product Hover Icons – Refined
================================ */

/* كارد المنتج */
.louris-product{
  position: relative;
  overflow: hidden;
}

/* حاوية الأيقونات */
.louris-product .hover-icons{
  position: absolute;
  top: 5%;
  left: -38px; /* ← خارج الصورة شوية */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 6;
}

/* إظهار عند hover */
.louris-product:hover .hover-icons{
  opacity: 1;
  visibility: visible;
  left: 10px; /* تدخل ناعمة */
}

/* الأزرار */
.louris-product .hover-icons a,
.louris-product .hover-icons button{
  width: 30px;          /* أصغر */
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: all .25s ease;
}

/* Hover */
.louris-product .hover-icons a:hover,
.louris-product .hover-icons button:hover{
  background: #000;
  color: #fff;
  transform: scale(1.08);
}

/* Animation delay */
.louris-product .hover-icons a:nth-child(1),
.louris-product .hover-icons button:nth-child(1){
  transition-delay: .05s;
}
.louris-product .hover-icons a:nth-child(2),
.louris-product .hover-icons button:nth-child(2){
  transition-delay: .1s;
}
.louris-product .hover-icons a:nth-child(3),
.louris-product .hover-icons button:nth-child(3){
  transition-delay: .15s;
}
/* Mobile Search Overlay */
.mobile-search-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:99999;
}

.mobile-search-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-search-box{
  background:#fff;
  width:90%;
  max-width:400px;
  padding:20px;
  border-radius:14px;
  position:relative;
}

.mobile-search-box input{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
}

.mobile-search-box button[type="submit"]{
  margin-top:10px;
  width:100%;
  background:#000;
  color:#fff;
  border:none;
  padding:10px;
  border-radius:8px;
}

.mobile-search-close{
  position:absolute;
  top:-45px;
  right:0;
  background:#000;
  color:#fff;
  border-radius:50%;
  width:36px;
  height:36px;
  border:none;
}
