/* Product Details Page Styles */
.product-details {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-image {
  position: sticky;
  top: 80px;
  overflow: hidden;
  border-radius: 12px;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.product-image:hover img {
  transform: scale(1.03);
}

.frame.large {
  padding: 20px;
}

.frame.large::after {
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  text-align: left;
}

.product-info .price {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #21a7c9;
  font-weight: 600;
  text-align: left;
}

.product-info .rating {
  margin-bottom: 30px;
}

.product-description,
.product-details-list {
  margin-bottom: 40px;
}

.product-description h2,
.product-details-list h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  color: #333;
  text-align: left;
}

.product-description p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

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

.product-details-list li {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
  text-align: left;
}

.product-details-list li strong {
  color: #222;
  margin-right: 8px;
}

.btn-add-to-cart {
  width: 100%;
  padding: 1rem;
  background-color: #21a7c9;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-add-to-cart:hover {
  background-color: #21a7c9;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(33, 167, 201, 0.4);
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-image {
    position: relative;
    top: 0;
  }
}

@media (max-width: 576px) {
  .product-info h1 {
    font-size: 2rem;
  }

  .product-info .price {
    font-size: 1.5rem;
  }
}
