
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500&display=swap');
/* ====================== */
/* PRODUCT HERO SECTION */
/* ====================== */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap');

/* ====================== */
/* UPDATED PRODUCT HERO SECTION */
/* ====================== */
.product-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-bottom: 60px;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/9Hbs0nBR/taylor-flowe-4n-KOEAQa-Tg-A-unsplash.jpg') center/cover no-repeat;  
  z-index: 0;
}

.product-hero-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
  z-index: 2;
}

.product-hero-content {
  width: 60%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px); /* Increased blur */
  -webkit-backdrop-filter: blur(30px); /* Increased blur */
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  margin-top: 6rem; /* Subtle downward shift */
  transform: translateY(40px); /* Smooth animation */
}

.product-hero h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-hero h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-logo {
  max-height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.product-hero-image {
  display: none; /* Hide the separate image since we're using background */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .product-hero-content {
    margin-top: 30px; /* Less push on tablets */
    transform: translateY(40px);
  }
  
  .product-hero h1 {
    font-size: 2rem;
  }
  
  .product-hero h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .product-hero {
    min-height: 500px;
  }
  
  .product-hero-content {
    margin-top: 20px; /* Even less on mobile */
    transform: translateY(20px);
  }
  
  .product-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .product-hero {
    min-height: 400px;
  }
  
  .product-hero-content {
    padding: 20px;
  }
  
  .product-hero h1 {
    font-size: 1.6rem;
  }
  
  .product-hero h2 {
    font-size: 1.1rem;
  }
}