/** Shopify CDN: Minification failed

Line 398:0 Unexpected "}"

**/
/* Hide default Shopify headers/footers */
.header-top-section,
.top-column-content,
.header-wrapper,
.header-bottom-section,
.page-inner-width,
.announcement-bar,
footer.footer {
  display: none !important;
}

h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #000 !important;
}
h3 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-bottom: 16px !important;
}
h4 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
}

ul li {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
  display: list-item !important;
}

.custom-list {
  list-style-type: disc !important;
  margin: 10px 0 0 0;
  padding: 0;
  width: 50%;
}
.custom-list li {
  display: list-item !important;
}

.landing-tabs {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 40px 50px;
}

.tab-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.tab-btn {
  padding: 8px 20px;
  background-color: #F2B600;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 10px;
}
.tab-btn:hover {
  background-color:rgb(223, 167, 0);
  color: #fff;
}


/* Tablet (≥ 768px) */
@media (min-width: 768px) {
  .tab-btn {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 12px;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .tab-btn {
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 12px;
  }
}


/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 40px 50px 80px;
}
.product-card {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
}
.product-title {
  font-size: 16px;
  color: #222;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}
.price-button {
  padding: 10px 25px !important;
  background-color: #0b3174 !important;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  width: auto;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.price-button:hover {
  background-color: rgb(10, 37, 84) !important;
}

/* Show more */
.show-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.show-more .btn {
  padding: 10px 25px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  background-color: #0b3174;
  transition: background-color 0.3s ease;
}
.show-more .btn:hover {
  background-color: rgb(10, 37, 84);
}
.btn-primary {
  border: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px 30px 20px;
  }
}

/* Section Area Start */
.mt_5{
    margin-top: 4rem !important;
}

.plr{
    padding:0 15px;
}

.px{
    padding:20px 15px;
}

.section-area {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 50px 50px;
}

.light-blue-bg{
    background-color:#E8F3FD;
    border-radius:20px;
}

.light-yellow-bg{
    background-color:#FFF9EC;
    border-radius:20px;
}

.light-green-bg{
    background-color:#E6F6F4;
    border-radius:20px;
}

/* ✅ Tablet (≤1024px) */
@media (max-width: 1024px) {
  .section-area {
    padding: 30px 30px;
  }
}

/* ✅ Mobile (≤768px) */
@media (max-width: 768px) {
  .section-area {
    padding: 25px 20px;
  }
}

/* ✅ Small Mobile (≤480px) */
@media (max-width: 480px) {
  .section-area {
    padding: 30px 15px;
  }
}


/* Section Area End */

/* Product Grid Start */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 20px;
}

.product-card {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Text */
.product-title {
  font-size: 16px;
  color: #222;
  font-weight: 400;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price-button:hover {
  background-color: #0B3174;
}

/* Mobile */
@media (max-width: 600px) {
  .product-title {
    font-size: 14px;
  }

  .price-button {
    font-size: 14px;
    padding: 6px 16px;
  }

  .product-grid{
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  .product-title {
    font-size: 15px;
  }

  .price-button {
    font-size: 15px;
    padding: 7px 18px;
  }

  .product-grid{
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .product-title {
    font-size: 16px;
  }

  .price-button {
    font-size: 16px;
    padding: 8px 20px;
  }
}

/* Product Grid End */

.sticky-tabs {
  position: sticky;
  top: 0px;
  z-index: 99;
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 480px) {
  .sticky-tabs {
    top: 0px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }
}


.section-area {
  scroll-margin-top: 100px; /* 68px header + ~30px spacing */
}

.banner__media img {
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 767px) {
  .banner__media img {
    height: 140px !important;
  }
}

@media screen and (max-width: 650px) {
    .banner--medium:not(.banner--adapt) {
        min-height: 15rem !important;
    }
}

@media screen and (max-width: 479px) {
    .image-banner .banner--medium:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
        min-height: 15rem !important;
    }
}

@media (min-width: 601px) and (max-width: 1023px) {
    .banner--medium:not(.banner--adapt) {
        min-height: 19rem !important;
    }
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
    .banner--medium:not(.banner--adapt) {
        min-height: 29rem !important;
    }
}



/* @media screen and (min-width: 989px) {
    .banner--medium:not(.banner--adapt) {
        min-height: 25rem !important;
    }
}
@media screen and (max-width: 990px) {
    .banner--medium:not(.banner--adapt) {
        min-height: 30rem !important;
    }
} */
