  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
    
}
  hr {
    
    height: 1px;
    background-color: #413d3d;
    margin: 0;
    width: 100%;
   
}
.logo-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    height: 50px;
}
.icon {
    width: 20px;
    margin: 0 8px;
}
.icons {
    display: flex;
    align-items: center;
}
    /* Custom arrow for select */
    #wilaya {
      background-image: url("data:image/svg+xml,%3csvg fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1.25em 1.25em;
      padding-right: 2.5rem;
    }
 
    /* Reset and base */
    * {
      box-sizing: border-box;
    }
   
    .container {
      max-width: 480px;
      width: 100%;
      user-select: none;
    }

    /* Slider styles */
    .slider {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgb(0 0 0 / 0.12);
      touch-action: pan-y;
      background: #fff;
    }
    .slides {
      position: relative;
      height: 0;
      padding-bottom: 100%; /* 1:1 aspect ratio */
    }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.6s ease;
      border-radius: 12px;
      overflow: hidden;
      pointer-events: none;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }
    .slide.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 1;
    }

    /* Navigation arrows */
    .nav-arrow {
      position: absolute;}

   
  
    

    /* Thumbnails */
    .thumbnails {
      margin-top: 14px;
      display: flex;
      justify-content: center;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 6px;
      -webkit-overflow-scrolling: touch;
      justify-content: flex-start;
    }
    .thumbnails::-webkit-scrollbar {
  display: none; /* إخفاء شريط التمرير */
}
    .thumbnail {
      flex: 0 0 auto;
      width: 64px;
      height: 64px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      transition: border-color 0.3s ease;
      background: #fff;
    }
    .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
      user-select: none;
    }
    .thumbnail.active {
      border-color: #f97316; /* orange-500 */
    }

    /* Product info */
    .product-info {
      text-align: left;
      margin-top: 28px;
      padding: 0 1rem;
    }
    .product-title {
      font-weight: 700;
      font-size: 1.9rem;
      line-height: 1.2;
      margin: 0 0 0.5rem 0;
      color: #111;
    }
    .product-price {
      font-weight: 600;
      font-size: 1.3rem;
      color: #f97316; /* orange */
      margin: 0;
    }

    /* Responsive */
    @media (min-width: 640px) {
      .thumbnails {
        justify-content: center;
      }
      .thumbnail {
        width: 80px;
        height: 80px;
      }
    }
  .footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
}
.footer-logo {
    justify-self: center;
    height: 50px;
    margin-bottom: 10px;
}
.footer p {
    font-size: 14px;
    color: #666;
}
.footer .phone {
    border: 1.5px solid #080707;
    border-radius: 5px;
    
    font-size: 14px;
    margin-top: 10px;
    
}
/* ===== Desktop Layout Fix ===== */
@media (min-width: 992px) {
  body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-direction: row;
  }

  .container {
    max-width: 600px !important;
  }

  #orderForm {
    max-width: 380px !important;
  }

  header,
  footer {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  body > hr {
    display: none;
  }
}
.page-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  .page-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
}
/* Fix tablet & wide mobile form center */
@media (min-width: 600px) and (max-width: 991px) {
  #orderForm {
    margin-left: auto;
    margin-right: auto;
  }
  .page-wrapper {
    justify-content: center;
  }
}
/* Fix mobile form alignment */
@media (max-width: 599px) {
  #orderForm {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


