/* Product Page Styles */



/* ------------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------------ */

.product-hero-content.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-hero-title {
      font-size: clamp(1.125rem, 1.0015rem + 0.9884vw, 2.1875rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.product-hero-subtitle {
  font-size: clamp(0.875rem, 0.7914rem + 0.3822vw, 1.25rem);
  color: #fff;
  max-width: 700px;
  margin: 0 auto 50px;
}

.product-hero-image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid #333;
}

.product-hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

