/** Shopify CDN: Minification failed

Line 270:0 Expected "}" to go with "{"

**/
.compare {
  width: 100%;
  position: relative;
  overflow: visible;
}

.compare__wrapper {
  width: 100%;
  overflow: visible;
}

.compare__container {
  max-width: 105rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
  overflow: visible;
}

.compare__title {
  width: 100%;
  text-align: center;
  margin-bottom: 0rem;
  word-wrap: break-word;
  /* Uses theme h2 styling - font-size, font-family, font-weight, color handled by theme h2 rules */
}

.compare__cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: visible;
  padding-top: 6rem;
  min-height: 25rem;
}

/* Center highlight card on desktop and tablet */
@media (min-width: 481px) {
  /* DOM Order is Highlight, Regular, Regular */
  
  .compare-card--highlight {
    order: 1; /* Center */
  }
  
  /* First Regular Card (2nd child) -> Left */
  .compare-card:nth-child(2) {
    order: 0;
  }
  
  /* Second Regular Card (3rd child) -> Right */
  .compare-card:nth-child(3) {
    order: 2;
  }
  
  .compare-card {
    flex: 0 0 auto;
    width: 20rem;
    max-width: calc((100% - 2rem) / 3);
    min-width: 0;
  }
}

/* Ensure cards fit on smaller tablets */
@media (min-width: 481px) and (max-width: 1024px) {
  .compare-card {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }
}

.compare-card {
  background: white;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
  border-radius: 0.75rem;
  padding: 0 1.5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 20rem;
  max-width: 100%;
}

/* Highlight card - styled with green border */
.compare-card--highlight {
  outline: 2px solid #387A62;
  outline-offset: -2px;
  padding-top: 12rem;
}

.compare-card--highlight .compare-card__image-wrapper {
  top: -4rem;
}

/* Regular cards */
.compare-card--regular {
  outline: 2px solid #E6E7EB;
  outline-offset: -2px;
  padding-top: 12rem;
}

.compare-card--regular .compare-card__image-wrapper {
  top: -4rem;
}

.compare-card__image-wrapper {
  position: absolute;
  left: 1.5rem;
  width: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 1;
}

.compare-card__image {
  width: 8.5rem;
  height: auto;
  object-fit: contain;
}

.compare-card__title {
  text-align: center;
  color: #000;
  font-size: 1.5rem;
  font-family: 'Cal Sans', sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  width: 100%;
}

/* Highlight title styling */
.compare-card__title--highlight {
  color: #231F1F;
  font-weight: 500;
}

.compare-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.compare-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E6E7EB;
  padding-bottom: 0;
  gap: 1rem;
}

.compare-card__label {
  color: #231F1F;
  font-family: 'Cal Sans', sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  flex-shrink: 0;
}

.compare-card__value {
  font-family: 'Cal Sans', sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  text-align: right;
  flex-shrink: 0;
} 

/* Regular card value styling */
.compare-card--regular .compare-card__value {
  color: #B84040;
}

/* Highlight label and value styling */
.compare-card__label--highlight {
  font-weight: 500;
  color: #231F1F;
  font-size: 1.1rem !important;
}

.compare-card__value--highlight {
  font-weight: 500;
  color: #387A62;
  font-size: 1.1rem !important;
}

.compare__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Mobile - scrollable carousel */
@media (max-width: 480px) {
  .compare__container {
    padding: 0;
  }
  
  .compare__title {
    margin-bottom: 0rem;
    padding: 0 var(--inner);
  }
  
  .compare__cards {
    overflow-x: scroll;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--inner);
    padding-left: var(--inner);
    padding-right: var(--inner);
    padding-top: 5rem;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1rem;
    margin: 0;
    min-height: 20rem;
  }
  
  .compare__cards::-webkit-scrollbar {
    display: none;
  }
  
  .compare__cards::after {
    content: "";
    display: block;
    flex: 0 0 var(--inner);
  }
  
  .compare-card {
    flex: 0 0 90%;
    scroll-snap-align: start;
    width: 90%;
    max-width: none;
    padding-top: 12rem;
    order: 0;
  }
  
  /* Ensure images are visible on mobile */
  .compare-card--highlight .compare-card__image-wrapper,
  .compare-card--regular .compare-card__image-wrapper {
    top: -4rem;
  }
  
  /* Natural DOM order (Highlight -> Regular -> Regular) is correct for mobile */
  .compare-card {
    order: unset;
  }
  
  .compare-card__title {
    font-size: 1.5rem;
  }
  
  .compare__button-wrapper {
    padding: 0 var(--inner);
  }

