/** Shopify CDN: Minification failed

Line 791:2 Unexpected "#"
Line 791:4 Unexpected "{"
Line 791:16 Expected ":"
Line 798:2 Unexpected "#"
Line 798:4 Unexpected "{"
Line 798:16 Expected ":"
Line 804:2 Unexpected "#"
Line 804:4 Unexpected "{"
Line 804:16 Expected ":"
Line 811:2 Unexpected "#"
... and 2 more hidden warnings

**/
/* ============================================================
   MEDISA HOME PAGE
   COMMERCE HERO
   Categories + Main Campaign + 2 Promo Banners
   ============================================================ */

.mdsa-hp-commerce-hero {
  width: 100%;
  padding-top: var(--mdsa-commerce-top, 16px);
  padding-bottom: var(--mdsa-commerce-bottom, 24px);
  background: #ffffff;
}

.mdsa-hp-commerce-hero__outer {
  width: min(
    calc(100% - 40px),
    var(--mdsa-commerce-max-width, 1560px)
  );
  margin: 0 auto;
}


/* ============================================================
   MAIN DESKTOP ARCHITECTURE
   ============================================================ */

.mdsa-hp-commerce-hero__layout {
  display: grid;
  grid-template-columns:
    minmax(330px, 0.37fr)
    minmax(0, 1fr);

  gap: var(--mdsa-commerce-gap, 12px);

  height: 600px;
  min-width: 0;
}


/* ============================================================
   LEFT CATEGORY GRID
   ============================================================ */

.mdsa-hp-commerce-hero__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));

  gap: var(--mdsa-commerce-gap, 12px);

  min-width: 0;
  height: 100%;
}

.mdsa-hp-commerce-category {
  min-width: 0;
  min-height: 0;
}

