/** Shopify CDN: Minification failed

Line 340:10 Unexpected "{"
Line 340:19 Expected ":"
Line 341:14 Expected identifier but found whitespace
Line 341:16 Unexpected "{"
Line 341:25 Expected ":"
Line 341:76 Expected ":"
Line 342:17 Expected identifier but found whitespace
Line 342:19 Unexpected "{"
Line 342:28 Expected ":"
Line 342:82 Expected ":"
... and 10 more hidden warnings

**/
.health-concern-section {
  padding-top: var(--spacing-sections-mobile);
  padding-bottom: var(--spacing-sections-mobile);
}

@media screen and (min-width: 750px) {
  .health-concern-section {
    padding-top: var(--spacing-sections-desktop);
    padding-bottom: var(--spacing-sections-desktop);
  }
}

.health-concern-section .title-wrapper-with-link {
  margin-bottom: 3rem;
  text-align: center;
}

.health-concern-slider-wrapper {
  position: relative;
  padding: 0 4rem;
}

@media screen and (max-width: 749px) {
  .health-concern-slider-wrapper {
    padding: 0 3rem;
  }
}

.health-concern-slider {
  overflow: hidden;
}

.health-concern-slider .swiper-wrapper {
  align-items: stretch;
}

.health-concern-slider .swiper-slide {
  height: auto;
  display: flex;
}

.health-concern-card-wrapper {
  width: 100%;
  height: 100%;
}

.health-concern-card {
  display: block;
  text-decoration: none;
  height: 100%;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.health-concern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.health-concern-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 2px solid rgba(var(--color-foreground), 0.06);
  transition: all 0.4s ease;
  background: rgb(var(--color-background));
  position: relative;
}

.health-concern-card:hover .health-concern-card__inner {
  border-color: rgb(var(--color-button));
  background: linear-gradient(135deg, rgb(var(--color-background)) 0%, rgba(var(--color-button), 0.03) 100%);
}

.health-concern-card__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(var(--color-button)) 0%, rgba(var(--color-button), 0.6) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.health-concern-card:hover .health-concern-card__inner::before {
  transform: scaleX(1);
}

.health-concern-card:hover .health-concern-card__inner {
  border-color: rgba(var(--color-foreground), 0.15);
}

.health-concern-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.04);
}

.health-concern-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.health-concern-card:hover .health-concern-card__image {
  transform: scale(1.05);
}

.health-concern-card__content {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  gap: 1rem;
  position: relative;
}

@media screen and (min-width: 750px) {
  .health-concern-card__content {
    padding: 3.5rem 2.5rem;
  }
}

.health-concern-card__icon {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(var(--color-button), 0.1) 0%, rgba(var(--color-button), 0.05) 100%);
  border-radius: 50%;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.health-concern-card__icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgb(var(--color-button)) 0%, rgba(var(--color-button), 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.health-concern-card:hover .health-concern-card__icon::before {
  opacity: 1;
}

@media screen and (min-width: 750px) {
  .health-concern-card__icon {
    width: 8rem;
    height: 8rem;
    padding: 1.8rem;
  }
}

.health-concern-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: rgb(var(--color-button));
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(var(--color-button), 0.2));
}

.health-concern-card:hover .health-concern-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(var(--color-button), 0.15) 0%, rgba(var(--color-button), 0.08) 100%);
}

.health-concern-card:hover .health-concern-card__icon svg {
  stroke: rgb(var(--color-button));
  filter: drop-shadow(0 4px 8px rgba(var(--color-button), 0.3));
}

.health-concern-card__title {
  margin: 0;
  color: rgb(var(--color-foreground));
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 750px) {
  .health-concern-card__title {
    font-size: 2.1rem;
  }
}

.health-concern-card:hover .health-concern-card__title {
  color: rgb(var(--color-button));
  transform: translateY(-2px);
}

.health-concern-card__description {
  margin: 0;
  color: rgba(var(--color-foreground), 0.65);
  font-size: 1.35rem;
  line-height: 1.6;
  font-weight: 400;
  transition: color 0.3s ease;
}

.health-concern-card:hover .health-concern-card__description {
  color: rgba(var(--color-foreground), 0.85);
}

/* Add a subtle "View Products" indicator */
.health-concern-card__content::after {
  content: 'View Products →';
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--color-button));
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  margin-top: auto;
  padding-top: 1rem;
}

.health-concern-card:hover .health-concern-card__content::after {
  opacity: 1;
  transform: translateY(0);
}

/* Disabled state */
.health-concern-card[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.6;
}

/* Swiper Navigation Arrows */
.health-concern-prev,
.health-concern-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.health-concern-prev:hover,
.health-concern-next:hover {
  background: rgb(var(--color-button));
  border-color: rgb(var(--color-button));
  transform: translateY(-50%) scale(1.1);
}

.health-concern-prev:after,
.health-concern-next:after {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(var(--color-foreground));
}

.health-concern-prev:hover:after,
.health-concern-next:hover:after {
  color: rgb(var(--color-button-text));
}

.health-concern-prev {
  left: 0;
}

.health-concern-next {
  right: 0;
}

.health-concern-prev.swiper-button-disabled,
.health-concern-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Swiper Pagination */
.health-concern-pagination {
  margin-top: 2rem;
  text-align: center;
}

.health-concern-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: rgba(var(--color-foreground), 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.health-concern-pagination .swiper-pagination-bullet-active {
  background: rgb(var(--color-button));
  width: 2.5rem;
  border-radius: 0.5rem;
}

/* Section padding override */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}
