/** Shopify CDN: Minification failed

Line 494:13 Expected ":"
Line 494:15 Expected identifier but found "13px"
Line 508:12 Expected identifier but found whitespace
Line 508:13 Unexpected "("

**/
.product__title>* {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.list-menu__item {
    display: flex;
    align-items: center;
    line-height: calc(1 + 0.3 / var(--font-body-scale));
    font-size: 16px;
    font-family: 'Instrument Sans';
    font-weight: 600;
    letter-spacing: 0px;
}

.announcement-bar__message {
    font-size: 15px !important;
    text-align: center;
    padding: 1rem 0;
    margin: 0;
    letter-spacing: .1rem;
    min-height: 3.8rem;
    font-family: 'Instrument Sans';
    font-weight: 700;
}


.card__heading {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Instrument Sans' !important;
    font-size: 15px !important;

    display: -webkit-box;
    -webkit-line-clamp: 2;   /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__inner.ratio {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* optional */
}

.card__inner.ratio img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
}



.accordion__title {
    display: inline-block;
    max-width: calc(100% - 6rem);
    min-height: 1.6rem;
    margin: 0;
    word-break: break-word;
    font-family: 'Cardo';
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.6px !important;
}




.card-quick-add-form {
  margin-top: 10px;
}

.card-quick-add-button {
  width: 100%;
  padding: 10px 14px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.card-quick-add-button:hover {
  background: #333;
}

.card-quick-add-button.sold-out {
  background: #ccc;
  cursor: not-allowed;
}


.card-wrapper {
    color: inherit;
    height: 100%;
    position: relative;
    text-decoration: none;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 1.5px rgb(0 0 0 / 24%);
    margin: 2px !important;

}
.card-wrapper:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    padding: 15px;
}



.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 13px;
}

.card-rating .stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 18px; /* 👈 increase star size here */
  line-height: 1;
}

.card-rating .rating-value {
  color: #333;
  font-weight: 500;
}



    .card__information {
        padding-bottom: 2px !important;
        padding-top: 13px !important;
    }




.product-form__buttons {
    max-width: 100% !important;
    /* border-radius: 21px !important; */
}



.product-form__submit {
    margin-bottom: 1rem;
    background: #b4533c;
    color: white;
    font-size: 13px !important;
    font-family: 'Instrument Sans';
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0px;
    border: 0px !important;
    border-radius: 12px;
    border-color: white !important;
}


.cart-item__name {
    text-decoration: none;
    display: block;
    font-family: 'Instrument Sans';
    font-size: 14px;
    letter-spacing: 0px;
}


.button--secondary {
  border: none !important;
}


.card-quick-add-button {
    width: 100%;
    padding: 10px 14px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
    border-radius: 6px;
    transition: .3s;
    font-family: 'Instrument Sans';
    font-weight: 600;
}

.card-quick-add-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.basket-icon {
    width: 18px;
    height: 18px;
    display: block;
}