.mdsa-hp-commerce-category__link {
  position: relative;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  background: var(--mdsa-commerce-card-bg, #ffffff);

  border: 1px solid var(--mdsa-commerce-card-border, #e5edf3);
  border-radius: var(--mdsa-commerce-radius, 12px);

  overflow: hidden;

  text-decoration: none;

  box-shadow:
    0 3px 12px rgba(23, 50, 77, 0.025);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

a.mdsa-hp-commerce-category__link:hover {
  transform: translateY(-2px);

  border-color: rgba(0, 173, 238, 0.32);

  box-shadow:
    0 9px 24px rgba(23, 50, 77, 0.075);
}


/* ============================================================
   CATEGORY IMAGE
   ============================================================ */

.mdsa-hp-commerce-category__media {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1 1 auto;

  min-height: 0;

  padding: 8px 10px 2px;

  overflow: hidden;
}

.mdsa-hp-commerce-category__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transition: transform 220ms ease;
}

a.mdsa-hp-commerce-category__link:hover
.mdsa-hp-commerce-category__image {
  transform: scale(1.035);
}

.mdsa-hp-commerce-category__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  color: #cbd5e1;
  background: #f8fafc;
}

.mdsa-hp-commerce-category__placeholder svg {
  width: 70%;
  height: 70%;
}


/* ============================================================
   CATEGORY FOOTER
   ============================================================ */

.mdsa-hp-commerce-category__footer {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 45px;

  padding: 8px 12px 10px;

  background: #ffffff;
}

.mdsa-hp-commerce-category__title {
  color: var(--mdsa-commerce-heading, #17324d);

  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;

  text-align: center;
}

.mdsa-hp-commerce-category__accent {
  position: absolute;

  bottom: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 3px;

  background: var(--mdsa-commerce-orange, #ff8000);

  transform: scaleX(0.32);
  transform-origin: center;

  transition:
    transform 220ms ease,
    background 220ms ease;
}

a.mdsa-hp-commerce-category__link:hover
.mdsa-hp-commerce-category__accent {
  transform: scaleX(1);
  background: var(--mdsa-commerce-blue, #00adee);
}


/* ============================================================
   RIGHT CONTENT
   ============================================================ */

.mdsa-hp-commerce-hero__content {
  display: grid;

  grid-template-rows:
    minmax(0, 1fr)
    180px;

  gap: var(--mdsa-commerce-gap, 12px);

  min-width: 0;
  min-height: 0;
}


/* ============================================================
   MAIN HERO
   ============================================================ */

.mdsa-hp-commerce-hero__main {
  position: relative;

  min-width: 0;
  min-height: 0;

  border-radius: var(--mdsa-commerce-radius, 12px);

  overflow: hidden;

  background: #f5f7fa;

  box-shadow:
    0 4px 18px rgba(23, 50, 77, 0.035);
}

.mdsa-hp-commerce-hero__slides {
  position: relative;

  width: 100%;
  height: 100%;
}

.mdsa-hp-commerce-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 450ms ease,
    visibility 450ms ease;

  pointer-events: none;
}

.mdsa-hp-commerce-slide.is-active {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;
  z-index: 2;
}

.mdsa-hp-commerce-slide__link {
  display: block;

  width: 100%;
  height: 100%;
}

.mdsa-hp-commerce-slide__link picture {
  display: block;

  width: 100%;
  height: 100%;
}

.mdsa-hp-commerce-slide__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.mdsa-hp-commerce-slide__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  color: #cbd5e1;
  background:
    linear-gradient(
      135deg,
      #f5f9fc 0%,
      #eef7fb 100%
    );
}

.mdsa-hp-commerce-slide__placeholder svg {
  width: 50%;
  height: 50%;
}


/* ============================================================
   HERO ARROWS
   ============================================================ */

.mdsa-hp-commerce-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  padding: 0;

  color: #17324d;
  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(23, 50, 77, 0.08);
  border-radius: 50%;

  box-shadow:
    0 4px 14px rgba(23, 50, 77, 0.10);

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mdsa-hp-commerce-hero__arrow:hover {
  color: var(--mdsa-commerce-blue, #00adee);
  background: #ffffff;
}

.mdsa-hp-commerce-hero__arrow--prev {
  left: 14px;
}

.mdsa-hp-commerce-hero__arrow--next {
  right: 14px;
}

.mdsa-hp-commerce-hero__arrow svg {
  width: 19px;
  height: 19px;

  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================================================
   HERO DOTS
   ============================================================ */

.mdsa-hp-commerce-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  padding: 6px 8px;

  background: rgba(255, 255, 255, 0.90);

  border: 1px solid rgba(23, 50, 77, 0.06);
  border-radius: 999px;

  box-shadow:
    0 3px 10px rgba(23, 50, 77, 0.08);

  transform: translateX(-50%);
}

.mdsa-hp-commerce-hero__dot {
  width: 7px;
  height: 7px;

  padding: 0;

  background: #cbd5e1;

  border: 0;
  border-radius: 999px;

  cursor: pointer;

  transition:
    width 180ms ease,
    background 180ms ease;
}

.mdsa-hp-commerce-hero__dot.is-active {
  width: 22px;

  background: var(--mdsa-commerce-blue, #00adee);
}


/* ============================================================
   BOTTOM PROMOS
   ============================================================ */

.mdsa-hp-commerce-hero__promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: var(--mdsa-commerce-gap, 12px);

  min-width: 0;
  min-height: 0;
}

.mdsa-hp-commerce-promo {
  min-width: 0;
  min-height: 0;
}

.mdsa-hp-commerce-promo__link {
  display: block;

  width: 100%;
  height: 100%;

  background: #f5f7fa;

  border: 1px solid var(--mdsa-commerce-card-border, #e5edf3);
  border-radius: var(--mdsa-commerce-radius, 12px);

  overflow: hidden;

  text-decoration: none;

  box-shadow:
    0 3px 12px rgba(23, 50, 77, 0.025);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

a.mdsa-hp-commerce-promo__link:hover {
  transform: translateY(-2px);

  border-color: rgba(255, 128, 0, 0.30);

  box-shadow:
    0 8px 22px rgba(23, 50, 77, 0.075);
}

.mdsa-hp-commerce-promo__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.mdsa-hp-commerce-promo__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  color: #cbd5e1;

  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #eef7fb 100%
    );
}

.mdsa-hp-commerce-promo__placeholder svg {
  width: 45%;
  height: 45%;
}


/* ============================================================
   LARGE DESKTOP
   ============================================================ */

@media screen and (min-width: 1500px) {

  .mdsa-hp-commerce-hero__layout {
    grid-template-columns:
      minmax(390px, 0.38fr)
      minmax(0, 1fr);

    height: 620px;
  }

  .mdsa-hp-commerce-hero__content {
    grid-template-rows:
      minmax(0, 1fr)
      185px;
  }

  .mdsa-hp-commerce-category__title {
    font-size: 14.5px;
  }

}


/* ============================================================
   MEDIUM DESKTOP / SMALL LAPTOP
   ============================================================ */

@media screen and (max-width: 1200px) {

  .mdsa-hp-commerce-hero__layout {
    grid-template-columns:
      minmax(300px, 0.40fr)
      minmax(0, 1fr);

    height: 560px;
  }

  .mdsa-hp-commerce-hero__content {
    grid-template-rows:
      minmax(0, 1fr)
      165px;
  }

  .mdsa-hp-commerce-category__footer {
    flex-basis: 42px;
  }

  .mdsa-hp-commerce-category__title {
    font-size: 12.5px;
  }

}


/* ============================================================
   TABLET
   ============================================================ */

@media screen and (max-width: 989px) {

  .mdsa-hp-commerce-hero__outer {
    width: min(
      calc(100% - 28px),
      var(--mdsa-commerce-max-width, 1560px)
    );
  }

  .mdsa-hp-commerce-hero__layout {
    display: flex;
    flex-direction: column;

    height: auto;
  }


  /* HERO FIRST ON TABLET */

  .mdsa-hp-commerce-hero__content {
    order: 1;

    display: flex;
    flex-direction: column;

    gap: var(--mdsa-commerce-gap, 12px);
  }

  .mdsa-hp-commerce-hero__main {
    aspect-ratio: 2.35 / 1;
    min-height: 0;
  }

  .mdsa-hp-commerce-hero__promos {
    height: 180px;
  }


  /* CATEGORIES AFTER HERO */

  .mdsa-hp-commerce-hero__categories {
    order: 2;

    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 180px);

    height: auto;
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media screen and (max-width: 749px) {

  .mdsa-hp-commerce-hero {
    padding-top: 8px;
    padding-bottom: 20px;
  }

  .mdsa-hp-commerce-hero__outer {
    width: calc(100% - 20px);
  }

  .mdsa-hp-commerce-hero__layout {
    gap: 10px;
  }


  /* MAIN HERO */

  .mdsa-hp-commerce-hero__main {
    aspect-ratio: 1.65 / 1;

    border-radius: 10px;
  }

  .mdsa-hp-commerce-hero__arrow {
    width: 34px;
    height: 34px;
  }

  .mdsa-hp-commerce-hero__arrow--prev {
    left: 8px;
  }

  .mdsa-hp-commerce-hero__arrow--next {
    right: 8px;
  }

  .mdsa-hp-commerce-hero__dots {
    bottom: 9px;

    padding: 5px 7px;
  }


  /* PROMOS */

  .mdsa-hp-commerce-hero__promos {
    grid-template-columns: 1fr;

    height: auto;

    gap: 10px;
  }

  .mdsa-hp-commerce-promo {
    aspect-ratio: 2.25 / 1;
  }


  /* CATEGORIES */

  .mdsa-hp-commerce-hero__categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 160px);

    gap: 10px;
  }

  .mdsa-hp-commerce-category__link {
    border-radius: 10px;
  }

  .mdsa-hp-commerce-category__media {
    padding: 7px 8px 0;
  }

  .mdsa-hp-commerce-category__footer {
    flex-basis: 40px;

    padding: 7px 8px 9px;
  }

  .mdsa-hp-commerce-category__title {
    font-size: 12px;
  }

  .mdsa-hp-commerce-category__accent {
    height: 3px;
  }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media screen and (max-width: 420px) {

  .mdsa-hp-commerce-hero__categories {
    grid-template-rows: repeat(3, 145px);
  }

  .mdsa-hp-commerce-category__title {
    font-size: 11.5px;
  }

}


/* ============================================================
   ACCESSIBILITY / REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  .mdsa-hp-commerce-slide,
  .mdsa-hp-commerce-category__link,
  .mdsa-hp-commerce-category__image,
  .mdsa-hp-commerce-category__accent,
  .mdsa-hp-commerce-promo__link,
  .mdsa-hp-commerce-hero__dot {
    transition: none;
  }

}/* ============================================================
   MOBILE HERO IMAGE FIX
   Preserve mobile banner ratio (1080x1350)
   ============================================================ */

@media screen and (max-width: 749px) {

  #{{ section_id }} .mdsa-hp-campaign-hero__viewport {
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
  }


  #{{ section_id }} .mdsa-hp-campaign-hero__slide {
    width: 100%;
    height: auto;
  }


  #{{ section_id }} .mdsa-hp-campaign-hero__picture {
    display: block;
    width: 100%;
    height: auto;
  }


  #{{ section_id }} .mdsa-hp-campaign-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }


}


