/** Shopify CDN: Minification failed

Line 875:30 Expected identifier but found bad string token
Line 875:32 Unterminated string token

**/


/* CSS from section stylesheet tags */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  background: #fefaf6;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  scroll-behavior: smooth;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 auto;
  padding: 0 8px;
  box-sizing: border-box;
}

.carousel-card img {
  width: 100%;
  border-radius: 8px;
  pointer-events: none;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 0.7rem 1rem;
  z-index: 10;
  display: none;
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

@media (min-width: 501px) {
  .carousel-nav {
    display: block;
  }

  .carousel-card {
    width: 20%;
  }
}

@media (max-width: 500px) {
  .carousel-card {
    width: 50%;
  }

  .carousel-track {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }
}
.gallery-container {
  padding: 2rem;
}
.gallery-filters {
  padding: 50px 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.gallery-filters button {
  padding: 10px !important;
  height: 60px;
  font-size: 15px;
  border: none;
  background: #9b1d41;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
}
.gallery-filters button.active {
  background: #333;
  color: #fff;
}
.gallery-grid {
  width: 85vw;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.5rem;
}
.gallery-grid-item {
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.gallery-grid-item img,
.gallery-grid-item video {
  object-fit: inherit;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}
.gallery-overlay.active {
  display: flex;
}
.gallery-overlay-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}
.gallery-overlay-content img,
.gallery-overlay-content video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.gallery-overlay .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}
.gallery-prev {
  left: 10px;
}
.gallery-next {
  right: 10px;
}

/* CTA button after gallery */
.gallery-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}
.gallery-cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #9b1d41;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.gallery-cta-button:hover {
  background-color: #7c1635;
}

/* Mobile filter drawer */
.gallery-filters button.active,
.mobile-filter-buttons button.active {
  background-color: #333 !important;
  color: #fff !important;
}

