.top-banner-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 200;
}

.tbs-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}

.tbs-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 40px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbs-link {
  color: #fff;
  text-decoration: underline;
  font-size: 13px;
}

.tbs-btn {
  color: #fff;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 3px;
  padding: 3px 12px;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.tbs-btn:hover { background: rgba(255,255,255,0.4); color: #fff; }

.tbs-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  padding: 2px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.tbs-promo-code:hover { background: rgba(255,255,255,0.35); }
.tbs-code-text { font-weight: 700; letter-spacing: 0.05em; }
.tbs-copy-btn { font-size: 11px; opacity: 0.8; }

.tbs-dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.tbs-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s;
}
.tbs-dot.active { background: #fff; }

/* Mobile */
@media (max-width: 767px) {
  .top-banner-slider {
    height: var(--tbs-height-mobile, 34px) !important;
  }
  .tbs-slide {
    font-size: 12px;
    padding: 0 16px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .top-banner-slider {
    height: var(--tbs-height-tablet, 36px) !important;
  }
  .tbs-slide { font-size: 13px; }
}