  :root {
      --primary-color: rgba(251, 196, 0, 1);
      --black-color: rgba(75, 75, 76, 1)
          /* --secondary-color: */

  }



  .navbar-custom {
      background-color: var(--primary-color);
      font-weight: 500;
      padding: 0.4rem 1rem;
      position: relative;
      z-index: 1000;
  }

  .navbar-nav {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: nowrap;
  }

  /* فواصل بين جميع العناصر ما عدا آخر عنصر */
  .navbar-nav .nav-item:not(:last-child)::after {
      content: "|";
      color: rgba(255, 255, 255, 0.8);
      margin-right: 10px;
      display: inline-block;
      line-height: 1;
      vertical-align: middle;
  }

  .navbar-nav .nav-link {
      color: #fff !important;
      font-size: 15px;
      padding: 0 10px;
      white-space: nowrap;
      display: inline-block;
      transition: color 0.3s ease;
  }

  .navbar-nav .nav-item.active .nav-link {
      color: #000 !important;
  }

  .logo {
      width: 185px;
  }

  .btn-ad {
      background-color: rgba(255, 215, 0, 1);
      border: none;
      border-radius: 5px;
      padding: 6px 20px;
      font-size: 13px;
      font-weight: 600;
      color: white;
      white-space: nowrap;
  }

  /* .btn-ad:hover {
      background-color: #fff6bf;
  } */

  .user-img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      object-fit: cover;
  }

  .icon-img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      margin-inline: 4px;
      cursor: pointer;
  }

  .navbar-toggler {
      border: none;
      color: white;
      font-size: 20px;
      background: transparent;
  }

  .navbar-collapse {
      justify-content: space-between;
      align-items: center;
  }

  .logo_mobile {
      display: none;
      width: 150px;
  }

  .close-btn {
      display: none;
  }

  .mobile {
      display: none;
  }

  .custom-slider {
      position: relative;
      overflow: hidden;

      max-width: 100%;
      aspect-ratio: 18 / 7;
  }

  .custom-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  /* تدرج غامق خفيف فوق الصورة */
  .custom-slider .carousel-caption {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      border-radius: 12px;
      bottom: 0;
      padding: 20px;
  }

  .carousel-caption h5 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 5px;
  }

  .carousel-caption p {
      font-size: 0.9rem;
      color: #eee;
      margin: 0;
  }

  /* الأسهم */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 50%;
      padding: 10px;
  }

  /* النقاط (Indicators) */
  .carousel-indicators [data-bs-target] {
      background-color: #fff;
      opacity: 0.6;
  }

  .carousel-indicators .active {
      background-color: #ffc800;
      opacity: 1;
  }

  .cards-section {
      /* background-color: #f8f9fa; */
  }

  .custom-card {
      background-color: rgba(245, 245, 245, 1);
      /* رمادي ناعم */
      border-radius: 10px;
      overflow: hidden;
      height: 98%;
      display: flex;
      flex-direction: column;
  }

  .custom-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
  }

  .card-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* 🔸 الزر بمحاذاة منتصف النص */
      gap: 15px;
  }



  .card-title {
      color: var(--black-color);
  }

  .card-text {
      color: var(--black-color);
      font-size: 14px;
  }

  .ads-section {
      background-color: #fff;
  }

  .ads-section h3 {
      color: var(--primary-color);
      font-size: 22px;

  }

  .ad-title {
      text-align: center;
      color: var(--black-color);

  }

  .ads-slider {
      position: relative;
  }

  .ads-slider .swiper-slide {

      border-radius: 10px;
      overflow: hidden;
  }







  .swiper-slide img {
      width: 100%;
      aspect-ratio: 16 / 9;
      /* أو 3 / 2 مثلاً */

      object-fit: cover;
      display: block;
  }

  .ad-title-overlay {
      background-color: var(--primary-color);
      color: white;
      padding: 10px 114px;
      font-weight: 600;
      text-align: center;
      border-radius: 5px 0px 40px;
      margin-bottom: -12px;
      /* تداخل صغير فوق الصورة */
      display: inline-block;
      z-index: 10;
      position: relative;
      /* فوق الصورة */
      transition: background-color 0.3s ease;
      margin-left: -55px;
  }

  .section-container {
      border-top: 2px solid #eee;
      padding: 20px;
  }

  .category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
  }

  .category-info {
      display: flex;
      align-items: center;
      gap: 10px;
 

  }
  .text-info {
  display: flex;
  flex-direction: column; /* يخلي الاسم فوق والعنوان تحته */
}

.category-title {
  margin: 0;
  font-size: 18px;
  color: rgba(75, 75, 76, 1);
}

