.product-detail-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(179, 153, 125, 0.2);
  margin-top: 2rem;
  margin-bottom: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: card-appear 0.4s ease-out 0.8s forwards;
}

@keyframes card-appear {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.product-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(179, 153, 125, 0.2);
}

.product-detail-image:hover {
  transform: scale(1.05);
}

.product-detail-title {
  font-family: "Crimson Text", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--coffee-gold);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.product-detail-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coffee-gold),
    transparent
  );
  opacity: 1;
}

.product-detail-description {
  text-align: center;
  color: var(--coffee-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.6;
  font-style: italic;
}

.product-detail-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-display {
  background: linear-gradient(135deg, var(--coffee-gold), var(--coffee-light));
  color: var(--coffee-dark);
  padding: 12px 20px;
  border-radius: 20px;
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-size: 2rem;
  text-shadow: none;
  box-shadow: 0 4px 12px rgba(179, 153, 125, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.price-display:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(179, 153, 125, 0.5);
}

.price-number {
  font-size: 2.2rem;
}

.price-currency {
  font-size: 1.2rem;
  opacity: 0.9;
}

.ingredients-section {
  background: rgba(179, 153, 125, 0.08);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid rgba(179, 153, 125, 0.2);
}

.ingredients-title {
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--coffee-gold);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ingredients-list {
  color: var(--coffee-light);
  line-height: 1.8;
  font-weight: 300;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--coffee-gold);
  color: var(--coffee-dark);
  border: 2px solid var(--coffee-gold);
}

.btn-primary:hover {
  background: var(--coffee-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(179, 153, 125, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--coffee-gold);
  border: 2px solid var(--coffee-gold);
}

.btn-secondary:hover {
  background: var(--coffee-gold);
  color: var(--coffee-dark);
}

@media (max-width: 768px) {
  .product-detail-container {
    margin: 1rem;
    padding: 1.5rem;
  }

  .product-detail-image {
    height: 300px;
  }

  .product-detail-title {
    font-size: 2rem;
  }

  .product-detail-description {
    font-size: 1rem;
  }

  .price-display {
    font-size: 1.5rem;
    padding: 10px 16px;
  }

  .price-number {
    font-size: 1.8rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}
.product-price-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-display-wrapper {
  display: flex;
  justify-content: center;
}

.supplements-section {
  background: rgba(179, 153, 125, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(179, 153, 125, 0.15);
}

.supplements-title {
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--coffee-gold);
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.supplement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(179, 153, 125, 0.3);
}

.supplement-item:last-child {
  border-bottom: none;
}

.supplement-name {
  color: var(--coffee-light);
  font-weight: 300;
  font-size: 1rem;
}

.supplement-price {
  background: rgba(179, 153, 125, 0.2);
  color: var(--coffee-gold);
  padding: 4px 12px;
  border-radius: 15px;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .product-price-container {
    gap: 1rem;
  }

  .supplements-section {
    padding: 1.2rem;
  }

  .supplements-title {
    font-size: 1.2rem;
  }

  .supplement-name {
    font-size: 0.95rem;
  }
}
