/** Shopify CDN: Minification failed

Line 165:22 Unexpected "{"
Line 165:31 Expected ":"
Line 170:22 Unexpected "{"
Line 170:31 Expected ":"
Line 170:38 Unexpected "{"

**/
.collection-carousel-section {
  padding: 0px 0;
}

.collection-carousel-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-mclub);
}

/* =========================
   Tabs
========================= */
.collection-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.collection-tab {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 999px;
  font-size: 14px;
}

.collection-tab.active {
  background: var(--color-mclub);
  color: #fff;
}

/* =========================
   Card
========================= */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--color-mclub);
  /* box-shadow: 0 3px 5px rgba(0,0,0,0.08); */
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.product-image {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.product-content {
  text-align: center;
  align-items: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-title {
  margin-top: 5px;
  font-size: 22px;
  color: var(--color-grey-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-price {
  display: flex;
  font-size: 22px;
  gap: 10px;
}

.price-compare { 
  font-size: 14px;
  color: grey;
}

/* =========================
   ACTION ROW LAYOUT
========================= */

.product-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* =========================
   QUANTITY LEFT SIDE
========================= */

.qty-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qty-selector button {
  width: 26px;
  height: 26px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  line-height: 1;
}

.qty-input {
  width: 45px;
  text-align: center;
  border: 1px solid #ddd;
  height: 26px;
  font-size: 13px;
}

/* =========================
   ADD TO CART BUTTON (RIGHT)
========================= */

.add-to-cart-btn {
  background: transparent;
  color: var(--color-grey-3);
  border: 2px solid var(--color-grey-3);
  border-radius: 100px;
  padding: 10px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}

.add-to-cart-btn:hover {
  background: var(--color-mbody-light);
  transform: translateY(-1px);
}

.add-to-cart-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#collection-carousel-{{ section.id }} .swiper-pagination {
  position: static !important;
  inset: auto !important;
}

#collection-carousel-{{ section.id }} {
  --swiper-theme-color: var(--color-mclub);
}

.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.swiper-controls .swiper-pagination {
    position: relative;   /* or static */
    width: auto !important;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
    position: static;
    margin: 0;
    width: 40px;
    height: 40px;
    color: var(--color-mclub);
}

.swiper-controls .swiper-button-prev::after,
.swiper-controls .swiper-button-next::after {
    font-size: 18px;
}

.swiper-scrollbar {
    position: static !important;
    width: 200px;
    height: 6px;
    border-radius: 999px;
    background: #e5e5e5;
    flex: 1;
    max-width: 250px;
}

.swiper-scrollbar-drag {
    background: #000;
    border-radius: 999px;
}