.kosa-slider {
  --kosa-ink: #123f38;
  --kosa-pink: #f3a4a2;
  --kosa-white: #fff;
  box-sizing: border-box;
  width: min(100%, 1715px);
  margin: 0 auto;
  font-family: inherit;
}

.kosa-slider *,
.kosa-slider *::before,
.kosa-slider *::after {
  box-sizing: border-box;
}

.kosa-slider__stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 41vw, 630px);
  overflow: hidden;
  border-radius: clamp(18px, 1.8vw, 30px);
  background: #d9e4dc;
}

.kosa-slider__slides,
.kosa-slider__slide,
.kosa-slider__overlay {
  position: absolute;
  inset: 0;
}

.kosa-slider__slide {
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 560ms ease;
}

.kosa-slider__slide.is-active {
  z-index: 1;
  pointer-events: auto;
  opacity: 1;
}

.kosa-slider__slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kosa-slider__overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 32, 26, .46) 0%, rgba(9, 32, 26, .17) 43%, rgba(9, 32, 26, .01) 72%);
}

.kosa-slider__content {
  position: absolute;
  z-index: 2;
  top: clamp(34px, 6.4vw, 98px);
  left: clamp(24px, 5.6vw, 96px);
  max-width: min(46%, 690px);
  color: var(--kosa-white);
}

.kosa-slider__eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--kosa-pink);
  color: #fff;
  font-size: clamp(10px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.kosa-slider__content h2 {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: clamp(29px, 3.1vw, 53px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
  text-transform: none;
}

.kosa-slider__cta,
.kosa-slider__product-link {
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.kosa-slider__cta {
  display: inline-flex;
  margin-top: clamp(18px, 2.3vw, 37px);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .75);
  transition: border-color 180ms ease, transform 180ms ease;
}

.kosa-slider__cta:hover,
.kosa-slider__cta:focus-visible {
  border-color: #fff;
  color: #fff;
  transform: translateX(3px);
}

.kosa-slider__product-panel {
  position: absolute;
  z-index: 3;
  bottom: clamp(30px, 4vw, 60px);
  left: clamp(24px, 5.6vw, 96px);
  width: min(500px, 42%);
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 23px;
  background: rgba(18, 32, 29, .65);
  box-shadow: 0 16px 35px rgba(8, 24, 21, .18);
  color: var(--kosa-white);
  backdrop-filter: blur(12px);
}

.kosa-slider__product-window {
  overflow: hidden;
}

.kosa-slider__product-track {
  display: flex;
  transition: transform 430ms cubic-bezier(.2, .7, .3, 1);
}

.kosa-slider__product-slide {
  display: grid;
  grid: 1fr / minmax(118px, 39%) 1fr;
  flex: 0 0 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 15px;
}

.kosa-slider__product-image {
  display: flex;
  min-height: 170px;
  overflow: hidden;
  background: #f4f0ea;
}

.kosa-slider__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.kosa-slider__product-image:hover img,
.kosa-slider__product-image:focus-visible img {
  transform: scale(1.045);
}

.kosa-slider__product-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px 17px 14px;
}

.kosa-slider__product-content h3 {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-transform: none;
}

.kosa-slider__product-content h3 a {
  color: inherit;
  text-decoration: none;
}

.kosa-slider__price {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.1;
}

.kosa-slider__price del {
  margin-right: 7px;
  color: rgba(255, 255, 255, .65);
  font-weight: 400;
}

.kosa-slider__price ins {
  background: none;
  color: inherit;
  text-decoration: none;
}

.kosa-slider__product-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 17px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, .65);
}

.kosa-slider__product-link:hover,
.kosa-slider__product-link:focus-visible {
  color: #fff;
}

.kosa-slider__product-nav,
.kosa-slider__banner-nav {
  display: flex;
  gap: 9px;
}

