.launch-overlap-showcase {
  width: 100%;
  padding: var(--los-padding-top) 20px var(--los-padding-bottom);
  box-sizing: border-box;
}

.launch-overlap-showcase *,
.launch-overlap-showcase *::before,
.launch-overlap-showcase *::after {
  box-sizing: border-box;
}

.launch-overlap-showcase__inner {
  width: 100%;
  max-width: var(--los-width);
  margin: 0 auto;
  font-family: inherit;
}

.launch-overlap-showcase__heading {
  margin: 0 0 24px;
  font-family: inherit;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.launch-overlap-showcase--heading-left .launch-overlap-showcase__heading {
  text-align: left;
}

.launch-overlap-showcase--heading-center .launch-overlap-showcase__heading {
  text-align: center;
}

.launch-overlap-showcase__hero {
  position: relative;
  z-index: 1;
  height: var(--los-hero-height);
  overflow: hidden;
  border-radius: var(--los-hero-radius);
  background: #EAF3FF;
}

.launch-overlap-showcase__hero-desktop,
.launch-overlap-showcase__hero-mobile {
  width: 100%;
  height: 100%;
}

.launch-overlap-showcase__hero-mobile {
  display: none;
}

.launch-overlap-showcase__hero-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--los-hero-fit);
}

.launch-overlap-showcase__cards {
  position: relative;
  z-index: 3;
  margin-top: calc(var(--los-card-overlap) * -1);
}

.launch-overlap-showcase--single .launch-overlap-showcase__cards {
  display: flex;
  justify-content: center;
}

.launch-overlap-showcase--single .launch-overlap-product {
  width: min(100%, var(--los-single-card-width));
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr) minmax(210px, .8fr);
  align-items: center;
}

.launch-overlap-showcase--double .launch-overlap-showcase__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--los-card-gap);
}

.launch-overlap-product {
  position: relative;
  display: grid;
  min-width: 0;
  padding: var(--los-card-padding);
  border-radius: var(--los-card-radius);
  overflow: hidden;
  font-family: inherit;
}

.launch-overlap-showcase--shadow .launch-overlap-product {
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
}

.launch-overlap-showcase--double .launch-overlap-product {
  grid-template-columns: 1fr;
  text-align: left;
}

.launch-overlap-product__copy,
.launch-overlap-product__purchase,
.launch-overlap-product__media {
  min-width: 0;
}

.launch-overlap-product__copy {
  align-self: center;
}

.launch-overlap-product__title {
  margin: 0;
  color: #111;
  font-family: inherit;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.launch-overlap-product__subtitle {
  margin-top: 6px;
  color: #555;
  font-size: 13px;
  line-height: 1.35;
}

.launch-overlap-product__description {
  margin: 14px 0 0;
  color: #6D737B;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.launch-overlap-product__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 10px;
}

.launch-overlap-showcase--double .launch-overlap-product__media {
  min-height: 220px;
  margin: 14px 0 6px;
}

.launch-overlap-product__image,
.launch-overlap-product__media > svg,
.launch-overlap-product__media picture,
.launch-overlap-product__media picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.launch-overlap-product__badge {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 8px;
  border-radius: 50%;
  background: var(--los-badge-bg);
  color: var(--los-badge-text);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.launch-overlap-product__purchase {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.launch-overlap-showcase--double .launch-overlap-product__purchase {
  align-items: center;
  text-align: center;
}

.launch-overlap-product__prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-overlap-product__price {
  color: var(--los-price-color);
  font-size: var(--los-price-size);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.launch-overlap-product__compare {
  color: var(--los-compare-color);
  font-size: var(--los-compare-size);
  line-height: 1;
  white-space: nowrap;
}

.launch-overlap-product__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
  min-height: 42px;
  margin-top: 16px;
  padding: 9px 20px;
  border: 1px solid;
  border-radius: 999px;
  font-family: inherit;
  font-size: var(--los-buy-size);
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: var(--los-buy-bg);
  color: var(--los-buy-text);
  border-color: var(--los-buy-bg);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.launch-overlap-product__buy:hover,
.launch-overlap-product__buy:focus-visible {
  background: var(--los-buy-hover-bg);
  color: var(--los-buy-hover-text);
  border-color: var(--los-buy-hover-bg);
}

.launch-overlap-product__view {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  color: var(--los-view-color);
  font-size: var(--los-view-size);
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease;
}

.launch-overlap-product__view:hover,
.launch-overlap-product__view:focus-visible {
  color: var(--los-view-hover-color);
}

.launch-overlap-product__spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.42);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: los-spin .7s linear infinite;
}

.launch-overlap-product__buy.is-loading .launch-overlap-product__spinner {
  display: inline-block;
}

.launch-overlap-product__buy.is-loading {
  pointer-events: none;
  opacity: .72;
}

.launch-overlap-product__error {
  margin-top: 8px;
  color: #C62828;
  font-size: 11px;
  line-height: 1.35;
}

.launch-overlap-product--placeholder {
  min-height: 260px;
  align-items: center;
  justify-content: center;
  border: 1px dashed #bbb;
  text-align: center;
}

@keyframes los-spin {
  to { transform: rotate(360deg); }
}

/* Double-card desktop layout */
.launch-overlap-showcase--double .launch-overlap-product__title {
  font-size: 18px;
}

.launch-overlap-showcase--double .launch-overlap-product__description {
  font-size: 11px;
}

@media (max-width: 1023px) {
  .launch-overlap-showcase--single .launch-overlap-product {
    grid-template-columns: 1fr 1fr;
  }

  .launch-overlap-showcase--single .launch-overlap-product__purchase {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    padding-top: 16px;
  }
}

@media (max-width: 767px) {
  .launch-overlap-showcase {
    padding-left: 14px;
    padding-right: 14px;
  }

  .launch-overlap-showcase__heading {
    font-size: min(24px, 8vw) !important;
  }

  .launch-overlap-showcase__hero {
    height: var(--los-mobile-hero-height);
  }

  .launch-overlap-showcase__hero-desktop {
    display: none;
  }

  .launch-overlap-showcase__hero-mobile {
    display: block;
  }

  .launch-overlap-showcase__cards {
    margin-top: calc(var(--los-mobile-card-overlap) * -1);
  }

  .launch-overlap-showcase--single .launch-overlap-showcase__cards,
  .launch-overlap-showcase--double .launch-overlap-showcase__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .launch-overlap-showcase--single .launch-overlap-product,
  .launch-overlap-showcase--double .launch-overlap-product {
    width: 100%;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .launch-overlap-product__copy {
    order: 1;
  }

  .launch-overlap-product__media {
    order: 2;
    min-height: 210px;
    margin: 12px 0 4px;
  }

  .launch-overlap-product__purchase {
    order: 3;
    align-items: stretch !important;
    text-align: left !important;
  }

  .launch-overlap-product__prices {
    justify-content: flex-start;
  }

  .launch-overlap-product__buy {
    width: 100%;
  }

  .launch-overlap-product__view {
    justify-content: center;
  }
}