.category-subtitle {
  margin: 2px 0 0;
  font-size: 14px;
font-weight: bold;
color: black;
}

  .category-info img {
      width: 120px;
      aspect-ratio: 8 / 4;

      object-fit: cover;
      border-radius: 6px;
  }

  .category-title {
      font-size: 20px;
      font-weight: 700;
      margin: 0;
  }

  .btn-yellow {
      background-color: var(--primary-color);
      color: white;
      font-weight: 600;
      border: none;
      padding: 8px 65px;
      border-radius: 5px;
      white-space: nowrap;
  }
  .btn-gray{
    border: 1px solid var(--primary-color);

  }

  /* .btn-yellow:hover {
      background-color: #ffdb4d;
  } */

  /* أزرار الفئات */
  .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 15px;
  }

  .tag-btn {
      border: 1px solid var(--primary-color);
      border-radius: 30px;
      padding: 6px 18px;
      background-color: #fff;
      color: var(--black-color);
      font-size: 14px;
      transition: all 0.3s ease;
  }

  /* .tag-btn:hover {
      border-color: #ffc800;
      color: #000;
  } */

  .tag-btn.active {
      background-color: #ffc800;
      color: #000;
      font-weight: 600;
      border-color: #ffc800;
  }

  .breadcrumb-custom {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #999;
      margin-bottom: 10px;
  }

  .breadcrumb-custom span {
      color: #999;
      font-weight: 700;
  }

  .breadcrumb-custom .divider {
      color: var(--black-color);
      font-weight: bold;
  }

  .brand-slider img {
      transition: transform 0.3s ease;
  }

  .brand-slider img:hover {
      transform: scale(1.1);
  }

  #brandContainer::-webkit-scrollbar {
      display: none;
      /* إخفاء السكرول */
  }

  .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ffc800;
      border: none;
      color: #fff;
      font-size: 24px;
      padding: 5px 10px;
      cursor: pointer;
      z-index: 5;
      border-radius: 50%;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .slider-btn.left {
      left: 5px;
      position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffc800;       /* اللون الأصفر */
    border: none;
    color: #fff;
    font-size: 20px;           /* يمكنك تعديل الحجم حسب الرغبة */
    width: 40px;               /* العرض */
    height: 40px;              /* الارتفاع */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;        /* يجعلها دائرية */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* ظل خفيف */
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .slider-btn.right {
      right: 5px;
      position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffc800;       /* اللون الأصفر */
    border: none;
    color: #fff;
    font-size: 20px;           /* يمكنك تعديل الحجم حسب الرغبة */
    width: 40px;               /* العرض */
    height: 40px;              /* الارتفاع */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;        /* يجعلها دائرية */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* ظل خفيف */
    transition: transform 0.2s, box-shadow 0.2s;
  }

  /* .slider-btn:hover {
      background: #e6b800;
  } */

  .form-select {
      border-color: var(--primary-color);
      background-color: rgba(250, 251, 251, 1);
      padding: 10px;
  }

  .add_title {
      color: var(--black-color);
      font-weight: 700;
  }

  .add_num {
      color: var(--black-color);
  }

  .delete-all-btn {
      display: inline-flex;
      align-items: center;
      background-color: white;
      color: red;
      border: none;
      padding: 5px;
      font-size: 12px;
      border-radius: 5px;
      cursor: pointer;
      flex-direction: row-reverse;
      /* هذا يجعل الصورة على اليمين */
  }

  .delete-all-btn img {
      width: 20px;
      /* حجم الصورة */
      height: 20px;
      margin-left: 8px;
      /* مسافة بين النص والصورة */
  }

  .filter {
      border: 1px solid var(--primary-color);
      border-radius: 4px;
  }

  .top-bar-bg {
      background-color: #ffc107;
      height: 50px;
  }

  .category-pill {
      border: 1px solid #ccc;
      padding: 8px 15px;
      border-radius: 20px;
      text-decoration: none;
      color: #333;
      margin: 5px;
      display: inline-block;
      white-space: nowrap;
  }

  .category-pill-active {
      background-color: #ffc720;
      border-color: #ffc720;
      color: #000;
      font-weight: bold;
  }

  .btn-custom-yellow {
      background-color: #ffc107;
      border-color: #ffc107;
      color: #000;
      font-weight: bold;
      padding: 10px 30px;
  }

  /* أنماط الفلاتر */
  .filter-title {
      background-color: #ffc107;
      padding: 10px 15px;
      border-radius: 8px 8px 0 0;
      font-weight: bold;
      color: #333;
      text-align: center;
  }

  .filter-sidebar {
      background-color: #f8f9fa;
      border-radius: 8px;
      padding-bottom: 15px;
      border: 1px solid #ddd;
  }

  /* تصميم بطاقة المنتج */
  .card-product {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      margin-bottom: 20px;
      height: 100%;
      border: none;
  }

  .card-img-top {
      width: 100%;
      object-fit: cover;
  }

  /* علامات المنتج */
  .sale-tag {
      position: absolute;
      top: 0;
      right: 0;
      background-color: #ff6600;
      color: white;
      padding: 5px 15px 10px 10px;
      font-size: 0.75rem;
      font-weight: bold;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
      z-index: 10;
  }

  .new-tag {
      background-color: #0d6efd;
      color: white;
      padding: 7px 25px;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: bold;
  }

  /* تفاصيل المنتج (البيانات) */
  .info-item {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      font-size: 0.8rem;
      margin-bottom: 3px;
  }

  .info-label {
      color: #555;
      font-weight: normal;
      margin-left: 5px;
  }

  .info-value {
      color: #ffc107;
      font-weight: bold;
  }

  /* تصميم البانر الإعلاني */
  .ad-banner-card {
      background-color: #000;
      color: white;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      height: 100%;
  }

  .ad-banner-content {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 10px 15px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  }

  /* الأنماط المخصصة لعلامة Sale في الزاوية اليسرى */
  .sale-corner-left-btn {
      /* تموضع ثابت */
      position: absolute;
      top: 0;
      left: 0;
      z-index: 15;
      padding: 0;

      /* الحجم والشكل - 80x80 بكسل */
      width: 80px;
      height: 80px;
      display: flex;
      /* لتموضع العناصر بداخله */
      justify-content: center;
      align-items: center;
      overflow: hidden;
  }

  /* نمط الصورة كخلفية */
  .sale-corner-left-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
  }

  /* نمط النص "للبيع" - تم تعديله ليصبح شريطاً مائلاً */
  .sale-text {
      position: absolute;
      color: white;
      font-size: 0.8rem;
      /* تصغير الخط ليتناسب مع الشريط */
      font-weight: bold;
      text-align: center;
      line-height: 1;

      /* إضافة خلفية للشريط */

      padding: 2px 15px;
      /* لتوسيع الشريط عرضياً */


      /* التموضع في المنتصف */
      top: 35%;
      left: 40%;
      /* الإمالة والدوران - تم تطبيق إمالة حادة (-45deg) لجعله يقطع الزاوية */
      transform: translate(-50%, -50%) rotate(-45deg);
  }

  .img_card {
      width: 100%;
      object-fit: cover;
      aspect-ratio: 8/3;
  }

  .product-stats-overlay {
      /* النمط الافتراضي (لشاشات الويب lg فما فوق) */
      top: -40px;
      left: 0;
      z-index: 5;
      /* تأكد من أن الارتفاع الافتراضي للصورة على الويب هو 180px تقريباً ليكون 170px منطقياً */
  }


  .ad-container {

      display: flex;

      flex-direction: row-reverse;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      height: 189px;
      width: 100%;
      justify-content: space-between;

  }

  .ad-image {

      order: 1 !important;
      ;


      overflow: hidden;
      position: relative;
      border-radius: 0 8px 8px 0;

  }

  .ad-actions-sidebar {


      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: end;
      padding: 10px;
      width: 20%;


  }

  .ad-details {


      width: 45%;
      display: flex;
      flex-direction: column;
      padding: 10px 15px;
      justify-content: center;


  }

  .ad-details_span1 {
      font-weight: bold;
      color: var(--primary-color);
      flex-basis: 15%;
  }

  .ad-details_span2 {
      color: #333;
      flex-basis: 85%;
      text-align: right;
  }

  .for_sale {
      padding: 5px 20px;
      border-radius: 4px;
      font-weight: bold;
      margin: 5px 0;
      background-color: rgba(255, 92, 0, 1);
      color: white;
  }

  .company {
      padding: 5px 13px;
      border-radius: 4px;
      font-weight: bold;
      margin: 5px 0;
      background-color: var(--primary-color);
      color: white;
  }

  .views {
      color: var(--primary-color);
      text-align: left;
      margin-top: auto;
      font-weight: 500;
  }

  .new {
      position: absolute;
      bottom: 5px;
      right: 5px;
      background-color: #007bff;
      color: white;
      padding: 8px 25px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: bold;
  }

  .ad-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 0 8px 8px 0;
  }

  .corner-icon {
      position: absolute;
      /* التموضع في الزاوية العليا اليمنى */
      top: 5px;
      right: 5px;


      border-radius: 50%;
      padding: 3px;
      z-index: 10;
  }

  .image-overlay-container {

      position: relative;
      width: 100%;
      margin-top: 20px;

  }

  .full-width-image {

      width: 100%;
      display: block;
      height: auto;
  }


  .overlay-text {

      position: absolute;
      top: 30%;
      right: 5%;
      color: white;
      font-size: 35px;
      font-weight: bold;
      text-align: right;
      width: 40%;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      z-index: 5;
      text-align: center;
  }
