
  body {
    font-family: "Cairo", sans-serif;
    background-color: #0b0b0d;
    color: #fff;
    line-height: 1.6;
  }



  /* قائمة التنقل
  .main-nav a {
    color: #ccc;
    margin: 0 10px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
  } */

  /* قسم التفاصيل */
  .product-details {
    padding: 40px 15px;
    max-width: 1200px;
    margin: auto;
  }

  .product-details h2 {
    font-size: 24px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 30px;
  }

  /* توزيع الصورة والنص بشكل أكثر مرونة */
  .product-container {
    display: flex;
    flex-wrap: wrap-reverse; /* عكس الترتيب */
    align-items: center;
    gap: 25px;
  }

  /* الصورة */
  .product-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
  }
.product-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.product-gallery img {
  /* width: 80px;
  height: 80px; */
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, border 0.2s;
  border: 10px solid transparent;
}

.product-gallery img:hover {
  transform: scale(1.1);
  /* border-color: #d4af37; */
}

  .product-image img {
    width: 100%;
    /* border-radius: 50%; */
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-image img:hover {
    transform: scale(1.01);
  }

  /* محتوى النص */
  .product-info-box {
    flex: 2 1 400px;
    padding: 20px;
    border-radius: 12px;
  }

  .product-info-box h3 {
    margin-bottom: 15px;
    color: #d4af37;
    font-size: 20px;
  }

  /* قائمة المميزات */
  .features {
    list-style: none;
    margin-bottom: 15px;
    padding: 10px 0 !important
  }
  .features li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  .features li i {
    color: #d4af37;
    margin-left: 8px;
    font-size: 16px;
  }

  /* الوصف */
  .description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ccc;
  }

  /* السعر */
  .price {
    font-size: 22px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 25px;
  }

  /* أزرار الطلب والتواصل */
  .btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
  }
  .btn.primary {
    background-color: #d4af37;
    color: #000;
  }
  .btn.primary:hover {
    background-color: #e6c200;
  }
  .btn.secondary {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
  }
  .btn.secondary:hover {
    background-color: #d4af37;
    color: #000;
  }

 
  /* أيقونات التواصل */
  .social-icons {
    display: flex;
    gap: 12px;
  }
  .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d4af37;
    color: #000;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  .social-icons a:hover {
    background: #fff;
    transform: scale(1.2);
  }

  /* حقوق */
  .footer-bottom {
    border-top: 1px solid #222;
    padding-top: 10px;
    font-size: 12px;
    text-align: center;
    color: #777;
    margin-top: 15px;
  }

  /* استجابة للجوال */
  @media(max-width:768px) {
    .product-container {
      flex-direction: column;
    }
    .btn-group {
      justify-content: center;
    }
  }
@media(max-width:768px) {
  .product-container {
    flex-direction: column;
  }

  .btn-group {
    justify-content: center;
  }

  /* جعل الصورة الرئيسية والجاليري في عمود واحد */
  .product-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-image img {
    max-width: 250px;
    order: 1;
    border-radius: 10px;
  }

  /* تحسين عرض الجاليري في الموبايل */
  .product-gallery {
    order: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    width: 90%;
  }

  .product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  .product-gallery img:hover {
    transform: scale(1.05);
  }
}