.kosa-slider__product-nav {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.kosa-slider__product-nav button,
.kosa-slider__banner-nav button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  color: var(--kosa-pink);
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.kosa-slider__product-nav button:hover,
.kosa-slider__product-nav button:focus-visible,
.kosa-slider__banner-nav button:hover,
.kosa-slider__banner-nav button:focus-visible {
  background: var(--kosa-pink);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.kosa-slider__banner-nav {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(28px, 3.7vw, 58px);
}

.kosa-slider__dots {
  position: absolute;
  z-index: 4;
  bottom: 13px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.kosa-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.kosa-slider__dots button[aria-selected="true"] {
  width: 24px;
  border-radius: 20px;
  background: var(--kosa-pink);
}

.kosa-slider-notice {
  padding: 16px 20px;
  border-left: 4px solid #dba2a0;
  background: #fff5f4;
  color: #442a29;
}

@media (max-width: 820px) {
  .kosa-slider__stage {
    min-height: clamp(285px, 73vw, 430px);
    margin-bottom: 150px;
    overflow: visible;
  }

  .kosa-slider__slides {
    overflow: hidden;
    border-radius: inherit;
  }

  .kosa-slider__content {
    top: clamp(22px, 8vw, 42px);
    left: clamp(16px, 5.5vw, 28px);
    max-width: 74%;
  }

  .kosa-slider__eyebrow {
    margin-bottom: 9px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .kosa-slider__content h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .kosa-slider__cta {
    margin-top: 11px;
    font-size: 9px;
  }

  .kosa-slider__product-panel {
    top: calc(100% + 13px);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    padding: 9px;
    border-color: #dbe8e3;
    border-radius: 14px;
    background: #f7faf8;
    box-shadow: 0 9px 22px rgba(17, 64, 56, .1);
    color: var(--kosa-ink);
    backdrop-filter: none;
  }

  .kosa-slider__product-slide {
    grid-template-columns: 43% 1fr;
    border-radius: 10px;
  }

  .kosa-slider__product-image {
    min-height: 118px;
  }

  .kosa-slider__product-content {
    padding: 9px 9px 7px;
  }

  .kosa-slider__product-content h3 {
    display: -webkit-box;
    overflow: hidden;
    color: var(--kosa-ink);
    font-size: 12px;
    line-height: 1.1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .kosa-slider__price {
    margin-top: 6px;
    color: var(--kosa-ink);
    font-size: 13px;
  }

  .kosa-slider__price del {
    color: #84958f;
  }

  .kosa-slider__product-link {
    margin-top: 8px;
    padding-top: 6px;
    border-color: #b7c8c1;
    color: var(--kosa-ink);
    font-size: 9px;
  }

  .kosa-slider__product-nav {
    right: 8px;
    bottom: 8px;
    gap: 5px;
  }

  .kosa-slider__product-nav button,
  .kosa-slider__banner-nav button {
    width: 31px;
    height: 31px;
    font-size: 17px;
  }

  .kosa-slider__banner-nav {
    right: 14px;
    bottom: 18px;
  }

  .kosa-slider__dots {
    bottom: 10px;
    gap: 7px;
  }

  .kosa-slider__dots button {
    width: 7px;
    height: 7px;
  }

  .kosa-slider__dots button[aria-selected="true"] {
    width: 17px;
  }
}

@media (max-width: 420px) {
  .kosa-slider__stage {
    border-radius: 13px;
  }

  .kosa-slider__overlay {
    background: linear-gradient(90deg, rgba(9, 32, 26, .41), rgba(9, 32, 26, .03) 78%);
  }

  .kosa-slider__content h2 {
    max-width: 235px;
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kosa-slider *,
  .kosa-slider *::before,
  .kosa-slider *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* KOSA Slider 1.0.2: portrait mobile banners and precise SVG navigation. */
.kosa-slider__image,
.kosa-slider__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.kosa-slider__image img {
  object-fit: cover;
  object-position: center;
}

.kosa-slider__product-nav button,
.kosa-slider__banner-nav button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(235, 162, 159, .28);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #fff8f7 100%);
  box-shadow: 0 10px 24px rgba(21, 63, 55, .16);
  color: #d88784;
}

.kosa-slider__arrow-icon {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.kosa-slider__product-nav button:hover,
.kosa-slider__product-nav button:focus-visible,
.kosa-slider__banner-nav button:hover,
.kosa-slider__banner-nav button:focus-visible {
  border-color: var(--kosa-pink);
  background: var(--kosa-pink);
  color: #fff;
}

@media (max-width: 820px) {
  .kosa-slider__product-nav button,
  .kosa-slider__banner-nav button {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .kosa-slider__arrow-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 600px) {
  .kosa-slider__stage {
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-bottom: 164px;
  }

  .kosa-slider__slide > .kosa-slider__image,
  .kosa-slider__slide > .kosa-slider__image img {
    height: 100%;
  }

  .kosa-slider__content {
    top: 28px;
    max-width: 82%;
  }

  .kosa-slider__content h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
}
/* KOSA Slider 1.0.3: mobile product panel stays in document flow. */
.kosa-slider {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

@media (max-width: 820px) {
  .kosa-slider__stage {
    margin-bottom: 0 !important;
    overflow: hidden !important;
  }

  .kosa-slider__product-panel {
    position: relative !important;
    z-index: 3;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 13px;
  }
}

@media (max-width: 600px) {
  .kosa-slider__stage {
    height: min(125vw, 585px) !important;
    min-height: min(125vw, 585px) !important;
    aspect-ratio: auto !important;
  }
}
/* KOSA Slider 1.0.4: per-slide product panel placement. */
.kosa-slider[data-kosa-product-position="bottom-left"] .kosa-slider__product-panel {
  top: auto;
  right: auto;
  bottom: clamp(30px, 4vw, 60px);
  left: clamp(24px, 5.6vw, 96px);
}

.kosa-slider[data-kosa-product-position="top-left"] .kosa-slider__product-panel {
  top: clamp(30px, 4vw, 60px);
  right: auto;
  bottom: auto;
  left: clamp(24px, 5.6vw, 96px);
}

.kosa-slider[data-kosa-product-position="top-right"] .kosa-slider__product-panel {
  top: clamp(30px, 4vw, 60px);
  right: clamp(24px, 5.6vw, 96px);
  bottom: auto;
  left: auto;
}

.kosa-slider[data-kosa-product-position="bottom-right"] .kosa-slider__product-panel {
  top: auto;
  right: clamp(24px, 5.6vw, 96px);
  bottom: clamp(30px, 4vw, 60px);
  left: auto;
}

.kosa-slider[data-kosa-product-position="bottom-right"] .kosa-slider__banner-nav {
  right: auto;
  left: clamp(24px, 4vw, 72px);
}

@media (max-width: 820px) {
  .kosa-slider__product-panel {
    position: absolute !important;
    width: min(500px, calc(100% - 28px)) !important;
    margin-top: 0 !important;
    padding: 10px !important;
    border-color: rgba(255, 255, 255, .14) !important;
    background: rgba(18, 32, 29, .76) !important;
    box-shadow: 0 16px 35px rgba(8, 24, 21, .22) !important;
    color: #fff !important;
    backdrop-filter: blur(12px) !important;
  }

  .kosa-slider .kosa-slider__product-content h3,
  .kosa-slider .kosa-slider__price,
  .kosa-slider .kosa-slider__product-link {
    color: #fff;
  }

  .kosa-slider .kosa-slider__product-link {
    border-color: rgba(255, 255, 255, .65);
  }

  .kosa-slider[data-kosa-product-position="bottom-left"] .kosa-slider__product-panel {
    top: auto !important;
    right: auto !important;
    bottom: 34px !important;
    left: 14px !important;
  }

  .kosa-slider[data-kosa-product-position="top-left"] .kosa-slider__product-panel {
    top: 22px !important;
    right: auto !important;
    bottom: auto !important;
    left: 14px !important;
  }

  .kosa-slider[data-kosa-product-position="top-right"] .kosa-slider__product-panel {
    top: 22px !important;
    right: 14px !important;
    bottom: auto !important;
    left: auto !important;
  }

  .kosa-slider[data-kosa-product-position="bottom-right"] .kosa-slider__product-panel {
    top: auto !important;
    right: 14px !important;
    bottom: 34px !important;
    left: auto !important;
  }

  .kosa-slider[data-kosa-product-position="bottom-right"] .kosa-slider__banner-nav {
    right: auto;
    left: 14px;
  }
}
@media (max-width: 820px) {
  .kosa-slider__product-image {
    min-height: 150px;
  }

  .kosa-slider__product-content h3 {
    font-size: 14px;
  }

  .kosa-slider__price {
    font-size: 14px;
  }
}
/* KOSA Slider 1.0.5: keep the desktop-style product card below the mobile banner. */
@media (max-width: 820px) {
  .kosa-slider[data-kosa-product-position] .kosa-slider__product-panel {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 13px !important;
  }
}
/* KOSA Slider 1.0.7: slide-level panel background theme and opacity. */
.kosa-slider {
  --kosa-product-panel-opacity: .76;
}

.kosa-slider[data-kosa-product-theme="dark"] .kosa-slider__product-panel {
  border-color: rgba(255, 255, 255, .14) !important;
  background: rgba(18, 32, 29, var(--kosa-product-panel-opacity)) !important;
  color: #fff !important;
}

.kosa-slider[data-kosa-product-theme="dark"] .kosa-slider__product-content h3,
.kosa-slider[data-kosa-product-theme="dark"] .kosa-slider__price,
.kosa-slider[data-kosa-product-theme="dark"] .kosa-slider__product-link {
  color: #fff !important;
}

.kosa-slider[data-kosa-product-theme="dark"] .kosa-slider__product-link {
  border-color: rgba(255, 255, 255, .65) !important;
}

.kosa-slider[data-kosa-product-theme="light"] .kosa-slider__product-panel {
  border-color: rgba(18, 63, 55, .14) !important;
  background: rgba(255, 255, 255, var(--kosa-product-panel-opacity)) !important;
  color: var(--kosa-ink) !important;
}

.kosa-slider[data-kosa-product-theme="light"] .kosa-slider__product-content h3,
.kosa-slider[data-kosa-product-theme="light"] .kosa-slider__price,
.kosa-slider[data-kosa-product-theme="light"] .kosa-slider__product-link {
  color: var(--kosa-ink) !important;
}

.kosa-slider[data-kosa-product-theme="light"] .kosa-slider__product-link {
  border-color: rgba(18, 63, 55, .28) !important;
}

.kosa-slider[data-kosa-product-theme="light"] .kosa-slider__price del {
  color: #71857e !important;
}
/* KOSA Slider 1.0.8: stable arrow-button interaction. */
.kosa-slider__product-nav button,
.kosa-slider__banner-nav button {
  appearance: none;
  -webkit-appearance: none;
  border-color: rgba(235, 162, 159, .36) !important;
  background: #fff8f7 !important;
  box-shadow: 0 8px 18px rgba(21, 63, 55, .13) !important;
  color: #d88784 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease !important;
}

.kosa-slider__product-nav button:hover,
.kosa-slider__product-nav button:focus,
.kosa-slider__product-nav button:focus-visible,
.kosa-slider__product-nav button:active,
.kosa-slider__banner-nav button:hover,
.kosa-slider__banner-nav button:focus,
.kosa-slider__banner-nav button:focus-visible,
.kosa-slider__banner-nav button:active {
  border-color: #eaa29f !important;
  background: #eaa29f !important;
  box-shadow: 0 8px 18px rgba(21, 63, 55, .19) !important;
  color: #fff !important;
  opacity: 1 !important;
  outline: none;
  transform: none !important;
}

.kosa-slider__product-nav button:focus-visible,
.kosa-slider__banner-nav button:focus-visible {
  box-shadow: 0 0 0 3px rgba(234, 162, 159, .34), 0 8px 18px rgba(21, 63, 55, .19) !important;
}

.kosa-slider__arrow-icon,
.kosa-slider__product-nav button .kosa-slider__arrow-icon,
.kosa-slider__banner-nav button .kosa-slider__arrow-icon {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  fill: none !important;
  stroke: currentColor !important;
  transform: none !important;
}
/* KOSA Slider 1.0.9: independently styled mobile product card. */
.kosa-slider {
  --kosa-mobile-product-panel-opacity: .58;
}

@media (max-width: 820px) {
  .kosa-slider__product-nav,
  .kosa-slider__banner-nav {
    display: none !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-panel {
    position: absolute !important;
    z-index: 3;
    top: auto !important;
    right: auto !important;
    bottom: 34px !important;
    left: 14px !important;
    width: min(500px, calc(100% - 28px)) !important;
    margin-top: 0 !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme="light"] .kosa-slider__product-panel {
    border-color: rgba(255, 255, 255, .34) !important;
    background: rgba(255, 255, 255, var(--kosa-mobile-product-panel-opacity)) !important;
    color: var(--kosa-ink) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme="light"] .kosa-slider__product-content h3,
  .kosa-slider[data-kosa-mobile-product-theme="light"] .kosa-slider__price,
  .kosa-slider[data-kosa-mobile-product-theme="light"] .kosa-slider__product-link {
    color: var(--kosa-ink) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme="light"] .kosa-slider__product-link {
    border-color: rgba(18, 63, 55, .28) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme="light"] .kosa-slider__price del {
    color: #71857e !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme="dark"] .kosa-slider__product-panel {
    border-color: rgba(255, 255, 255, .14) !important;
    background: rgba(18, 32, 29, var(--kosa-mobile-product-panel-opacity)) !important;
    color: #fff !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme="dark"] .kosa-slider__product-content h3,
  .kosa-slider[data-kosa-mobile-product-theme="dark"] .kosa-slider__price,
  .kosa-slider[data-kosa-mobile-product-theme="dark"] .kosa-slider__product-link {
    color: #fff !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme="dark"] .kosa-slider__product-link {
    border-color: rgba(255, 255, 255, .65) !important;
  }
}
/* KOSA Slider 1.0.11: independent mobile text colors. */
.kosa-slider {
  --kosa-mobile-product-title-color: #fff;
  --kosa-mobile-product-price-color: #fff;
  --kosa-mobile-product-link-color: #fff;
}

@media (max-width: 820px) {
  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-content h3 {
    color: var(--kosa-mobile-product-title-color) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__price {
    color: var(--kosa-mobile-product-price-color) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-link {
    color: var(--kosa-mobile-product-link-color) !important;
  }
}
/* KOSA Slider 1.0.12: independent desktop text colors. */
.kosa-slider {
  --kosa-product-title-color: #fff;
  --kosa-product-price-color: #fff;
  --kosa-product-link-color: #fff;
}

.kosa-slider[data-kosa-product-theme] .kosa-slider__product-content h3 {
  color: var(--kosa-product-title-color) !important;
}

.kosa-slider[data-kosa-product-theme] .kosa-slider__price {
  color: var(--kosa-product-price-color) !important;
}

.kosa-slider[data-kosa-product-theme] .kosa-slider__product-link {
  color: var(--kosa-product-link-color) !important;
}
/* KOSA Slider 1.0.13: compact mobile product card. */
.kosa-slider__product-category {
  display: none;
}

@media (max-width: 820px) {
  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-panel {
    bottom: 26px !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 13px !important;
    box-shadow: 0 10px 24px rgba(8, 24, 21, .2) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-slide {
    grid-template-columns: 45% 55%;
    min-height: 120px;
    border-radius: 0;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-image {
    position: relative;
    min-height: 120px;
    border-radius: 0;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-category {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    max-width: calc(100% - 16px);
    padding: 4px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .82);
    color: #6f6053;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1;
    text-transform: uppercase;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-content {
    padding: 12px 12px 9px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-content h3 {
    font-size: 11px;
    line-height: 1.12;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__price {
    margin-top: 6px;
    font-size: 12px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-link {
    margin-top: 7px;
    padding-top: 7px;
    font-size: 8px;
  }

  /* These rules come after desktop colors so mobile controls always win. */
  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-content h3 {
    color: var(--kosa-mobile-product-title-color) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__price {
    color: var(--kosa-mobile-product-price-color) !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-link {
    color: var(--kosa-mobile-product-link-color) !important;
  }
}
/* KOSA Slider 1.0.14: target mobile dark translucent preset. */
@media (max-width: 820px) {
  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-panel {
    backdrop-filter: none !important;
  }
}
/* KOSA Slider 1.0.15: card matches the KOSA mock — inset rounded photo and weight selector with a single price. */
.kosa-slider__product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 13px;
}

.kosa-slider__product-meta .kosa-slider__price {
  margin-top: 0;
}

.kosa-slider__variation {
  position: relative;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  color: var(--kosa-product-price-color, #fff);
}

.kosa-slider__variation select {
  appearance: none;
  -webkit-appearance: none;
  max-width: 100%;
  padding: 0 18px 0 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kosa-slider__variation select:focus {
  outline: none;
}

.kosa-slider__variation select option {
  background: #fff;
  color: #123f38;
}

.kosa-slider__variation-caret {
  position: absolute;
  top: 50%;
  right: 0;
  width: 13px;
  height: 13px;
  fill: none;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: translateY(-50%);
}

@media (max-width: 820px) {
  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__variation {
    color: var(--kosa-mobile-product-price-color, #fff);
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-panel {
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-slide {
    grid-template-columns: 38% 1fr;
    gap: 12px;
    min-height: 0;
    border-radius: 0;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 11px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-category {
    top: 7px;
    left: 7px;
    padding: 5px 7px;
    border-radius: 6px;
    background: rgba(37, 44, 38, .72);
    color: #fff;
    font-size: 8px;
    letter-spacing: .05em;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-content {
    padding: 3px 3px 3px 0;
    justify-content: center;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-content h3 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-meta {
    gap: 9px;
    margin-top: 9px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__variation select {
    font-size: 11px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__price {
    margin-top: 0;
    font-size: 13px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-link {
    margin-top: 9px;
    padding-top: 0;
    border-top: 0;
    font-size: 8px;
    letter-spacing: .04em;
  }
}
/* KOSA Slider 1.0.16: rounded product photo on desktop, no mobile weight selector, larger mobile price and link. */
.kosa-slider__product-image {
  overflow: hidden;
  border-radius: 15px;
}

@media (max-width: 820px) {
  .kosa-slider__variation {
    display: none !important;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-image {
    border-radius: 11px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__price {
    font-size: 16px;
  }

  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__product-link {
    font-size: 11px;
  }
}
/* KOSA Slider 1.0.17: no variation dropdown anywhere — a single price only. */
.kosa-slider__variation {
  display: none !important;
}

@media (max-width: 820px) {
  .kosa-slider[data-kosa-mobile-product-theme] .kosa-slider__price {
    margin-top: 7px;
  }
}
/* KOSA Slider 1.0.18: dots and arrow buttons hardened against theme button styles; slightly bigger dots. */
.kosa-slider__dots button {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .72) !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease !important;
}

.kosa-slider__dots button[aria-selected="true"] {
  width: 28px !important;
  border-radius: 20px !important;
  background: var(--kosa-pink) !important;
}

.kosa-slider__product-nav button,
.kosa-slider__banner-nav button {
  display: inline-grid !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 16px !important;
  place-items: center !important;
  line-height: 1 !important;
}

@media (max-width: 820px) {
  .kosa-slider__dots button {
    width: 9px !important;
    height: 9px !important;
  }

  .kosa-slider__dots button[aria-selected="true"] {
    width: 22px !important;
  }

  .kosa-slider__product-nav button,
  .kosa-slider__banner-nav button {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
  }
}
/* KOSA Slider 1.0.19: Montserrat for the banner and the product carousel. */
.kosa-slider,
.kosa-slider *:not(svg):not(path) {
  font-family: "Montserrat", Arial, sans-serif !important;
}