/** Shopify CDN: Minification failed

Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:51 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 18:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-multicolumn-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background-color: #fff;
  width: 100%;
  position: relative;
}

.custom-multicolumn-section .title-wrapper-with-link {
  margin: 0 0 15px 0; /* Smaller margin for mobile */
  padding: 0;
}

.custom-multicolumn-section .title-wrapper-with-link .title {
  margin: 0;
  /* No font-size override - use theme default */
}

.custom-multicolumn-section .grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 10px;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  width: 100%;
  margin: 0 !important;
  position: relative;
  align-items: stretch; /* Force all cards to same height */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.custom-multicolumn-section .grid::-webkit-scrollbar {
  display: none;
}

/* Mobile-first card sizing */
.custom-multicolumn-section .multicolumn-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;  
  box-shadow: .5rem .5rem 1rem rgba(var(--color-foreground), .2), 0 0 0 .2rem rgba(var(--color-foreground), .07);
  flex: 0 0 calc(100% - 40px) !important; /* Full width minus padding */
  scroll-snap-align: center;
  width: calc(100% - 40px) !important;
  max-width: calc(100% - 40px) !important;
  margin: auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 450px !important; /* Changed from height to min-height */
}

/* Tablet and up */
@media screen and (min-width: 750px) {
  .custom-multicolumn-section .multicolumn-card {
    flex: 0 0 calc(50% - 30px) !important; /* 2 cards per row */
    width: calc(50% - 30px) !important;
    max-width: calc(50% - 30px) !important;
  }
  
  .custom-multicolumn-section .title-wrapper-with-link {
    margin: 0 0 20px 0; /* Medium margin for tablet */
  }
}

/* Desktop */
@media screen and (min-width: 990px) {
  .custom-multicolumn-section .multicolumn-card {
    flex: 0 0 calc(33.333% - 27px) !important; /* 3 cards per row */
    width: calc(33.333% - 27px) !important;
    max-width: calc(33.333% - 27px) !important;
  }
  
  .custom-multicolumn-section .title-wrapper-with-link {
    margin: 0 0 25px 0; /* Larger margin for desktop */
  }
}

.custom-multicolumn-section .multicolumn-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 77.16%;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.custom-multicolumn-section .multicolumn-card__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.custom-multicolumn-section .multicolumn-card__image-wrapper img.active {
  opacity: 1;
}

/* Animation for image switching */
@keyframes imageSwitch {
  0%, 45% {
    opacity: 0;
  }
  50%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.custom-multicolumn-section .multicolumn-card__image-wrapper img:first-child {
  opacity: 1;
}

.custom-multicolumn-section .multicolumn-card__image-wrapper img:last-child {
  animation: imageSwitch 4s infinite;
}

/* Add different animation delays for each card */
.custom-multicolumn-section .multicolumn-card:nth-child(1) .multicolumn-card__image-wrapper img:last-child {
  animation-delay: 0s;
}

.custom-multicolumn-section .multicolumn-card:nth-child(2) .multicolumn-card__image-wrapper img:last-child {
  animation-delay: 1s;
}

.custom-multicolumn-section .multicolumn-card:nth-child(3) .multicolumn-card__image-wrapper img:last-child {
  animation-delay: 2s;
}

.custom-multicolumn-section .multicolumn-card:nth-child(4) .multicolumn-card__image-wrapper img:last-child {
  animation-delay: 0.5s;
}

.custom-multicolumn-section .multicolumn-card:nth-child(5) .multicolumn-card__image-wrapper img:last-child {
  animation-delay: 1.5s;
}

.custom-multicolumn-section .multicolumn-card:nth-child(6) .multicolumn-card__image-wrapper img:last-child {
  animation-delay: 2.5s;
}

.custom-multicolumn-section .multicolumn-card__info {
  padding: 25px;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  justify-content: space-between !important;
  min-height: 120px;
}

.custom-multicolumn-section .multicolumn-card__info h3 {
  font-size: 18px;
  margin: 0 0 5px;
  color: #333;
  line-height: 1.3;
  max-height: 70.2px; /* Constrain to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-multicolumn-section .multicolumn-card__info p {
  font-size: 18px;
  margin: 5px 0;
  color: #555;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 23.4px;
}

.custom-multicolumn-section .multicolumn-card__info a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.custom-multicolumn-section .multicolumn-card__info svg {
  margin-left: 5px;
  width: 14px;
  height: 14px;
}

/* Remove scroll indicator styles */
.custom-multicolumn-section .scroll-indicator {
  display: none;
}

/* Product spec badges */
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  justify-content: center;
}

.product-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background-color: rgb(var(--color-base-background-2));
  border: 1px solid rgb(var(--color-base-background-2));
  border-radius: var(--buttons-radius);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(var(--color-base-text));
  white-space: nowrap;
  line-height: 1.3;
}

.product-spec-badge__icon {
  font-size: 1.3rem;
  line-height: 1;
}

@media screen and (max-width: 749px) {
  .product-spec-badge {
    font-size: 1.15rem;
    padding: 0.45rem 1rem;
  }
  
  .product-spec-badge__icon {
    font-size: 1.25rem;
  }
}