.mobile-filter-wrapper {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
.toggle-filter-btn {
  background-color: #9b1d41;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}
.mobile-filter-buttons {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}
.mobile-filter-buttons button {
  min-height:40px;
  border-radius: 30px;
  background-color: lavenderblush;
  color: black;
}

@media (max-width: 768px) {
  .gallery-filters {
    display: none;
  }
  .mobile-filter-wrapper {
    display: flex;
  }
  .gallery-grid {
    grid-template-columns: 50% 2fr;
    width: 90vw;
  }
}
@media (max-width: 500px) {
  .gallery-filters button {
    width: 400px;
  }
}
@media(min-width:900px) and (max-width:1300px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}
.category-grid-section {
  background-color: #;
  padding: 60px 20px;
}

.category-grid-wrapper {
  display: grid;
  gap: 30px;
  max-width: 94vw;
  
  margin: auto;
}

.category-card {
  background-color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 10px #686648;
  min-width: 200px;
  flex-shrink: 0;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-icon img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.category-title {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .category-grid-wrapper {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .category-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 310px;
  }
}

.bold-txt {
  color: #2B2D41;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.txt-bold {
  color: #9b1d41 !important;
  font-size: 30px;
  font-weight: 900;
}

.tx-tx {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-bottom: 30px;
}
.category-grid-section {
  background-color: #;
  padding: 60px 20px;
}

.category-grid-wrapper {
  display: grid;
  gap: 30px;
  max-width: 94vw;
  
  margin: auto;
}

.category-card {
  background-color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 10px #686648;
  min-width: 200px;
  flex-shrink: 0;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-icon img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.category-title {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .category-grid-wrapper {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .category-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 310px;
  }
}

.bold-txt {
  color: #2B2D41;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.txt-bold {
  color: #9b1d41 !important;
  font-size: 30px;
  font-weight: 900;
}

.tx-tx {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-bottom: 30px;
}
.instagram-gallery-section {
  padding: 40px 20px;
  text-align: center;
}

.instagram-gallery-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.instagram-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  justify-content: center;
}

.instagram-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.instagram-card:hover {
  transform: scale(1.03);
}

.instagram-card img,
.instagram-card video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.instagram-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-card:hover .instagram-caption {
  opacity: 1;
}
.product-image-wrapper {
    position: relative;
  }

  .product-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 0, 0, 0.7); /* Red background with opacity */
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
  }

      .product-image-wrapper {
      position: relative;
    }

    .product-image-wrapper img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 12px;
    }

    .discount-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: rgba(255, 0, 0, 0.7); /* Red background with opacity */
      color: white;
      font-weight: bold;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 14px;
    }

        .product-image-wrapper {
        position: relative;
      }

      .product-image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
      }

      .discount-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: rgba(255, 0, 0, 0.7); /* Red background with opacity */
        color: white;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
      }

            .two-line-truncate {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            height: 2.8em; /* adjust based on font-size/line-height */
          }



                    .custom-tabs-section {
                      padding: 40px 20px;
                    }
                    .tabs-header-wrapper {
                      display: flex;
                      justify-content: space-between;
                      align-items: center;
                      flex-wrap: wrap;
                      margin-bottom: 20px;
                    }
                    .tabs-header {
                      display: flex;
                      gap: 20px;
                      flex-wrap: wrap;
                    }

                    .tab-btn {
                      font-weight: bold;
                      background: none;
                      border: none;
                      padding: 10px 20px;
                      cursor: pointer;
                      font-size: 18px;
                      border-bottom: 3px solid transparent;
                    }
                    .tab-btn.active {
                      color: #0056ff;
                      border-color: #0056ff;
                    }
                    .top-slider-controls {
                      display: flex;
                      gap: 10px;
                    }
                    .top-slider-controls button {
                      background: #0056ff;
                      color: white;
                      border: none;
                      padding: 8px 12px;
                      border-radius: 4px;
                      cursor: pointer;
                    }

                    .tabs-wrapper .tab-content {
                      display: none;
                    }
                    .tabs-wrapper .tab-content.active {
                      display: block;
                    }
                    .tab-inner {
                      display: flex;
                      flex-wrap: wrap;
                      gap: 20px;
                    }
                    .banner {
                      height:250px;
                      flex: 1 1 300px;
                      position: relative;
                    }
                    .banner img {
                      width: 100%;
                      height: auto;
                      border-radius: 8px;
                    }
                    .banner-text {
                      position: absolute;
                      bottom: 20px;
                      left: 20px;
                      color: white;
                    }
        @media(min-width:350px) and (max-width:420px){
          .banner-text {
                      position: absolute;
                      bottom: 60px;
                      left: 20px;
                      color: white;
                    }

        }
                    .banner-btn {
                      background: #0056ff;
                      color: white;
                      padding: 10px 20px;
                      display: inline-block;
                      margin-top: 10px;
                      text-decoration: none;
                      border-radius: 5px;
                    }
                    .product-slider {
                      flex: 4 1 200px;
                      overflow: hidden;
                      position: relative;
                    }
                    .slider-inner {
                      display: flex;
                      transition: transform 0.5s ease;
                    }
                    .product-card {
                      flex: 0 0 25%;
                      box-sizing: border-box;
                      padding: 0 20px 20px 20px !important;
                    }
                    .product-card a {
                      text-decoration: none;
                      color: inherit;
                    }
                    .product-card img {
          width: 100%;
          height: 0px; /* Fixed height for all product images */
          object-fit: contain; /* Crops image while maintaining aspect ratio */
          border-radius: 6px;
        }
        @media (max-width: 768px) {
          .product-card img {
            height: 130px;
          }
        }
  @media (max-width: 1600px) {
          .product-card img {
            height: 120px !important;
          }
        }
        @media (max-width: 450px) {
          .product-card img {
            height: 200px !important;
          }
        }

                    .product-info h4 {
                      font-size: 16px;
                      margin: 8px 0;
                    }
                    .product-info p {
                      font-weight: bold;
                      color: #000;
                    }
                    .slider-controls {
                      display: none; /* Hidden now */
                    }

                    @media(max-width: 991px) {
                      .product-card { flex: 0 0 100% !important;}
                    }
   @media(max-width: 1600px) {
                      .product-card { flex: 0 0 50% !important;}
                    }
  @media(max-width: 1030px) {
                      .product-card { flex: 0 0 50% !important; }
                    }
  @media(max-width: 800px) {
                      .product-card { flex: 0 0 100% !important; }
                    }

                    @media(max-width: 600px) {
                      .product-card { flex: 0 0 100% !important; }
                    }

                    .custom-tabs-section {
                    width: 70%;
                    margin: 0 auto;
                    padding: 40px 20px;
                  }

                  @media (max-width: 1550px) {
                    .custom-tabs-section {
                      width: 80%;
                    }
                  }
                   @media (max-width: 1324px) {
                    .custom-tabs-section {
                      width: 90%;

                    }
                  }
                  @media (max-width: 1178px) {
                    .custom-tabs-section {
                      width: 95%;

                    }
                  }
                @media(min-width:420px) and (max-width:430px){
                   .prev-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-388px;

                  }
                }
                 @media(min-width:420px) and (max-width:430px){
                   .next-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-10px;

                  }
                }
               @media(min-width:400px) and (max-width:420px){
                   .prev-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-370px;

                  }
                }
                 @media(min-width:400px) and (max-width:420px){
                   .next-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-10px;

                  }
                }
               @media(min-width:380px) and (max-width:400px){
                   .prev-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-350px;

                  }
                }
               @media(min-width:360px) and (max-width:367px){
                   .prev-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-330px;

                  }
                }
              @media(min-width:360px) and (max-width:367px){
                   .next-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-10px;

                  }
                }
               @media(min-width:350px) and (max-width:367px) {
                  .tabs-header{
                    gap:0px;
                  }



                   .prev-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-330px;

                  }
                }
              @media(min-width:350px) and (max-width:367px){
                   .next-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:0px;

                  }
                }
                 @media(min-width:380px) and (max-width:400px){
                   .next-slide{
                    position:absolute;
                    z-index:10;
                    margin-top:450px;
                     margin-left:-10px;

                  }
                }
                .product-stock-status {
                font-size: 14px;
                font-weight: bold;
                margin-top: 10px;
              }

              .in-stock {
                color: green;
              }

              .out-of-stock {
                color: red;
              }
              .product-category {
                font-size: 14px;
                color: #777;
                margin-top: 5px;
              }

              .product-rating {
                font-size: 14px;
                color: #FFD700; /* Gold color for stars */
              }

              .rating-stars i {
                margin-right: 2px;
              }

              .rating-stars .fa-star {
                color: #FFD700; /* Full star */
              }

              .rating-stars .fa-star-o {
                color: #ccc; /* Empty star */
              }

              .original-price {
                text-decoration: line-through;
                color:#0056ff;
                margin-right: 5px;
              }

              .discounted-price {
                color: #0056ff;
                font-weight: bold;
              }

              .regular-price {
                color:#0056ff;";
              }
                @media(min-width: 600px) and (max-width:769px) {
              .banner-text {
                margin-bottom: 30px;
                position: absolute;
                bottom: 20px;
                left: 20px;
                color: white;
            }

              }
                .bold-txt{

               color:#2B2D41;
               font-size:30px;
               font-weight:900;

             }
             .txt-bold{

               color:#0036FF;
               font-size:30px;
               font-weight:900;
             }
             .txt-txt, .asdf{
               display:flex;


               justify-content: center;
             }
             .tx-tx{
               display:flex;
            justify-content: center;
             }

        /* its testing 23.04.2025 13.36 */