.button-content{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.basket-icon{
    width:25px;
    height:25px;
    display:block;
}





/* =========================
   MAIN PRODUCT IMAGE
========================= */

.product-media-container {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  overflow: hidden !important;
  background: #fff !important;
  border-radius: 14px !important;
}

.custom-product-media {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  height: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: hidden !important;
  background: #fff !important;
}

.custom-product-image {
  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;
  object-position: center !important;

  display: block !important;
}

/* =========================
   PRODUCT THUMBNAILS
========================= */

.thumbnail,
.thumbnail img,
.product__media-list .thumbnail img,
.thumbnail-list img {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;
  object-position: center !important;

  background: #fff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

/* Thumbnail Box */

.thumbnail {
  min-height: 90px !important;
  max-height: 90px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 1px solid #e5e5e5 !important;
}

/* Mobile */

@media screen and (max-width: 749px) {

  .product-media-container {
    border-radius: 10px !important;
  }

  .thumbnail {
    min-height: 50px !important;
    max-height: 50px !important;
  }
}


/***

 =========================

.carousel-main {
  max-width: 420px; 
  margin: 0 auto;
}


.carousel-main .carousel-cell.slick-slide {
  aspect-ratio: 1 / 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}


.carousel-main .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}




.carousel-nav {
  max-width: 420px;
  margin: 15px auto 0;
}


.carousel-nav .carousel-cell.slick-slide {
  aspect-ratio: 1 / 1;
  height: 90px !important; 
  padding: 5px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}


.carousel-nav .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
}


.carousel-nav .slick-current img {
  border: 2px solid #000;
}



@media screen and (max-width: 749px) {

  .carousel-main {
    max-width: 100%;
  }

  .carousel-nav {
    max-width: 100%;
  }

  .carousel-nav .carousel-cell.slick-slide {
    height: 70px !important;
  }
}


***/


.product__media-list .media>* {
    overflow: hidden;
    object-fit: contain;
}

button.thumbnail.global-media-settings.global-media-settings--no-shadow {
    /* height: 132px !important; */
    /* max-width: 108px !important; */
    min-height: 100px !important;
    object-fit: contain !important;
}


@media screen and (max-width: 768px) {
  .product__title > * {
    margin: 0;
    font-size: 18px !important;
    line-height: 1.3;
  }
}

.rating-wrapper{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
}

.stars{
  color: #FFC107;
  font-size: 22px;   /* 👈 size increase yahan se hoga */
  letter-spacing: 2px;
  line-height: 1;
}

.rating-value{
  font-weight: 600;
  color: #111;
}

.separator{
  color: #999;
}

.customers{
  color: #555;
}


@media screen and (max-width: 768px) {
.card-quick-add-button {
    width: 100%;
    padding: 10px 14px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
    border-radius: 6px;
    transition: .3s;
    font-family: Instrument Sans;
    font-weight: 600;
}

.basket-icon {
    width: 17px;
    height: 17px;
    display: block;
}
  }

.breadcrumbs a:last-child {
  display: inline-block;
  max-width: 75ch; /* value kam ya zyada kar sakte ho */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

@media screen and (max-width: 749px) {
  .breadcrumbs a:last-child {
    max-width: 25ch !important;
  }
  

  .card-information>.price {
    color: rgb(var(--color-foreground));
    font-size; 13px !important;
       }
}


@media screen and (max-width: 749px) {
    .ai-footer-main-at1view5ozfvrmg9gwaigenblock79ffdd5dzmdat {
        grid-template-columns: 1fr;
        gap: 20px !important;
    }
  .ai-footer-column-at1view5ozfvrmg9gwaigenblock79ffdd5dzmdat.ai-footer-brand-at1view5ozfvrmg9gwaigenblock79ffdd5dzmdat {
    padding: 0px 0px 30px 0px !important;
}
  .ai-footer-column-at1view5ozfvrmg9gwaigenblock79ffdd5dzmdat
Specificity: (0,1,0)
 {
    display: flex;
    flex-direction: column;
    gap: 5px !important;
}
  
}



@media screen and (max-width: 749px) {
    .ai-slider-arrow-prev-anti5m2juse90btn1taigenblock90f7d1afgc3ta {
        left: 10px;
        z-index: 0;
    }
  .card-information>.price {
    color: rgb(var(--color-foreground));
    font-size: 13px !important;
}
}

@media screen and (max-width: 749px) {
    .ai-slider-arrow-next-anti5m2juse90btn1taigenblock90f7d1afgc3ta {
        right: 10px;
        z-index: 0;
    }
}

@media screen and (max-width: 989px) {
    .header--mobile-left .header__heading, .header--mobile-left .header__heading-link {
        text-align: center;
        justify-self: center;
        margin: 0px -25px 0px 0px;
    }
  
.price__regular .price-item--regular {
    margin-right: 0;
    font-size: 16px !important;
    font-weight: 600;
}


}


.foxkit-watermark {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 5px;
    text-align: center;
    display: none !important;
}

@media screen and (max-width: 749px) {
    .ai-slider-arrow-next-anti5m2juse90btn1taigenblock90f7d1afgc3ta {
        right: 10px;
        z-index: 0 !important;
    }
}


@media screen and (max-width: 749px) {
    .ai-slider-arrow-prev-anti5m2juse90btn1taigenblock90f7d1afgc3ta {
        left: 10px;
        z-index: 0 !important;
    }
}





@media screen and (min-width: 990px) {
  .ai-footer-main-at1view5ozfvrmg9gwaigenblock79ffdd5dzmdat {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr 1fr !important;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #c4c4c4;
  }
}