.google{
     width: 200px; height: auto; 
}
.apple{
    width: 175px; height: auto;
}
.logo_footer{
    width: 400px;
}



   

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

   

    .btn-cancel {
      background: none;
      color: rgba(255, 92, 0, 1);
      border: 1px solid rgba(255, 92, 0, 1);
      border-radius: 5px;
      padding: 5px 70px;
      font-size: 15px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-cancel:hover {
      background: #f33;
      color: #fff;
    }

    .steps-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      margin: 30px 0 40px 0;
    }

    .step {
      text-align: center;
      position: relative;
      transition: 0.3s;
    }

    .step-circle {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #ddd;
      color: #fff;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px;
      font-size: 18px;
      transition: 0.3s;
    }

    .step.active .step-circle {
      background: var(--primary-color);
      box-shadow: 0 0 10px rgba(245, 180, 0, 0.4);
      transform: scale(1.1);
    }

    .step-line {
      position: absolute;
      top: 22px;
      right: -70px;
      width: 60px;
      height: 2px;
      background: #ddd;
    }

    .step.active + .step .step-line {
      background: var(--primary-color);
    }

    .form-content {
      transition: opacity 0.3s ease;
    }

    .form-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .form-column {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

  
      select {
          width: 100%;
      transition: 0.3s;
         padding: 12px;
      border-radius: 5px;
      border: 1px solid var(--primary-color);
      font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23f5b400' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 18px;
  padding-right: 40px; /* لتوفير مساحة للأيقونة */
}
    

   /* تنسيق موحد للحقول */
select,
input[type="text"],
textarea {
  background-color: rgba(250, 251, 251, 1);
  color: #333;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.code-input{
width:50px;height:50px;text-align:center;font-size:20px;border-radius:4px;border:1px solid #ddd;color: var(--primary-color);
background-color: rgba(245, 246, 247, 1);
}
#verifyBtn{
    width:100%;background:#f2b500;color:white;border:none;border-radius:8px;padding:10px;font-weight:700;cursor:pointer;
}
.code-row{
    display:flex;justify-content:center;gap:8px;margin-bottom:15px;direction:ltr;
}
.resend-box {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(75, 75, 76, 1);
  text-align: right;
}

.resend-box #timer {
  text-align: center !important;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(75, 75, 76, 1);
}

