:root {
  --wine: #5b2c2c;
  --gold: #cba35c;
  --cream: #fdf8f5;
  --text: #3b2f2f;
}

/* ----------------------------
   PRODUCT DETAILS SECTION
----------------------------- */
.product-details {
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #fff 0%, #fdf8f5 100%);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.product-details:hover {
  transform: translateY(-3px);
}

/* Title */
.product-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--wine);
  font-size: 2.6rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* SKU */
.product-sku {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #a07c4f;
  font-weight: 600;
}

/* Description */
.product-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #4b3f3f;
  font-family: 'Lato', sans-serif;
}

/* Price Box */
.price-box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 20px rgba(203,163,92,0.08);
  position: relative;
  transition: all 0.3s ease;
}
.price-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.price-box:hover {
  box-shadow: 0 10px 30px rgba(203,163,92,0.2);
}

/* Prices */
.price {
  font-size: 2rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.original-price {
  text-decoration: line-through;
  font-size: 1rem;
  color: #999;
  margin-bottom: 5px;
  display: block;
}

/* CTA */
.coming-soon-btn {
  background: linear-gradient(145deg, var(--gold), #a07c4f);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(203,163,92,0.25);
  transition: all 0.3s ease;
}
.coming-soon-btn:hover {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 6px 18px rgba(91,44,44,0.25);
  transform: translateY(-3px);
}

/* Meta Info */
.product-meta {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
  font-size: 0.95rem;
  color: var(--text);
}
.availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}