/* ============================================================
   HOMEPAGE POLISH - TRUE FULL-WIDTH HERO FRAME
   Separate frame, but no empty space at the left/right edges.
   ============================================================ */

.section-mdsa-hp-commerce-hero,
.mdsa-hp-commerce-hero {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mdsa-hp-commerce-hero {
  padding: 18px 0 20px !important;
}

.mdsa-hp-commerce-hero__outer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 26px 28px;

  background: #f5fafc;
  border: 1px solid #edf3f6;
  border-radius: 28px;
  overflow: hidden;
  box-sizing: border-box;
}

.mdsa-hp-commerce-hero__layout {
  width: 100%;
  max-width: none;
}

/* Tablet */
@media screen and (max-width: 989px) {
  .mdsa-hp-commerce-hero__outer {
    width: 100% !important;
    padding: 18px;
    border-radius: 22px;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .mdsa-hp-commerce-hero {
    padding: 10px 0 16px !important;
  }

  .mdsa-hp-commerce-hero__outer {
    width: 100% !important;
    padding: 10px;
    border-radius: 16px;
  }
}
.mdsa-hp-commerce-hero__outer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 26px 28px;

  background: #f5fafc;
  border: 0;
  border-radius: 0 !important;

  box-sizing: border-box;
  overflow: hidden;
}.mdsa-hp-commerce-hero__outer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 26px 28px;

  background: #f5fafc;
  border: 0;
  border-radius: 0 !important;

  box-sizing: border-box;
  overflow: hidden;
}