/**
 * Exclusive Showdown — split-screen editorial carousel.
 * Square corners, semantic Avada tokens, no card shadows.
 */

.exclusive-showdown {
  padding: 4rem 0;
  background: transparent;
}

@media (min-width: 768px) {
  .exclusive-showdown {
    padding: 2rem 0;
  }
}

.exclusive-showdown__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#exclusivecarrousel.is-empty {
  display: none;
}

.exclusive-showdown__carousel {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.exclusive-showdown__stage {
  overflow: hidden;
}

.exclusive-showdown__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  opacity: 1;
}

@media (min-width: 1024px) {
  .exclusive-showdown__split {
    grid-template-columns: 1fr 1fr;
  }
}

.exclusive-showdown__split--fade-in {
  animation: exclusive-showdown-fade 500ms ease;
}

@keyframes exclusive-showdown-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.exclusive-showdown__panel--media,
.exclusive-showdown__panel--content {
  min-width: 0;
}

.exclusive-showdown__panel--content {
  background: #fff;
}

.exclusive-showdown__media {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #e8e8e8;
}

@media (min-width: 768px) {
  .exclusive-showdown__media {
    height: 500px;
  }
}

.exclusive-showdown__media-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.exclusive-showdown__media-link:focus-visible {
  outline: 2px solid #cb2b2b;
  outline-offset: -2px;
}

.exclusive-showdown__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.45s ease;
}

.exclusive-showdown__media-link:hover img,
.exclusive-showdown__media-link:focus-visible img {
  transform: scale(1.06);
}

.exclusive-showdown__media-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
}

.exclusive-showdown__exclusive-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  font-family: Questrial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #bda674;
  color: #1a1a1a;
  border-radius: 0;
}

.exclusive-showdown__feature-pills {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: calc(100% - 2rem);
}

.exclusive-showdown__feature-pill {
  padding: 0.25rem 0.75rem;
  font-family: Questrial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(26, 26, 26, 0.8);
  color: #fff;
  border-radius: 0;
}

.exclusive-showdown__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  background: #fff;
  color: #2e353d;
  border-radius: 0;
}

@media (min-width: 768px) {
  .exclusive-showdown__content {
    min-height: 500px;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .exclusive-showdown__content {
    padding: 4rem;
  }
}

.exclusive-showdown__location {
  margin: 0 0 0.5rem;
  font-family: Questrial, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cb2b2b;
}

.exclusive-showdown__title {
  margin: 0 0 1rem;
  font-family: var(--awb-typography1-font-family, "Playfair Display", serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: #2e353d;
}

@media (min-width: 1024px) {
  .exclusive-showdown__title {
    font-size: 2.25rem;
  }
}

.exclusive-showdown__title a {
  color: inherit;
  text-decoration: none;
}

.exclusive-showdown__title a:hover {
  color: #cb2b2b;
}

.exclusive-showdown__price {
  margin: 0 0 1.5rem;
  font-family: var(--awb-typography1-font-family, "Playfair Display", serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: #2e353d;
}

.exclusive-showdown__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d3d8de;
}

.exclusive-showdown__stat-value {
  margin: 0;
  font-family: var(--awb-typography1-font-family, "Playfair Display", serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #2e353d;
}

.exclusive-showdown__stat-label {
  margin: 0.25rem 0 0;
  font-family: Questrial, sans-serif;
  font-size: 0.875rem;
  color: #586574;
}

.exclusive-showdown .btn-primary-brand {
  display: inline-block;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-family: Questrial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  color: #fff;
  background: #cb2b2b;
  border: none;
  border-radius: 0;
  transition: background 0.2s ease;
}

.exclusive-showdown .btn-primary-brand:hover {
  color: #fff;
  background: #b91c1c;
}

.exclusive-showdown__arrow[hidden] {
  display: none;
}

.exclusive-showdown__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fff;
  border: 1px solid #d3d8de;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  color: #2e353d;
  cursor: pointer;
  transform: translateY(-50%);
  border-radius: 0;
  transition: background 0.2s ease;
}

.exclusive-showdown__arrow:hover {
  background: #f7f7f7;
  color: #2e353d;
}

.exclusive-showdown__arrow--prev {
  left: 0;
  transform: translate(-1rem, -50%);
}

.exclusive-showdown__arrow--next {
  right: 0;
  transform: translate(1rem, -50%);
}

@media (min-width: 768px) {
  .exclusive-showdown__arrow--prev {
    transform: translate(-1.5rem, -50%);
  }

  .exclusive-showdown__arrow--next {
    transform: translate(1.5rem, -50%);
  }
}

@media (min-width: 1024px) {
  .exclusive-showdown__arrow--prev {
    transform: translate(-3rem, -50%);
  }

  .exclusive-showdown__arrow--next {
    transform: translate(3rem, -50%);
  }
}

.exclusive-showdown__indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.exclusive-showdown__indicator {
  height: 0.5rem;
  width: 1rem;
  padding: 0;
  border: none;
  background: #d3d8de;
  cursor: pointer;
  border-radius: 0;
  transition: width 0.2s ease, background 0.2s ease;
}

.exclusive-showdown__indicator.is-active {
  width: 2rem;
  background: #cb2b2b;
}

.exclusive-showdown__indicator:not(.is-active):hover {
  background: #586574;
}

@media (max-width: 1023px) {
  .exclusive-showdown--single .exclusive-showdown__carousel {
    padding-left: 0;
    padding-right: 0;
  }

  .exclusive-showdown__arrow--prev {
    left: 0;
    transform: translateY(-50%);
  }

  .exclusive-showdown__arrow--next {
    right: 0;
    transform: translateY(-50%);
  }
}
