/** Shopify CDN: Minification failed

Line 387:0 Unexpected "}"

**/
/* Product Benefits Detail Section Styles */
.product-benefits-detail {
  position: relative;
  overflow: hidden;
  background: var(--gradient-background);
}

.product-benefits-detail .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Product Image Column */
.product-benefits-detail .product-image-column {
  position: relative;
}

.product-benefits-detail .product-showcase-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.product-benefits-detail .showcase-image {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 2px;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Glow Effect */
.product-benefits-detail .glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(25, 24, 128, 0.3) 0%, transparent 70%);
  filter: blur(40px);
 
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Particle Container */
.product-benefits-detail .particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.product-benefits-detail .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #D3A23C;
  border-radius: 50%;
  opacity: 0;

}

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0);
  }
  20% {
    opacity: 1;
    transform: translateY(80%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20%) scale(0.5);
  }
}

/* Content Column */
.product-benefits-detail .benefits-content-column h2 {
  
  color: #1B1B57;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.product-benefits-detail .benefits-content-column h2 em {
  
  color: #191880;
}


.product-benefits-detail .section-subtitle {
  
  font-size:2rem;
  color: #191880;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-benefits-detail .section-subtitle::before {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #191880 0%, #D3A23C 100%);
  border-radius: 2px;
}

.product-benefits-detail .why-content {
  
  
  line-height: 1.7;
  color: #444;
}

.product-benefits-detail .why-content em {
  
  font-weight: 600;
  color: #191880;
}

/* Benefits Section */
.product-benefits-detail .benefits-heading {
  font-family: var(--font-heading-family) !important;
  
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #191880;
  margin-bottom: 2rem;
}

.product-benefits-detail .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Benefit Items */
.product-benefits-detail .benefit-item {
  background: white;
  border-radius: 2px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-benefits-detail .benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  
}

.product-benefits-detail .benefit-item:hover::before {
  left: 100%;
}



.product-benefits-detail .benefit-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.product-benefits-detail .benefit-icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
 
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}


.product-benefits-detail .benefit-icon-wrapper svg {
  color: #191880;
  transition: color 0.3s ease;
}

.product-benefits-detail .benefit-item:hover .benefit-icon-wrapper svg,
.product-benefits-detail .benefit-item.active .benefit-icon-wrapper svg {
  color: white;
}

.product-benefits-detail .custom-icon {
  width: 50px;
  height: 50px;

}

.product-benefits-detail .benefit-title {
  font-family: var(--font-heading-family) !important;
  font-size:2.0rem;
  font-weight:700 !important;
  color: #1B1B57;
  
}

.product-benefits-detail .benefit-content {
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}

.product-benefits-detail .benefit-content em {
  
  font-weight: 600;
  color: #191880;
}

.product-benefits-detail .benefit-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
  color: #191880;
  font-weight: 600;
}

.product-benefits-detail .highlight-marker {
  color: #4CAF50;
  
}

/* CTA Button */
.product-benefits-detail .benefits-cta {
  text-align: center;
}

.product-benefits-detail .benefits-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #191880 0%, #1B1B57 100%);
  color: white;
  font-family: var(--font-heading-family) !important;
  
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-benefits-detail .benefits-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(211, 162, 60, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.product-benefits-detail .benefits-button:hover::before {
  width: 300%;
  height: 300%;
}

.product-benefits-detail .benefits-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(25, 24, 128, 0.3);
  border-radius: 2px;

}

.product-benefits-detail .button-arrow {
  transition: transform 0.3s ease;
}

.product-benefits-detail .benefits-button:hover .button-arrow {
  transform: translateX(5px);
}

/* Research Badge */
.product-benefits-detail .research-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(25, 24, 128, 0.1);
  color: #666;
  
  font-weight: 500;
}

/* Animation Classes */
.product-benefits-detail .animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Styles */
@media screen and (max-width: 749px) {
  .product-benefits-detail .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .product-benefits-detail .product-showcase-image {
    max-width: 500px;
  }
  
  .product-benefits-detail .benefit-item {
    padding: 1.5rem;
  }
  
  .product-benefits-detail .benefit-item:hover,
  .product-benefits-detail .benefit-item.active {
    transform: translateX(0) translateY(-2px);
  }
  
  .product-benefits-detail .benefit-header {
    gap: 1rem;
  }
  
  .product-benefits-detail .benefit-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
 
   
  }
  
  .product-benefits-detail .benefits-button {
  
    padding: 1rem 2rem;
  }
}

/* Heading Sizes */
.product-benefits-detail h0 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.product-benefits-detail h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.product-benefits-detail h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}