.product-detail-section {
  background-image: url('/static/images/goldbackground.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  padding: 4rem 2rem;
}

.product-detail-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 253, 253, 0.37);
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.product-detail-image {
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.no-image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e3cc;
  color:  #1f2f26;;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.product-detail-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color:  #1f2f26;
  margin: 0;
}

.product-detail-name {
  font-family: 'Playfair Display', serif;
  color:  #1f2f26;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color:  #1f2f26;
  margin: 0;
}

.product-detail-description {
  color:  #1f2f26;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quantity-selector label {
  color:  #1f2f26;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.quantity-selector input {
  width: 70px;
  padding: 0.5rem;
  border: 1px solid #968f2b;
  background: transparent;
  color:  #1f2f26;
  text-align: center;
  font-size: 1rem;
}

.add-to-cart-btn {
  width: 100%;
  padding: 1rem;
  background: #022902;
  color: #968f2b;
  border: 1px solid #968f2b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 1.5rem;
}

.add-to-cart-btn:hover {
  background: #968f2b;
  color: #022902;
}

.back-link {
  color:  #1f2f26;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .product-detail-container {
    grid-template-columns: 1fr;
  }
}