/* القائمة الخارجية */
.product-menu {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* السهم السفلي */
.product-menu::after {
  content: "\25BC";
  font-size: 13px;
  color: #333;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* القائمة الداخلية */
.product-menu-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding: 12px 16px;
  border-radius: 5px;
}

/* خانات القائمة الداخلية */
.product-menu-content li {
  list-style: none;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.product-menu-content li:last-child {
  border-bottom: none;
}

.product-menu-content li a {
  text-decoration: none;
  color: #333;
}

.product-menu-content li a:hover {
  color: #337ab7;
}

/* عند الضغط على القائمة الخارجية */
.product-menu:hover.product-menu-content {
  display: block;
}

.product-menu:hover::after {
  transform: translateY(-50%) rotate(180deg);
}

/* تصميم خاص لقائمة الوصف */
.product-description {
  padding: 20px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.product-description h3 {
  margin-top: 0;
}

/* تصميم خاص لقائمة المزايا */
.product-features {
  padding: 20px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  margin-bottom: 10px;
}

.product-features li::before {
  content: "\2023";
  font-size: 20px;
  color: #337ab7;
  margin-right: 10px;
}

/* تصميم خاص لقائمة التقييمات */
.product-reviews {
  padding: 20px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.product-reviews h3 {
  margin-top: 0;
}

.product-reviews ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-reviews li {
  margin-bottom: 10px;
}

.product-reviews li::before {
  content: "\2023";
  font-size: 20px;
  color: #337ab7;
  margin-right: 10px;
}