.custom-showroom-feature {
  padding-top: 15px;
  padding-bottom: 25px;
}

.custom-showroom-feature__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--color-light-text));
}


.custom-showroom-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.custom-showroom-feature__copy {
  position: relative;
  padding: 36px;
  overflow: hidden;
}

.custom-showroom-feature__copy-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.custom-showroom-feature__copy--has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
  z-index: 1;
}

.custom-showroom-feature__copy-inner {
  position: relative;
  z-index: 2;
}

.custom-showroom-feature__copy-heading {
  margin: 0 0 14px;
  font-family: var(--title-font);
  font-weight: var(--title-font-weight);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 700px;
}

.custom-showroom-feature__copy-body {
  margin: 0 0 22px;
  max-width: 640px;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(var(--color-scheme-1-text), 0.78);
}

.custom-showroom-feature__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.custom-showroom-feature__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.custom-showroom-feature__point {
  padding: 16px;
  background: rgba(var(--color-scheme-1-text), 0.06);
  border: 1px solid rgba(var(--color-scheme-1-text), 0.12);
}

.custom-showroom-feature__point-title {
  display: block;
  margin-bottom: 6px;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
}

.custom-showroom-feature__point-body {
  display: block;
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(var(--color-scheme-1-text), 0.76);
}

.custom-showroom-feature__visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background-color: rgb(var(--color-scheme-1-bg));
}

.custom-showroom-feature__swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.custom-showroom-feature__slide {
  position: relative;
  overflow: hidden;
  background-color: rgb(var(--color-scheme-1-bg));
}

.custom-showroom-feature__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 1400ms ease-out;
  will-change: transform;
}

@keyframes custom-showroom-feature-ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.custom-showroom-feature__slide.swiper-slide-active .custom-showroom-feature__slide-image {
  animation: custom-showroom-feature-ken-burns 4800ms ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .custom-showroom-feature__slide.swiper-slide-active .custom-showroom-feature__slide-image {
    animation: none;
  }
}

.custom-showroom-feature__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.custom-showroom-feature__nav:hover {
  background: rgba(0, 0, 0, 0.65);
}

.custom-showroom-feature__nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.custom-showroom-feature__nav::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  display: block;
}

.custom-showroom-feature__nav--prev {
  left: 16px;
}

.custom-showroom-feature__nav--prev::after {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.custom-showroom-feature__nav--next {
  right: 16px;
}

.custom-showroom-feature__nav--next::after {
  transform: rotate(45deg);
  margin-right: 4px;
}

.custom-showroom-feature__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.custom-showroom-feature__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  margin: 0 !important;
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.custom-showroom-feature__pagination .swiper-pagination-bullet-active {
  background: #FFFFFF;
  transform: scale(1.15);
}

@media (max-width: 1024px) {
  .custom-showroom-feature__grid {
    grid-template-columns: 1fr;
  }

  .custom-showroom-feature__visual {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .custom-showroom-feature__copy {
    padding: 24px;
  }

  .custom-showroom-feature__points {
    grid-template-columns: 1fr;
  }

  .custom-showroom-feature__visual {
    min-height: 360px;
  }

  .custom-showroom-feature__nav {
    width: 36px;
    height: 36px;
  }
}
