/** Shopify CDN: Minification failed

Line 423:3 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.section-switcher-container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 40px 20px;
}
.nit-tabs-container {
  margin:0 auto;
  margin-top:20px !important;
  width:100%;
  max-width:1280px;
}
.nit-tab-buttons {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.nit-tab-button {
  padding: 8px 16px;
  background-color: white;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.nit-tab-content {
  display: none;
}
.nit-tab-content.active {
  display: block;
  padding: 0 10px;
}
.nit-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.nit-product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  position: relative;
  text-align: center;
  transition: transform 0.3s;
}
.nit-product-card:hover {
  transform: translateY(-3px);
}
.nit-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FFD700;
  color: black;
  font-weight: bold;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
}
.nit-rating {
  margin-top: 8px;
  font-size: 14px;
  color: #f5a623;
}
.nit-buy-now {
  display: flex;
  color:white !important;
  justify-content: space-between;
  background-color:black ;
  padding: 8px;
  border-radius: 8px;
}
.nit-buy-now svg {
  width: 16px;
  height: 16px;
}

.nit-product-price {
  color: white !important;
  margin:0px !important;
  font-weight: bold;
}
.nit-card-information {
  margin-top: auto;
}

.nit-buy-now:hover{
  color:white;
}

@media screen and (max-width:768px){
  .nit-product-grid{
     grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .nit-buy-now {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background: #0a0a0a !important;
    color: #fff !important;
    text-align: center;
  }

  .nit-buy-now span,
  .nit-buy-now .nit-product-price {
    color: white !important;
    line-height: 1.2;
  }

  .nit-buy-now .nit-product-price {
    margin-left: auto;
    font-weight: 500;
    font-size: 14px !important;
  }
}
.cst-tabs-container {
  margin: 0 auto;
  margin-top: 20px !important;
  width: 100%;
  max-width: 1280px;
}

.cst-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cst-tab-button {
  position: relative;
  font-size: 0; /* hide inline text */
  padding: 8px 16px;
  border: 1px solid #a57f7a !important;
  width: 40px;
  height: 40px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cst-tab-tooltip {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #7b2b26;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cst-tab-button:hover .cst-tab-tooltip {
  opacity: 1;
}

.cst-tab-button.active {
  border: 2px solid #c23c3c;
  box-shadow: 0 0 0 2px rgba(194, 60, 60, 0.3);
}

.cst-tab-content {
  display: none;
}

.cst-tab-content.active {
  display: block;
  padding: 0 10px;
}

.cst-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 40px;
  gap: 20px;
}

.cst-product-card {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  position: relative;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cst-product-card:hover {
  transform: translateY(-3px);
}

.cst-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FFD700;
  color: black;
  font-weight: bold;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
}

.cst-rating {
  margin-top: 8px;
  font-size: 14px;
  color: #f5a623;
}

.cst-buy-now {
  display: flex;
  color: black;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  background-color: #f7f7f7;
  padding: 8px;
  border-radius: 8px;
}

.cst-buy-now svg {
  width: 16px;
  height: 16px;
}

.cst-product-price {
  color: black;
  font-weight: bold;
}

.cst-card-information {
  margin-top: auto;
}

.cst-view-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c23c3c;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cst-view-more-button:hover {
  background-color: #a53030;
}


@media screen and (max-width: 768px) {

  .cst-tab-buttons {
  
  gap: 30px 10px !important; }
  .cst-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tabs-container {
  margin:0 auto;
  margin-top:20px !important;
  width:100%;
  max-width:1280px;
}
.tab-buttons {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tab-button {
  padding: 8px 16px;
  background-color: white;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  padding: 0 10px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

  .product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.product-card {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  position: relative;
  text-align: center;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-3px);
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FFD700;
  color: black;
  font-weight: bold;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
}
.rating {
  margin-top: 8px;
  font-size: 14px;
  color: #f5a623;
}
.buy-now {
  display: flex;
  color:white !important;
  justify-content: space-between;
  background-color:black ;
  padding: 8px;
  border-radius: 8px;
}
.buy-now svg {
  width: 16px;
  height: 16px;
}

.product-price {
  color: white !important;
  margin:0px !important;
  font-weight: bold;
}
  .card-information {
  margin-top: auto;
}

.buy-now:hover{
  color:white;
}

@media screen and (max-width:768px){
  .product-grid{
     grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .buy-now {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background: #0a0a0a !important;
    color: #fff !important;
    text-align: center;
  
  }

  .buy-now span,
  .buy-now .product-price {
    color: white !important;
    line-height: 1.2;
  }

  .buy-now .product-price {
    margin-left: auto;
    font-weight: 500;
     font-size: 14px !important;
  }