
  .product-card-wrapper {
  display: flex;
  gap: 48px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.product-images {
  text-align: center;
  max-width: 300px;
}

.main-image {
  width: 100%;
  max-width: 260px;
  height: 293px;
  object-fit: contain;
  background: #eaf2fc;
  border-radius: 15px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.image-thumbnails {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.thumbnail {
  width: 60px;
  height: 40px;
  object-fit: contain;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #f2f7ff;
  cursor: pointer;
  transition: border 0.2s;
}

.thumbnail:hover,
.thumbnail.selected {
  border-color: #2995de;
}

.product-info {
  flex: 1;
  max-width: 550px;
}

.product-info h2 {
  font-size: 1.8rem;
  margin-bottom: 0.3em;
  color: #1c293b;
}

.product-rating {
  font-size: 1rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.product-rating span {
  color: #444;
  font-weight: 500;
  margin-left: 6px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2995de;
  margin-bottom: 14px;
}

.big-desc {
  font-size: 1.1rem;
  color: #2d3e50;
  margin-bottom: 20px;
}

.features-list {
  padding-left: 18px;
  margin-bottom: 20px;
}

.features-list li {
  margin-bottom: 6px;
  color: #3a4a5e;
}

.in-the-box {
  margin: 24px 0;
}

.in-the-box h4 {
  margin-bottom: 6px;
  color: #227cc8;
}

.in-the-box ul {
  list-style: disc;
  padding-left: 20px;
  color: #2c3e50;
}

.additional-info h4 {
  color: #227cc8;
  margin-top: 20px;
  margin-bottom: 6px;
}

.additional-info p,
.additional-info ul li {
  color: #334;
  font-size: 0.97rem;
  line-height: 1.5;
}
