/** Shopify CDN: Minification failed

Line 433:1 Expected "}" to go with "{"

**/
.image-grid {
  display: grid;
  gap: 6px;
}
.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.custom-alert.hidden {
  display: none;
}

.custom-alert {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-alert__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.custom-alert__box {
  position: relative;
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  z-index: 10000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.custom-alert__box button {
  margin-top: 15px;
  padding: 8px 16px;
  background: red;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.custom-alert-message {
  font-size:24px;
}
.cart__item-price-col {
  display: flex;
  align-items: center;
  font-size:16px;
  gap: 6px; /* spacing between items */
  justify-content: flex-end; /* right-align */
  flex-wrap: nowrap;
}

.cart__item-price-col .cart__price,
.cart__item-price-col .cart__discount {
  white-space: nowrap;
}

.cart-buttons {
  font-size:16px;
}


.cart__breakdown .cart__item-row {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
}
.cart__final-price {
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #eee;
  padding-top: 5px;
}

/* App Download Popup Styles */
.app-download-popup {
  position: fixed;
  width: 50%;
  top: 0;
  left: 0;
  right: 0;
  background-color: #E4332D;
  color: #FFFFFF;
  padding: 15px 5px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  font-family: Arial, sans-serif;
  margin: auto;
}

.app-download-popup img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.app-download-popup-content {
  display: flex;
  align-items: center;
  font-family: Tenor sans-serif;
}

.app-download-popup a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  margin-left: 10px;
}

.app-download-popup button {
  background: white;
  color: #E4332D;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  margin-left: 15px;
}

.app-download-popup .close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  margin-left: 15px;
}

.app-download-popup-content img {
  margin-right: 15px;
}

/* WhatsApp Floating Button */
#whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: transparent;
}

#whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* Header Adjustments */
.header-item--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buckscc-currency-box {
  margin-bottom: 10px;
  text-align: center;
}

.logo-wrapper {
  text-align: center;
}

.header-item.header-item--navigation.text-center {
  padding-top: 50px;
}

.header-item.header-item--icons {
  padding-top: 50px;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
  .app-download-popup {
    width: 100%;
  }

  .header-item.header-item--navigation.text-center,
  .header-item.header-item--icons {
    padding-top: 0px !important;
  }
}

/* Wishlist Button Styling */
.wishlist-btn {
  padding: 15px 30px;
}

/* Homepage Section Custom Styles */
/* Featured Collections - hide span elements */
#shopify-section-template--22544267510078__featured_collections_zWz3TU span {
  display: none;
}

/* Featured Collection Grid */
#shopify-section-template--22544267510078__featured_collection_jacgTF .index-section {
  margin: 30px 0px;
}

#shopify-section-template--22544267510078__featured_collection_jacgTF .section-header {
  margin-bottom: 30px;
}

#shopify-section-template--22544267510078__featured_collection_jacgTF .grid {
  padding: 0px 0px 0px 15px;
}

#shopify-section-template--22544267510078__featured_collection_jacgTF .grid__item {
  width: 50% !important;
  padding-left: 8px;
}

@media only screen and (min-width: 768px) {
  #shopify-section-template--22544267510078__featured_collection_jacgTF .grid__item {
    width: 20% !important;
  }
}

@media only screen and (max-width: 768px) {
  #shopify-section-template--22544267510078__featured_collection_jacgTF .grid {
    padding: 0px 3px 0px 13px !important;
  }
}

/* Blog Posts Section */
#shopify-section-template--22544267510078__blog-posts .index-section {
  margin: 80px 0px 0px 0px;
}

#shopify-section-template--22544267510078__blog-posts .section-header {
  margin-bottom: 30px;
}

/* Rich Text Section - App Promo */
#shopify-section-template--22544267510078__rich_text_H6KLab h2 {
  color: #e60015;
  text-transform: uppercase;
}

/* Lazy Loading Section Styles */
.lazy-loading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-loaded {
  opacity: 1;
  transform: translateY(0);
}


/* Section header description (small text under heading) */
.section-header__description {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}

/* Tablet */
@media screen and (max-width: 989px) {
  .section-header__description {
    font-size: 13px;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .section-header__description {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Small mobile */
@media screen and (max-width: 480px) {
  .section-header__description {
    font-size: 12.5px;
  }
}

.marketplaces-find-us .verified .check
  .marketplaces-find-us .verified .check { 
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0px; 
}

#shopify-section-template--25846857957694__faq_yCTjHV button.collapsible-trigger.collapsible-trigger--inline.collapsible--auto-height.text-left {
        font-weight: 500;
    font-size: 16px;
    background: transparent !important;
    width: 100%;
    margin-bottom: 0;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.faq-que-wrap{
   padding: 20px !important;
    border-radius: 15px !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
    min-height: 60px !important;
    background: #fff;
    margin-bottom: 20px;
}

@media(max-width: 767px){
  .faq-que-wrap {
    padding: 15px 20px !important;
     min-height: auto !important;
    margin-bottom: 10px !important;
}
.collapsible-trigger--inline .collapsible-trigger__icon {
    left: 95% !important;
}
}

.collapsible-trigger.collapsible-trigger--inline.collapsible--auto-height.text-left.is-open {
    margin-bottom: 15px !important;
}
.collapsible-content__inner p {
    color: #767676;
}
#shopify-section-template--25846857957694__faq_yCTjHV {
    background: #f9f9f9;
    padding: 50px 0;
}
.collapsible-trigger--inline .collapsible-trigger__icon {
    left: 97% !important;
    border: none !important;
}
.varified-title {
    font-size: 24px !important;
    line-height: 34px !important;
}
.marketplaces-find-us {
    padding: 50px 20px 50px !important;
}
.marketplaces-find-us .badge {
    margin-top: 5px !important;
}
.marketplaces-find-us .verified {
    color: #000 !important;
}

div#shopify-section-template--25846857957694__blog-posts .image-wrap.loaded {
    border-radius: 25px;
    overflow: hidden;
}
#shopify-section-template--25846857957694__blog-posts .article__title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    letter-spacing: 0;
}
.article__date {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 500;
    color: #626262;
        margin-bottom: 10px
}
.article__readmore {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #767676;
    letter-spacing: 0;
}


    .marketplaces-find-us .marketplace-card {
        width: 100% !important;
        padding: 0 !important;
    }

    .marketplace-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;

.rs-plateform-badge-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .marketplaces-find-us .marketplace-card {
        width: 100%;
    }
}

.testimonials-slide.is-selected .testimonials-slider__text{
  margin: auto;
}

@media screen (max-width: 767px){
  .testimonials-slide .testimonials-slider__text {
    min-width: auto !important;
}
}