/* إضافات لأنماط صفحات المنتجات */

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.product-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-description h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.product-description h4 {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin: 20px 0 10px;
}

.product-description p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.product-description ul {
  list-style-position: inside;
  margin-bottom: 20px;
}

.product-description li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.product-applications {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.product-applications h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.product-applications ul {
  list-style-position: inside;
  margin-top: 15px;
}

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

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.advantage-item {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.advantage-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.product-cta {
  background-color: var(--secondary-color);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.product-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.product-cta p {
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-cta .btn {
  background-color: white;
  color: var(--secondary-color);
}

.product-cta .btn:hover {
  background-color: #f0f0f0;
}

/* التصميم المتجاوب لصفحات المنتجات */
@media (max-width: 768px) {
  .product-details {
    grid-template-columns: 1fr;
  }
  
  .product-description h3 {
    font-size: 1.5rem;
  }
  
  .product-description h4 {
    font-size: 1.2rem;
  }
  
  .product-applications {
    padding: 20px;
  }
  
  .product-cta {
    padding: 30px 20px;
  }
  
  .product-cta h3 {
    font-size: 1.5rem;
  }
}
