/** Shopify CDN: Minification failed

Line 354:0 Unexpected "}"

**/
/* ================================================
   New Hero Section Styles
   ================================================ */

/* Container & Layout */
.new-hero-section {
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.new-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.new-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1024px) {
  .new-hero-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .new-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ================================================
   Product Carousel Area
   ================================================ */

.product-carousel-area {
  position: sticky;
  top: 20px;
}

.carousel-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-main {
  position: relative;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #89CFF0 0%, #67B7D1 100%);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 5px;
}

/* Carousel Thumbnails */
.carousel-thumbnails {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-top: 10px;
}

.carousel-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f5f5f5;
  padding: 5px;
}

.carousel-thumbnail:hover {
  border-color: #F57EB6;
  transform: scale(1.05);
}

.carousel-thumbnail.active {
  border-color: #FF69B4;
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.carousel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================================================
   Product Details Area
   ================================================ */

.product-details-area {
  color: #fff;
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.rating-stars {
  color:rgb(255, 255, 255);
  font-size: 18px;
}

.rating-text {
  font-size: 13px;
  opacity: 0.9;
}

/* Product Title */
.product-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 26px;
  }
}

/* Features List */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-features li svg {
  flex-shrink: 0;
  color: #fff;
}

/* Pricing */
.product-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.price-compare {
  font-size: 18px;
  text-decoration: line-through;
  opacity: 0.7;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
}

/* Results Banner */
.results-banner {
  background: #EFEEE5;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.results-banner svg {
  flex-shrink: 0;
}

/* ================================================
   Bundle Selector
   ================================================ */

.bundle-selector {
  margin-bottom: 24px;
}

.bundle-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}

.bundle-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .bundle-options {
    grid-template-columns: 1fr;
  }
}

.bundle-option {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bundle-option:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bundle-option.selected {
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}
.bundle-option.popular,
.bundle-option.selected input[type="radio"]{
  z-index: 2;
    accent-color: pink;
    opacity: 1;
    top: 0px;
    right: 0px;
}

}
.bundle-option.popular,
.bundle-option.selected {
  border-color: #FFFFFF;
}

.bundle-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #F3F3F3;
  color:#F17FB1 ;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.bundle-badge .popular-badge{
  background: white;
  color: #F17FB1;
}
.value-badge {
  background: white;
  color: #F17FB1;
}

.bundle-header {
  text-align: center;
  position:relative;
}

.bundle-header input[type="radio"] {
  z-index: 3;
    accent-color: pink;
    opacity: 1;
    top: 0px;
    right: 0px;
    position :absolute;
}

.bundle-header label {
  display: block;
  cursor: pointer;
  color: #333;
}

.bundle-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  color: #000;
}

.bundle-price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
}

.bundle-original-price {
  display: block;
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
}

.bundle-details {
  margin-top: 8px;
  text-align: center;
}

.per-bottle {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.bundle-image {
  margin-top: 12px;
  text-align: center;
}

.bundle-image img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* ================================================
   Purchase Options
   ================================================ */

.purchase-options {
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.purchase-title {
  color:#ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}

.purchase-option {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.purchase-option:hover {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.purchase-option:has(input:checked) {
  border-color: #686868;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-header input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FF1493;
}

.option-header label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #333;
}

.option-name {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.option-price {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.original-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
}

.subscribe-details {
  margin-top: 10px;
  padding-left: 32px;
  font-size: 12px;
  color: #666;
}
.subscribe-details .recommend {
    border: 1px solid deeppink;
    padding: 6px 15px;
    margin-block: 10px 20px;
    display: block;
    width: fit-content;
}

/* ================================================
   Trust Badges
   ================================================ */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
      color: black;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.trust-badge svg {
      flex-shrink: 0;
    color: deeppink;
}

/* ================================================
   Add to Cart Button
   ================================================ */

.add-to-cart-btn {
  width: 100%;
  background:rgb(255, 255, 255);
  color: #f17fb1;
  border: none;
  border-radius: 28px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(255, 20, 147, 0.4);
  margin-bottom: 20px;
}

.add-to-cart-btn:hover {
   background:rgb(255, 255, 255);
  color: #f17fb1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.add-to-cart-btn svg {
  flex-shrink: 0;
}

/* ================================================
   Payment Icons
   ================================================ */

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px;
  background: rgb(255, 255, 255);
  border-radius: 8px;
}

.payment-icons img {
  height: 28px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.payment-icons img:hover {
  opacity: 1;
}

/* ================================================
   Guarantee Badges
   ================================================ */

.guarantee-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;

  border-radius: 12px;
  backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  .guarantee-badges {
    grid-template-columns: 1fr;
  }
  .bundle-image img {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}
}

.guarantee-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
}

.guarantee-item span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ================================================
   Collapsible Sections
   ================================================ */

.collapsible-sections {
  margin-top: 24px;
}

.collapsible-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.collapsible-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s ease;
}

.collapsible-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.collapsible-header[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
}

.collapse-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.collapsible-header[aria-expanded="true"] .collapse-icon {
  transform: rotate(180deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsible-header[aria-expanded="true"] + .collapsible-content {
  max-height: 1000px;
}

.collapsible-inner {
  padding: 0 20px 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ================================================
   Responsive Adjustments
   ================================================ */

@media (max-width: 768px) {
  .new-hero-section {
    padding: 30px 16px;
  }

  .product-carousel-area {
    position: relative;
    top: 0;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-thumbnail {
    width: 60px;
    height: 60px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-icons {
    gap: 6px;
  }

  .payment-icons img {
    height: 20px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 22px;
  }

  .bundle-title,
  .purchase-title {
    font-size: 14px;
  }

  .add-to-cart-btn {
    padding: 16px 24px;
    font-size: 14px;
  }
}
