


/* === GENERAL STYLES === */

.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 2rem 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.video-container video {
  border: 4px solid pink;
  border-radius: 10px;
}


.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.main-image {
  width: 480px;
  height: 500px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 3px solid #973286;
  transition: opacity 0.4s ease;
}

.thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail.active {
  border-color: #c679cf;
}

.custom-arabic-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-family: 'Lora', sans-serif;
  color: #fff;
  background: linear-gradient(to right, #c28dd4, #fcd8d4);
  border: 1px solid #e0aee0;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: bounceIn 1.2s ease both;
}

.custom-arabic-button:hover {
  background: linear-gradient(to right, #eeaae4, #f9b6b0);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #744783;
}

.section-title {
  color: #973286;
  font-size: 26px !important;
  font-weight: 500;
  animation: slideFadeIn 1s ease both;
}

.collapsible-content {
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.collapsible-content.expanded {
  max-height: 1000px;
}

.read-more-btn {
  margin-top: 10px;
  cursor: pointer;
  color: #973286;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  user-select: none;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #c28dd4;
}

.read-more-btn i {
  transition: transform 0.3s;
}

.read-more-btn.expanded i {
  transform: rotate(180deg);
}

#arabicContent {
  direction: rtl;
  text-align: right;
  font-family: 'Cairo', sans-serif;
}

.cta-buttons {
  text-align: center;
  margin-top: 20px;
  animation: bounceIn 1s ease both;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .product-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .video-container {
    max-width: 400px;
  }

  .thumbnail {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .main-image {
    width: 100%;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: 22px !important;
  }

  .custom-arabic-button {
    padding: 10px 18px;
    font-size: 14px;
  }
}
.bullet-symbol {
  color: #973286;
  font-weight: bold;
  margin-right: 6px;
}

[style*="rtl"] .bullet-symbol {
  margin-left: 6px;
  margin-right: 0;
}
