/* Enhanced Product Details Styles */
.product-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  background-color: #fcfcfc;
}

.product-details.expanded {
  max-height: 2000px;
  opacity: 1;
  padding: 0;
  margin-bottom: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.details-container {
  padding: 20px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}


.details-header {
  margin-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.details-header h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #212B36;
}

.details-meta {
  display: flex;
  gap: 15px;
  color: #637381;
  font-size: 14px;
}

.details-section {
  margin-bottom: 20px;
}

.details-section h4 {
  font-size: 15px;
  margin: 0 0 8px 0;
  color: #212B36;
  font-weight: 500;
}

.properties-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0 0 0 20px;
}

.details-description {
  color: #637381;
  line-height: 1.5;
  font-size: 14px;
}

.details-description img {
  max-width: 100%;
  height: auto;
}

.details-tags, .details-variants {
  color: #637381;
  font-size: 14px;
}

.details-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.details-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
} 