.eba-promote-carousel {
  position: relative;
}

.eba-promote-slide {
  display: none;
}

.eba-promote-slide.is-active {
  display: block;
}

.eba-promote-wrapper {
  background-color: #ffe4d1;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: #5a4638;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans TC", "PingFang TC", sans-serif;
}

.eba-promote-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #b6763d;
  margin-bottom: 4px;
}

.eba-promote-title {
  font-size: 20px;
  margin: 4px 0 8px;
}

.eba-promote-desc {
  font-size: 14px;
  color: #6f5846;
  line-height: 1.7;
  margin: 0 0 16px;
}

.eba-promote-meta {
  font-size: 13px;
  color: #8f7663;
  margin-bottom: 8px;
}

.eba-promote-sale-line,
.eba-promote-timer-line {
  font-size: 14px;
  font-weight: 600;
  color: #5a4638;
  margin-bottom: 6px;
}

.eba-promote-price-original {
  text-decoration: line-through;
  color: #8f7663;
}

.eba-promote-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.eba-promote-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #ffbfa3;
  color: #5a4638;
  font-size: 12px;
  line-height: 1.2;
}

.eba-promote-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eba-promote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.eba-promote-btn-primary {
  background-color: #b6763d;
  color: #fff;
  border-color: #b6763d;
}

.eba-promote-btn-primary:hover {
  background-color: #9d6230;
}

.eba-promote-btn-outline {
  background-color: transparent;
  color: #b6763d;
  border-color: #b6763d;
}

.eba-promote-btn-outline:hover {
  background-color: rgba(182, 118, 61, 0.1);
}

.eba-promote-image {
  border-radius: 16px;
  background-color: #fad7bf;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.eba-promote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eba-promote-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6763d;
  transition: background 0.2s ease;
}

.eba-promote-nav:hover {
  background: #fff;
}

.eba-promote-nav-prev {
  left: -12px;
}

.eba-promote-nav-next {
  right: -12px;
}

@media (max-width: 900px) {
  .eba-promote-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .eba-promote-nav-prev {
    left: 0;
  }
  .eba-promote-nav-next {
    right: 0;
  }
}