/* عند التركيز */
select:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 6px rgba(245, 180, 0, 0.5);
}


    .step-2-fields {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .checkbox-field {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid rgba(187, 184, 184, 1);
      border-radius: 10px;
      padding: 12px 15px;
      font-size: 16px;
      background: #fff;
      width: 100%;
    }
    
.checkbox-field.active {
  border-color: #f5b400;
  box-shadow: 0 0 5px rgba(245, 180, 0, 0.4);
}
.custom-checkbox {
  position: relative;
 
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  display: inline-block;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
}
#sendCodeBtn{
    width:100%;background:var(--primary-color);border:none;border-radius:8px;padding:10px;font-weight:700;cursor:pointer;margin-top: 25px;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #f5b400;
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  right: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

    .checkbox-field label {
      flex: 1;
    }

    .checkbox-field input[type="checkbox"] {
      width: 20px;
      height: 20px;
      accent-color: #f5b400;
      margin-left: 10px;
      cursor: pointer;
    }

    .footer-buttons {
      display: flex;
      justify-content: end;
      gap: 15px;
      margin-top: 40px;
    }

    /* .btn {
      padding: 12px 30px;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: 600;
    } */

    .btn-next {
      background: var(--primary-color);
      color: white;
      box-shadow: 0 3px 8px rgba(245, 180, 0, 0.3);
      padding: 5px 37px;
      border-radius: 5px;
    }

    /* .btn-next:hover {
      background: #e3a800;
    } */

    .btn-prev {
      background: #f5f5f5;
      color: rgba(187, 184, 184, 1);
      border: 1px solid #ccc;
        padding: 5px 37px;
        border-radius: 5px;
    }

    .btn-prev:hover {
      background: #eee;
    }
    

    /* ✅ رفع الصور */
    .image-upload-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      margin-top: 30px;
    }

    .image-upload-box {
      border: 2px dashed #ccc;
      border-radius: 10px;
      width: 150px;
      height: 150px;
      cursor: pointer;
      color: #999;
      font-size: 40px;
      font-weight: bold;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: border-color 0.3s;
    }

    /* .image-upload-box:hover {
      border-color: #f5b400;
      color: #f5b400;
    } */

    .image-upload-box span {
      font-size: 12px;
      text-align: center;
      color: #777;
      font-weight: normal;
      padding-top: 5px;
    }

    .image-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .image-wrapper {
      position: relative;
      width: 100px;
      height: 100px;
    }

    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid #ccc;
    }

    .remove-btn {
      position: absolute;
      top: -8px;
      left: -8px;
      background: #f33;
      color: white;
      border: none;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
        .containery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* سلايدر الصور */
        .product-slider {
            flex: 1 1 45%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .product-slider img#mainImage {
            width: 100%;
            height: 350px;
            /* ارتفاع ثابت */
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .thumbnail-slider-container {
            position: relative;
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .thumbnail-slider {
            display: flex;
            gap: 10px;
        }

        .thumbnail-slider img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
            flex-shrink: 0;
        }

        .thumbnail-slider img:hover {
            border: 2px solid #f5b400;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2;
        }

        .arrow-left {
            left: 10px;
        }

        .arrow-right {
            right: 10px;
        }

        /* معلومات المنتج */
        .product-info {
            flex: 1 1 50%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 20px;
        }

        .product-info p {
            font-size: 16px;
            color: #333;
        }

        .price {
            font-size: 22px;
            font-weight: bold;
            color: black;
        }

        .info-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .vertical-line {
            width: 2px;
            height: 20px;
            background-color: #ccc;
        }

        .grey-box {
            background-color: #f5f5f5;
            border-radius: 5px;
            padding: 10px;
            width: 240px;


        }

        .content {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .circle-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #f5b400;
        }

        .text h4 {
            font-size: 18px;
            font-weight: bold;
            color: #f5b400;
        }

        .text p {
            font-size: 14px;
            color: #4b4b4b;
            font-weight: bold;
        }

        .horizontal-line {
            width: 100%;
            height: 2px;
            background-color: #ccc;
            margin: 20px 0;
        }

        /* كروت */
        .cards-container {
            display: flex;
            flex-wrap: wrap;

            gap: 20px;
            flex-wrap: wrap
        }

        .card_id {
            flex: 0 0 calc(33.333% - 13.33px);
            /* 3 كروت في السطر */
            border: 1px solid #f5d700;
            border-radius: 5px;
            padding: 15px;
            box-sizing: border-box;
            /* ضروري حتى يحسب البوردر والبادينغ ضمن العرض */

        }

        .card_id h5 {
            font-size: 16px;
            font-weight: bold;
            color: #a1a1a2;
            margin-bottom: 5px;
        }

        .card_id p {
            font-size: 16px;
            font-weight: bold;
            color: #4b4b4b;
        }

        /* الأزرار */
        .line {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btns {
            display: flex;
            gap: 5px;
         

        }

        .btnn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 13px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            color: #fff;
            text-decoration: none;
        }

        .btn.phone {
            background-color: #f5d700;
        }

        .btn.wa {
            background-color: #53cc60;
        }

        .btn.sms {
            background-color: #65a6f4;
        }
      .dropdown {
    display: none;
    position: absolute;
    top: 60px;
    /* ✅ مسافة من اليمين بدل ما تكون ملتصقة */
    right: 250px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .dropdown a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
  }

  .dropdown a:hover {
    background-color: #f0f0f0;
  }

  /* إظهار القائمة */
  .show {
    display: block;
  }

  .dropdown-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
 
  }   .dropdown a + a {
    border-top: 1px solid #eee;
  }

  .dropdown-header button {
    flex: 1;
    margin: 0 4px;
    padding: 6px 0;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
  }
.overlay {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10;
      justify-content: center;
      align-items: center;
    }

    .popup {
      background: #fff;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      padding: 25px;
      text-align: center;
      position: relative;
    }

    /* ✅ زر الإغلاق والتخطي */
    .close-skip {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 15px;
      color: rgba(255, 92, 0, 1);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: bold;

    }

    /* .close-skip:hover {
      color: var(--primary-color);
    } */

    /* ✅ الصورة فوق العنوان */
    .popup-logo {
      width: 70px;
      margin-bottom: 10px;
    }

    .popup h4 {
     color: var(--primary-color);
      margin-bottom: 10px;
    }

    .popup p {
      color: #777;
      font-size: 14px;
      margin-bottom: 20px;
    }

    /* ✅ الحقول بحدود صفراء */
    .phone-field,
    .password-input input {
      border: 1px solid var(--primary-color)
    }

    /* ✅ حقل الهاتف */
    .phone-input {
      position: relative;
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .country-select {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: transparent;
      font-size: 16px;
      cursor: pointer;
      height: 100%;
      outline: none;
      appearance: none;
      width: 80px;
    }

    .phone-field {
      width: 100%;
      padding: 10px 90px 10px 10px;
      border-radius: 4px;
      font-size: 16px;
      direction: ltr;
      box-sizing: border-box;
    }
 .custom-btn {
  height: 45px; /* ارتفاع أكبر */
  font-size: 1rem;
  color: #fff; /* نص أبيض للأزرار النشطة */
  border-radius: 4px;
  
}

.btn-outline-secondary {
  color: #6c757d; /* نص رمادي للأزرار غير النشطة */
}

.btn-warning.active {
  color: #fff; /* النص يصبح أبيض عند الضغط */

}


    
    .password-input {
      position: relative;
      margin-bottom: 5px;
    }

    .password-input input {
      width: 100%;
      padding: 10px 45px 10px 10px;
      border-radius: 4px;
      font-size: 16px;
      box-sizing: border-box;
    }

    .toggle-password {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      cursor: pointer;
      font-size: 20px;
      color: #999;
      transition: color 0.3s, transform 0.2s;
    }

    .toggle-password:hover {
         color: var(--primary-color);
      transform: translateY(-50%) scale(1.1);
    }

    /* ✅ هل نسيت كلمة المرور */
    .forgot-password {
      display: block;
      text-align: right;
      margin-bottom: 20px;
      font-size: 14px;
    }

    .forgot-password a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s;
    }

    .forgot-password a:hover {
      color: #e0a800;
      text-decoration: underline;
    }

    /* ✅ زر تسجيل الدخول */
    .popup button {
      width: 100%;
      padding: 7px;
      background-color:var(--primary-color);
      border: none;
      border-radius: 4px;
      color: white;
      font-size: 16px;
      cursor: pointer;
    }
.btn:hover {
    background-color: var(--primary-color);
    color: white
}

.card-body_order{
  background-color: white;
  color: rgba(75, 75, 76, 1);

}

    .popup button:hover {
      background-color: var(--primary-color);;
    }
    
    .card{
      background:white;

      overflow:hidden;
      display:flex;
      flex-direction:column;
      height:100%;
      border: none;
    }
        .custom-card-order {
            position: relative; /* ضروري لوضع الـ ID بشكل صحيح */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            border-radius: 10px;
            height: 200px; /* تحديد ارتفاع ثابت للبطاقة */
            overflow: hidden; /* لضمان عدم تجاوز المحتوى الحد المحدد */
        }
        .custom-card-order img {
            width: 100%;
            height: auto; /* تحديد ارتفاع الصورة لكي تأخذ المساحة بالكامل */
            object-fit: cover;
            border-radius: 10px;
        }
        .custom-card-order:hover {
            transform: translateY(-10px);
            transition: transform 0.3s ease;
        }
        .custom-card-order-body {
            display: flex;
            flex-direction: row-reverse; /* قلب ترتيب الأقسام */
            justify-content: space-between;
            gap: 24px;
            padding: 10px; /* تقليل الـ padding */
        }
        .custom-card-order-body .left-content {
            flex: 1;
            text-align: right; /* التأكد من محاذاة النص في القسم الأيسر */
            overflow: hidden;
        }
        .custom-card-order-body .right-content {
            text-align: right;
            flex: 0.7; /* تخصيص مساحة أكبر لقسم الصورة */
        }
        .custom-card-order .card-id {
            position: absolute;
            top: 10px;
            left: 10px;
            color: rgba(255, 92, 0, 1);
            padding: 5px 10px;
            font-size: 14px;
            border-radius: 5px;
            font-weight: bold;
        }
        .card-text_order span{
            color: rgba(75, 75, 76, 1);
        }
           .card-text_order {
            color: rgba(75, 75, 76, 1);
            font-weight: bold;
        }

    .media{
      position:relative;
      padding-top:80%;
      background:linear-gradient(180deg,#f7f7f8,#efefef);
      overflow:hidden;
    }

    .media .product-img {
      position:absolute;
      inset:8px;
   width: calc(100% - 12px);
  height: calc(100% - 12px);
      object-fit:cover;
   
      background:#ddd;
      z-index:1;
    }

    .badge{
      position:absolute;
      top:23px;
      left:12px;
      z-index:2;
      background:rgba(255,255,255,0.95);
      padding:6px 8px;
      border-radius:4px;
      font-size:13px;
      font-weight:600;
      color:var(--primary-color);
      display:inline-flex;
      align-items:center;
      gap:6px;
      box-shadow:0 3px 8px rgba(0,0,0,0.06);
    }

    .select-dot{
      position:absolute;
      top:23px;
      right:15px;
      z-index:2;
      border-radius: 4px;

      
         background:rgba(255,255,255,0.95);

      display:grid;
      place-items:center;
      font-size:12px;
      color:#888;
    }

    .card-body{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      flex:1;
    }

    .title{
      font-size:14px;
      font-weight:600;
      color:rgba(75, 75, 76, 1);
      margin:0;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .muted{
      color:var(--muted);
      font-size:13px;
    }

    .price{
      color:var(  --primary-color);
      font-weight:700;
      font-size:15px;
    }

    .add-btn{
      background:var(  --primary-color);
      border:none;
      border-radius:50%;
      width:36px;
      height:36px;
      display:inline-grid;
      place-items:center;
      color:#fff;
      font-weight:700;
      cursor:pointer;
    }

    
    .page-title {
      font-weight: 700;
      color: #333;
    }

    .btn-yellow_add {
      background-color: var(--primary-color);
      color: white;
      font-weight: 600;
      padding: 8px 26px;
    }

  
map-container {
      border: 1px solid #eee;
      border-radius: 10px;
      overflow: hidden;
      height: 250px;
    }

    .form-select:focus,
    .form-control:focus {
      box-shadow: 0 0 0 0.2rem rgba(245, 196, 77, 0.25);
      border-color: #f5c44d;
      background-color: #fffbea;
    }

    .form-label {
      font-weight: 600;
      color: #444;
    }
  
  

    .address-card:hover {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

  
    .address-card .icon {
      color: var(--primary-color);
      font-size: 20px;
      flex-shrink: 0;
    }

    .address-title {
      font-weight: 700;
      color: #333;
      margin: 0;
      font-size: 15px;
    }

    .address-desc {
      font-size: 14px;
      color: #888;
      margin: 2px 0 0;
    }
    .account-btn {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* منيو الحساب */
.account-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  width: 230px;
  overflow: hidden;
  z-index: 1000;
  animation: slideDown 0.25s ease;
}

/* عناصر المنيو */
.account-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-menu li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px; /* المسافة بين الأيقونة والنص */
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s;
}

.account-menu li:hover {
  background-color: #f7f7f7;
}

.account-menu li i {
  color: #ffcc00;
  font-size: 18px;
  margin-left: 6px;
}

.account-menu li span {
  font-size: 15px;
  color: #333;
  flex-grow: 1;
  text-align: right;
}

/* زر تسجيل الخروج */
.logout-btn {
  background-color: #ffcc00;
  color: #fff;
  border: none;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  font-size: 15px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.logout-btn i {
  color: #fff;
}

   /* عنوان الصفحة */
    .page-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      margin-bottom: 1rem;
    }
    .page-header img {
      width: 30px;
      height: 30px;
    }

    /* الخريطة */
    .map-container {
      border: 2px solid #eee;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 2rem;
    }

    /* أوقات العمل */
    .work-hours {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      text-align: center;
    }
    .work-hours .day {
      background-color: #fff;
      border: 1px solid rgba(250, 187, 28, 1);
      border-radius: 8px;
      flex: 1;
      min-width: 100px;
      overflow: hidden;
    }
    .work-hours .day h6 {
     
      color: #000;
      font-weight: 700;
      margin: 0;
      padding: 8px 0;
    
       background-color: rgba(250, 187, 28, 1);
    }
   
    .work-hours .day p {
      margin: 0;
      padding: 8px 0;
      font-size: 0.9rem;
      color: #555;
    }

 

    /* أيقونات التواصل الاجتماعي */
    .social-icons img {
   
     width: 40px;
  
     
    }
    .social-icons{
        display: flex;
        gap:20px;
  
    }
    
.address-card { position: relative; border: 1px solid #e5e5e5; border-radius: 4px; padding: 14px 18px; background: #fff; display: flex; align-items: center; gap: 10px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); transition: all 0.2s ease; cursor: pointer; }

.form-check {
  position: absolute;
  top: 8px; /* المسافة من الأعلى */
  left: 8px; /* المسافة من اليسار */
  margin: 0;
}

.form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-color: #ccc;
  display: none; /* يظهر فقط عند التحديد */
}

.address-card.selected .form-check-input {
  display: inline-block;
}

    .form-check-input:checked {
      background-color: var(--primary-color);
      border-color:var(--primary-color);
    }


     .product-card {
      position: relative;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      height: 100%;
      transition: all 0.2s ease-in-out;
      background-color: #fff;
    }

    .product-card:hover {
      box-shadow: 0 0 8px rgba(0,0,0,0.08);
    }
  .card_order img {
      height: 200px;
      object-fit: cover;
    }

    .carousel-item {
      padding: 15px 0;
    }

    @media (min-width: 992px) {

      .tag-prev,
    .tag-next {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        background-color: rgba(0,0,0,0.3);
    }

    .tag-prev::after,
    .tag-next::after {
        font-size: 16px;
        color: yellow;
        display: none;
    }
      .col-custom {
        flex: 0 0 20%;
        max-width: 20%;
      }

      html[lang="en"] #adsDropdownMenu {
        right: 0 !important;
        left: -540% !important;
    }
    html[lang="ar"] #adsDropdownMenu {
        top: 70px !important;
        right: -350% !important;
  
    }
    }

    @media (max-width: 767px) {
      .col-custom {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #000;
      border-radius: 50%;
    }

    .order-info p {
      margin: 0;
    }

    /* كارت المتجر */
    .store-card {
  
   
      padding: 20px;
      margin-top: 25px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      transition: 0.3s;
      gap: 15px;
    }

   

    .store-right {
      display: flex;
      align-items: center;
      gap: 15px;

    }

    .store-right img {
      width: 160px;
      height: auto;

      object-fit: cover;
    }

    .store-right .store-info h5 {
      margin-bottom: 5px;
    }

    .btn-shop {
      background-color: var(--primary-color);
      color: #fff;
      border-radius: 4px;
      padding: 4px 23px;
    }


  

    .delivery-info p {
      margin: 0;
      font-size: 14px;
      color: #555;
    }
    .remove-btn {
      position: absolute;
      top: 6px;
      left: 8px;
      background: transparent;
      border: none;
      color: #999;
      font-weight: bold;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      line-height: 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .remove-btn:hover {
      background: #ff4d4d;
      color: #fff;
    }

    .product-img {
      width: 120px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      margin-left: 15px;
    }

    .product-name {
      font-weight: 600;
      font-size: 1rem;
    }

    .product-price {
      color: var(--primary-color);
      font-weight: bold;
      font-size: 0.95rem;
    }

    .btn-yellow_pay {
      background-color: var(--primary-color);
      color: white;
      border-radius: 4px;
      padding: 5px 70px;
    }

    .btn-yellow:hover {
      background-color: var(--primary-color);
      color: #000;
    }

    /* زر + */
    .btn-plus {
      background-color: var(--primary-color);
      color: white;
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-weight: bold;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
    }


    /* زر - */
    .btn-minus {
      background-color: #fff;
      color: var(--primary-color);;
      border: 1px solid var(--primary-color);;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-weight: bold;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
    }

    .btn-minus:hover {
      background-color: #fff9d6;
    }

    .summary {
  
   
      padding: 15px;

    }

    .input-groupp {
      margin-bottom: 15px;
      position: relative;
    }

    /* كود الخصم - حقل بيضاوي مع الزر داخل الحقل */
    .input-groupp .form-control {
      background-color: rgba(250, 251, 251, 1); /* لون الحقل الرمادي */
      border: 1px solid #ccc; /* إضافة حد خفيف */
      border-radius: 50px; /* شكل بيضاوي */
    
      height: 45px;
      font-size: 1rem;
      transition: all 0.3s ease;
    
    }

    .input-groupp .form-control:focus {
      outline: none;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

    .input-groupp button {
      background-color: var(--primary-color);
      color:white;
      border-radius: 50px; /* شكل بيضاوي */
 
      height: 39px;
  
      font-size: 1rem;
      position: absolute;
  left:10px;
      top: 0;
margin-top: 3px;
      transition: all 0.2s ease;
    }

  
    .summary-total {
      font-weight: bold;
      font-size: 1.2rem;
    }

    /* تعديل العرض ليتناسب مع الصورة */
    .row-custom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .row-custom .col-6 {
      width: 48%;
    }

    .summary-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; /* محاذاة النص في منتصف الصفحة */
      text-align: center;
    }

    .summary-content .d-flex {
      justify-content: center;
    }

    /* زيادة المسافة بين العنوان والقيمة التالية */
    .summary-content .d-flex span {
      margin-left: 133px; 
      margin-bottom: 15px;
    }
  /* إعدادات الموبايل */
  @media (max-width: 776px) {
       .dropdown {
      position: static;
      width: 100%;
      box-shadow: none;
      border: none;
    }
    .category-header {
    flex-direction: column; /* يخلي العناصر فوق بعض */
    align-items: flex-start; /* يصطفوا على اليمين أو اليسار حسب اللغة */
  }

  .btn-yellow {
   /* نفس عرض الصورة تقريباً حتى يبدأ بعد نهايتها */

     
          /* padding: 6px 16px; */
          font-size: 14px;
   
      
  }
      .navbar-custom .container-fluid {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .logo {
          display: none;
      }

      .logo_mobile {
          display: block;
          width: 40px;
      }

      .mobile-top {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
      }

      .mobile-icons {
        position: relative;
        overflow: visible; /* مهم جدًا */
    }

      /* القائمة الجانبية */
      .navbar-collapse {
          position: fixed;
          top: 60px;
          right: -220px;
          width: 200px;
          height: 100vh;
          background-color: #fff;
          box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
          padding: 70px 15px 15px;
          transition: right 0.3s ease;
          flex-direction: column;
          align-items: flex-start;
          z-index: 999;
      }

      .navbar-collapse.show {
          right: 0;
      }

      .navbar-nav {
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          margin-top: 10px;
      }

      .navbar-nav .nav-item:not(:last-child)::after {
          display: none;
      }

      .navbar-nav .nav-link {
          color: #000 !important;
          padding: 8px 0 !important;
          font-size: 16px;
          width: 100%;
      }

      /* زر الإغلاق X */
      .close-btn {
          position: absolute;
          top: 15px;
          left: 15px;
          background: var(--primary-color);
          border: none;
          font-size: 18px;
          color: white;
          cursor: pointer;
          border-radius: 50px;
      }

      .navbar-toggler svg {
          width: 22px;
          height: 22px;
          fill: white;
      }

      body.menu-open {
          overflow: hidden;
      }

      .mobile {
          display: block;
      }

      .custom-slider {
          aspect-ratio: 16 / 9;

      }

      .custom-slider img {
          height: 100%
      }

      .carousel-caption {
          padding: 10px;
      }

      .carousel-caption h5 {
          font-size: 1rem;
      }

      .carousel-caption p {
          font-size: 0.8rem;
      }

      .custom-card img {
          height: 180px;
          /* تقليل الارتفاع شوي للموبايل */
      }

      .ads-slider img {
          height: 140px;
          
      }
      .ads-section{
        margin-left: 10px;
      }

      .ad-title-overlay {
          padding: 10px 85px;
      }

      .category-info img {
          width: 140px;
         
      }
    

      .category-title {
          font-size: 18px;
      }

    

      .product-stats-overlay {

          top: -40px;
      }
      .text h5{
        font-size: 12px;
      }
       .text span{
        font-size: 11px;
      }
      

      .img_card {
          display: none;
      }

      .ad-image {
          width: 36%;
      }

      .ad-actions-sidebar {
          width: 20%;

      }

      .ad-details {
          width: 54%;
      }







      .overlay-text {
          font-size: 16px;
          top: 25%;
          /* تعديل التموضع ليتناسب مع الصورة الأصغر */
          right: 3%;
          width: 50%;

      }
      .google{
     width: 75px; height: auto; 
}
.apple{
    width: 75px; height: auto;
}
.logo_footer{
    width: 150px;
}
 .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-left, .footer-right {
      text-align: center !important;
    }
    .footer-right div {
      justify-content: center !important;
    }
    .footer-container{
        margin-top: 20px;
    }
     .form-grid {
        flex-direction: column;
      }

      .form-column {
        min-width: 100%;
      }

      .footer-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      /* .btn {
        width: 100%;
      } */

      .step-line {
        display: none;
      }
      
            .product-slider,
            .product-info {
                flex: 1 1 100%;
            }

            .cards-container {
                flex-wrap: wrap;
                gap: 10px;
            }

            .card_id {
                flex: 0 0 calc(33.333% - 10px);
                /* 3 كروت في السطر على الموبايل */

            }

            .thumbnail-slider-container {
                overflow-x: auto;
            }
               .product-stats-overlay {
                top:-45px
               }
             
                .btnn span {
      display: none; /* يخفي النص */
    }

    .btnn {
      padding: 10px; /* يقلل الحواف */
      border-radius: 50%; /* يجعل الأزرار دائرية أكثر */
      width: 40px;
      height: 40px;
      justify-content: center;
    }

    .btns {
      gap: 8px; /* مسافة بين الأزرار */
    }
      .popup {
        width: 95%;
        padding: 20px;
      }
      .phone-field {
        font-size: 14px;
        padding: 10px 80px 10px 8px;
      }
      .country-select {
        font-size: 14px;
        width: 70px;
      }
      .forgot-password {
        font-size: 13px;
      }
      .popup-logo {
        width: 55px;
      }
       .product-card {
        flex-direction: column;
        align-items: flex-start;
      }

      .product-card .d-flex.align-items-center {
        width: 100%;
 
      }

      .product-img {
        /* width: 100%; */
        height: auto;
        margin: 0 0 10px 0;
      }

      .remove-btn {
        top: 4px;
        left: 6px;
      }

      /* تغيير العرض على الشاشات الصغيرة */
      .row-custom {
        flex-direction: column;
        align-items: flex-start;
      }

      .row-custom .col-6 {
        width: 100%;
        margin-bottom: 10px;
      }

      /* جعل المحتوى في المنتصف */
      .summary-content {
        text-align: left;
      }
      .btn-yellow_pay {
          display: flex
;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- الكارد بنظام القائمة --- */
#ad-list .d-flex {
    flex-direction: row-reverse;
}
.swiper-wrapper{
    display: flex;
    justify-content: center;
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, 0px);
    transition-delay: 0ms;
    }
/* للشاشات الصغيرة (أقل من 768px) */
@media (max-width: 768px) {

    .flex-grow-1 {
        position: relative;
        flex-grow: 0 !important;
        width: 72% !important;
        right: -35px;
    }
    /* نجعل العرض عمودي بدل صف */
    #ad-list .d-flex {
        flex-direction: column-reverse !important;
    }

    /* الشريط الجانبي يصبح بعرض كامل وينزل فوق الكارد */
    #ad-list .ad-actions-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    /* الصورة تأخذ عرض كامل */
    #ad-list .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* ارتفاع الصورة على الشاشات الصغيرة */
    #ad-list img.img-fluid {
        height: 160px !important;
        object-fit: cover;
    }

    /* نقل التفاصيل أسفل الصورة */
    #ad-list .card-body {
        padding-top: 10px !important;
    }

     /* 1. محاذاة العنصر بالكامل إلى اليمين */
    .category-info {
        justify-content: flex-end !important;
        text-align: right !important;
        width: 100%;
    }

    /* 2. عكس ترتيب الصورة والعنوان ليصبحا متوافقين مع اليمين */
    .category-info {
        flex-direction: row-reverse !important;
    }

    /* 3. إلغاء تأثير me-2 لأنه يعطّل المحاذاة في RTL */
    .category-info img {
        margin: 0 0 0 8px !important; /* هامش بسيط بين الصورة والعنوان */
    }
    .account-menu{
      right: -180px;
    }
    html[lang="en"] .account-menu {
    right: 0;
  }

    html[lang="en"] #adsDropdownMenu {
        position: fixed !important;
        top: 70px !important;
        right: 0 !important;
        left: 5% !important;
        width: 90vw !important; 
        max-height: 80vh;
        overflow-y: auto;
        background: white;
        border-radius: 12px;
        z-index: 9999 !important;
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        padding: 15px !important;

        opacity: 0;
    }
    html[lang="ar"] #adsDropdownMenu {
        position: fixed !important;
        top: 70px !important;
        right: 5% !important;
        width: 90vw !important; 
        max-height: 80vh;
        overflow-y: auto;
        background: white;
        border-radius: 12px;
        z-index: 9999 !important;
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        padding: 15px !important;

        opacity: 0;
    }

    #adsDropdownMenu.show {
        display: block !important;
        opacity: 1 !important;
    }

    .ads-dropdown-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .ads-dropdown-grid img {
        height: 80px !important;
    }
    .navbar{width: 100%;}
    .product-slider{
      margin-right: 15px;
      margin-left: -17px;
    }
    
    .iti-mobile{width: 100%;}

    html[lang="en"] .swiper-wrapper{
    display: flex;
    justify-content: left;
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, 0px);
    transition-delay: 0ms;
    }
    html[lang="ar"] .swiper-wrapper{
    display: flex;
    justify-content: right;
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, 0px);
    transition-delay: 0ms;
    }

    
    .container{
      padding-left: 0%;
    }

    .tag-prev,
    .tag-next {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0,0,0,0.3);
    }

    .tag-prev::after,
    .tag-next::after {
        font-size: 16px;
        color: yellow;
    }

    .body{
      width: 112%;
    }
}





  
