/** Shopify CDN: Minification failed

Line 89:9 Expected identifier but found whitespace
Line 89:11 Unexpected "{"
Line 89:20 Expected ":"
Line 89:49 Expected ":"
Line 156:8 Expected identifier but found whitespace
Line 156:10 Unexpected "{"
Line 156:19 Expected ":"
Line 276:11 Expected identifier but found whitespace
Line 276:13 Unexpected "{"
Line 276:22 Expected ":"
... and 39 more hidden warnings

**/


/* CSS from section stylesheet tags */
.feature-grid-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; /* Overlay ke liye */
}

/* Overlay */
.feature-grid-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  pointer-events: none;
}

.feature-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative; /* content overlay ke upar rahe */
  z-index: 2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}
.feature-item {
  text-align: center;
}
.feature-item img {
  max-width: 80px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-item h3 {
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding-top: 20px;
}
.custom-background-video-ovrlay-content {
    max-width: 1200px;
    margin: 30px auto;
}
.video-background-section {
    background-image: url(/cdn/shop/files/Onward_measuring_on_scale.jpg?v=1753394084);
    background-size: cover;
    background-repeat: no-repeat;
}
.video-background-section {
  position: relative;
  height: {{ section.settings.section_height }}px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* You can change this */
  z-index: 1;
  pointer-events: none; /* So it doesn't block clicks */
}
/* Swiper container styles */
.custom-background-video-ovrlay-content {
  width: 100%;
  height: 100%;
  margin-top: 20px;
  padding-bottom: 30px;
}
.video-background-subheading-extra {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
  }
/* Individual block styles */
.custom-background-video-iems {
  width: 181px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px;
  margin: 0 auto;
}

/* SVG container - fixed to prevent cutting */
.custom-background-video-iems svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.custom-background-video-iems img {
  width: 100px;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.custom-background-video-iems h3 {
  font-size: 11px;
  font-weight: bold;
  line-height: 140%;
  width: 90%;
  text-align: center;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  color: {{ section.settings.heading_color }};
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.video-background-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top:100px;
}

.rating-stars {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

.rating-stars svg {
  width: 20px;
  height: 20px;
}

.video-background-heading {
    margin-bottom: 1.5rem;
    width: 80%;
    margin: 0 auto;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0px !important;
    margin-top: -40px;
}


.video-background-subheading {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
  
.btn-container{
  display:flex;
  gap:40px;
}
  
.video-background-cta {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-size: 18px;
}

a.video-background-cta:hover {
  transform: translateY(-2px);
  background:#fff !important;
  color: #000  !important;
}

a.video-background-cta {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


/* Responsive Styles */
@media (max-width: 768px) {
  .video-background-heading {
    margin-top: -10px;
  }

  .btn-container {
    display: flex;
    gap: 20px !important;
    flex-direction: column;
  }
  .rating-stars span {
    font-size: 13px !important;
    text-transform: uppercase;
  }
  .video-background-section {
    height: {{ section.settings.section_height | times: 0.7 | round }}px;
  }
  
  .video-background-content {
    gap:15px;
  }
  .custom-background-video-ovrlay-content {
    margin: 0;
    }
  
  .video-background-heading {
    width: 100%;
    font-size: 32px !important;
  }

  .video-background-subheading {
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 26px;
  }
  
  .video-background-cta {
    padding: 0.75rem 1.8rem;
    font-size: 16px;
    text-transform:uppercase;
  }
  
  .custom-background-video-iems {
    width: 154px;
    height: 162px;
  }
  
  .custom-background-video-iems img {
    width: 80px;
  }
  
  .rating-stars svg {
    width: 16px;
    height: 16px;
  }
}

  .circle-desktop {
  display: block;
}
.circle-mobile {
  display: none;
}

/* Mobile media query */
@media screen and (max-width: 768px) {
  .circle-desktop {
    display: none;
  }
  .circle-mobile {
    display: block;
  }
}
.product-carousel-section {
  padding: 80px 20px;
  background: #64a4af;
  text-align: center;
}
.carousel-heading {
  font-family: 'Tenor Sans';
  font-size: 40px !important;
  font-weight: 700;
  margin-bottom: 30px;
  color:#fff;
  text-transform: uppercase;
}
.product-slide {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.product-image img {
  width: 100%;
  border-radius: 8px;
}
.product-info {
  padding: 10px 0;
}
.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
}
.product-price {
  color: #222;
  font-weight: bold;
  margin-bottom: 10px;
}
.add-to-cart-btn {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
.product-badge-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.product-badge {
  display: inline-block;
  background-color: red;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 5px;
}
.product-badge.new {
  background-color: #0073e6;
}
.color-swatches {
  display: flex;
  gap: 5px;
  margin: 10px 0;
  justify-content: center;
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-block;
}
.product-description {
  font-size: 14px;
  color: #555;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
  .product-image img {
    width: 60%;
    margin: 0px auto;
}

.product-info h3 {
    font-size: 16px;
    color: #4a8290 !important;
    line-height: 1.4em;
}

.product-info h3:hover {
    color: #f28c82 !important;
}

.product-description {
    color: black !important;
    font-size: 16px;
}

.product-price {
    font-size: 25px;
    color: #000 !important;
}
@media(max-width:767px){
    .carousel-heading {
    font-size: 30px !important;
  }
}
@media(max-width:786px){
  .hero-content h2 {
    font-size: 30px;
  }
  .hero-banner .hero-image img {
    height: 350px;
    object-fit: cover;
  }
  .hero-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 80px 0;
  }
}
.hero-banner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 80px 0;
}
.hero-banner .hero-image {
  flex: 1 1 45%;
}
.hero-banner .hero-image img {
    width: 100%;
    border-radius: 10px;
    height: 500px;
    object-fit: cover;
    animation: fadeInUp 1s ease forwards;
}
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.hero-banner .hero-content {
  flex: 1 1 45%;
}
.hero-content h6 {
  font-size: 14px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
.hero-content h2 {
    font-size: 35px;
    font-weight: 700;
    margin: 10px 0 20px;
}
.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555 !important;
  line-height: 1.6;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 45%;
}
.hero-feature img {
  width: 40px;
  height: 40px;
}
.hero-button a {
    display: inline-block;
    background: #64a4af;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    animation: pulse 1.5s infinite;
    color: white;
}
.hero-button a:hover {
    background: #EAA947 !important;
    color: white;
}
.product-slider-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background-color: {{ section.settings.section_bg }};
  text-align: center;
}
.product-slider-heading {
  font-size: {{ section.settings.heading_size }}px;
  color: {{ section.settings.heading_color }};
  margin-bottom: 10px;
}
.product-slider-description {
  font-size: {{ section.settings.description_size }}px;
  color: {{ section.settings.description_color }};
  margin-bottom: 30px;
}
.swiper-product-wrapper {
  width: 100%;
  padding: 10px 0;
}
.product-slide {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.product-slide .product-title {
  margin: 10px 0 5px;
}
.product-slide .product-price {
  font-weight: bold;
}
.product-slide .product-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: {{ section.settings.cta_bg }};
  color: {{ section.settings.cta_text }};
  border-radius: 4px;
  transition: 0.3s ease;
  text-decoration: none;
}
.product-slide .product-cta:hover {
  background-color: {{ section.settings.cta_bg_hover }};
  color: {{ section.settings.cta_text_hover }};
}
.trust-grid-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}
.trust-grid-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}
.trust-item {
  text-align: center;
}
.trust-item img {
  max-width: 120px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.trust-item h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding-top: 20px;
  line-height: 25px;
}
.trust-item p {
  color: white;
  font-size: 14px;
  line-height: 22px;margin-bottom:20px;
}p.trust-section-subheading {
    padding-bottom: 40px;