/** Shopify CDN: Minification failed

Line 11:0 Unexpected "{"
Line 11:1 Expected identifier but found "%"
Line 20:0 Unexpected "{"
Line 20:1 Expected identifier but found "%"

**/
/* Place any CSS overrides in this file. */

{% if template == 'page.voucher-template' %}
  /* #shopify-section-template--19182065254658__1740657881ee1048ab{
     background:url("https://clovedental.in/wp-content/uploads/2025/02/clove-homepage-banner-min.jpg");
    background-size:cover;
    width:100vw;
    background-repeat:no-repeat;
    min-height:480px;
  } */

{% endif %}

body.pop__index .footer-bottom--inner,
body.pop__collection .footer-bottom--inner,
body.pop__search .footer-bottom--inner {
  margin-bottom: 36px !important;
}
span#discounted-price {
  display: none !important;
}

/* Product Features Styles */
/* Product Features Styles */
.product-features {
  margin: 20px 0;
}

.product-features-container {
  display: flex;
  flex-wrap: wrap; /* ✅ allows boxes to wrap to next line */
  gap: 8px;
  width: auto;
}

.product-feature-box {
  display: flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 25px;
  background-color: #f0f0f0;
  min-height: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap; /* ✅ text inside stays in one line */
}

.product-feature-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-text {
  font-weight: 500;
  font-size: 12px;
  color: #000;
  line-height: 1.4;
}

.product-details-wrapper span.discount-percentage {
    font-size: 16px;
    background: #008000;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-features-container {
    flex-wrap: wrap; /* ✅ still wrap nicely on smaller screens */
    gap: 6px;
  }

  .product-feature-box {
    padding: 4px 6px;
  }

  .feature-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-text {
    font-size: 10px;
  }

  .product-details-product-title {
    font-size: 24px;
  }
  .product-details-wrapper #ComparePrice .money{
    font-size: 20px;
    line-height: 24px;
    text-decoration: line-through;
  }
  .product-details-wrapper #ProductPrice .money {
    font-size: 20px;
    line-height: 24px;
  }
  .product-details-wrapper #ComparePrice{
    text-decoration: none;
  }
  .product-details-wrapper .product-price-group {
    flex-direction: row !important;
    gap: 8px !important;
    align-items: center;
}
.product-details-wrapper #ComparePrice.sale-price,
.product-details-wrapper #ComparePrice.on-sale + span + #ProductPrice {
  line-height: 1;
}
.product-details-wrapper span.discount-percentage {
    font-size: 12px;
    background: #008000;
    color: #fff;
    padding: 6px;
    border-radius: 4px;
}
}