/** Shopify CDN: Minification failed

Line 166:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.popular-categories {
  background-color: #FFFFFF;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 5rem 1rem;
  box-sizing: border-box;
}

.popular-categories__title {
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
}

.categories-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s ease-in-out;
  scrollbar-width: none;
}

.categories-carousel::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 10%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

/* .category-item .category-image:hover {
  transform: scale(1.05);
} */

.category-image {
  width: 165px;
  height: 165px;
  background-color: #FFEFE9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-radius 0.3s ease;
}

.category-item:hover .category-image {
  border-radius: 8px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: border-radius 0.3s ease;
  position: relative;
}

.category-name {
  color: var(--Gray-600, #4B5563);
  text-align: center;
   font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.carousel-nav {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

.carousel-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-nav:disabled svg path {
  stroke: #9CA3AF;
}

.carousel-nav:disabled svg rect {
  fill: #F3F4F6;
  stroke: #E5E7EB;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  max-width: 1257px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .category-image {
  width: 200px;
  height: 200px;
  }
  .popular-categories__title {
    font-size: 28px;
    line-height: 36px;
  }
  .category-item {
    flex: 0 0 100%;
  }
  .carousel-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .carousel-nav {
    font-size: 1.25rem;
  }
}
.custom-product-section {
  padding: 2rem 0;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .custom-product-section {
    padding: 0px !important;
    background-color: #ffffff;
  }
}

}
.page-width {
  margin: 0 auto;
  padding: 0 1.6rem;
  max-width: 1200px;
}
@media screen and (max-width: 768px){

  .page-width{
    margin: 0 15px !important;
  }
}

.custom-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.custom-product-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.see-all-link {
  font-size: 0.95rem;
  text-decoration: none;
  color: #333;
  background-color: #f9f9f9;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Mobile button (below product grid) */
.see-all-mobile {
  display: none;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-decoration: none;
  color: #333;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s;
}

.see-all-mobile:hover {
  background-color: #ececec;
  color:#000;
}
.see-all-mobile:visited {
  background-color: #ececec;
  color:#000;
}
/* Hide/show depending on screen */
@media screen and (max-width: 768px) {
  .see-all-desktop {
    display: none;
  }
  .see-all-mobile {
    display: block;
  }
  
}

.see-all-link:hover {
  background-color: #ececec;
  color: #000;
}

.custom-product-grid {
  display: grid;
  gap: 24px;
}

@media screen and (min-width: 769px) {
  .custom-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
   

@media screen and (max-width: 768px) {
  .custom-product-grid.mobile-1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .custom-product-grid.mobile-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-product-grid {
    gap: 24px;
  }
 
}

.custom-product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100% !important;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.custom-product-image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 52 / 59;
  background: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 8px;
}

.custom-product-image-wrapper img {
  width: 250px !important;
  height: 250px !important;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.custom-product-card:hover .custom-product-image-wrapper img {
  transform: scale(1.15);
}

.custom-product-title {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.038px;
  text-transform: capitalize;
  margin: 0;
  text-align: left;
  width: 100%;
}

.custom-product-price {
  color: #242833;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  width: 100%;
}

.custom-product-price .original {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  .custom-product-image-wrapper img {
    width: 300px !important;
    height: 300px !important;
  }
}
.tag-list {
    margin-top: 10px;
  }

  .tag-list__item {
    margin-right: 10px;
  }

/* CSS from snippet stylesheet tags */
.custom-product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  margin-bottom: 20px;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  position: relative;
}


.custom-product-image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 52 / 59;
  background: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 8px;
  position: relative;
}

.custom-product-image-wrapper img {
  width: 180px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.custom-product-card:hover .custom-product-image-wrapper img {
  transform: scale(1.15);
}

.custom-product-title {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.038px;
  text-transform: capitalize;
  margin: 0;
  text-align: left;
  width: 100%;
}

.custom-product-price {
  color: #242833;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  width: 100%;
}

.custom-product-price .original {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
  margin-left: 6px;
}

.custom-product-price--sold-out {
  color: #999;
  font-style: italic;
}

.custom-product-vendor {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 4px;
}

.product-tag--absolute {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #FF4D4D;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 12px;
  z-index: 2;
}

.product-card__overlay {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.custom-product-image-wrapper:hover .product-card__overlay {
  opacity: 1;
}

.product-card__overlay-btn {
  background-color: #000;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.btn--narrow {
  padding: 0.4rem 0.8rem;
}

@media screen and (max-width: 767px) {
  .custom-product-image-wrapper img {
    width: 300px;
    height: 300px;
  }
}