
    /* ✅ السلايدر */
    .image-slider-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      background: #f5f5f5;
    }
    .image-slider {
      display: flex;
      transition: transform 0.4s ease-in-out;
      cursor: grab;
    }
    .image-slider img {
      width: 100%;
      flex-shrink: 0;
      object-fit: contain;
    }
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 10px;
    }
    .slider-dots span {
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }
    .slider-dots span.active {
      background: #333;
    }

    /* ✅ صور المنتج الإضافية */
    .extra-images {
      margin-top: 20px;
    }
    .extra-images h2 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #333;
    }
    .extra-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .extra-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid #eee;
      transition: transform 0.3s;
    }
    .extra-card img:hover {
      transform: scale(1.05);
    }




/* ✅ شريط البحث */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 600px;
  margin-top: 90px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.search-icon {
  font-size: 1.3rem;
  color: #666;
}

#siteSearch {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

/* ✅ نتائج البحث */
#searchResults {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 10px auto;
  padding: 5px;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s;
}

.search-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* ✅ الصور دائرية */
  object-fit: cover;
}

.search-item:hover {
  background: #f0f0f0;
}

.search-text h3 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.search-text p {
  margin: 5px 0 0;
  font-size: 0.85rem;
  color: #666;
}

.no-results {
  text-align: center;
  padding: 10px;
  color: #888;
}

.highlight {
  background: yellow;
  font-weight: bold;
  padding: 0 2px;
}