.tb-reel-section {
  padding: 32px 0 24px;
  background: #f5f4f1;
}

.tb-reel-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 20px;
  text-align: center;
}

.tb-reel-eyebrow {
  font-family: "General Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c7a56a;
  margin: 0 0 6px;
  display: block;
}

.tb-reel-title {
  font-family: "Satoshi", sans-serif;
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #17171a;
  margin: 0 0 6px;
  white-space: nowrap;
}

.tb-reel-subtitle {
  font-family: "General Sans", sans-serif;
  font-size: 15px;
  color: #17171a;
  line-height: 1.6;
  margin: 0;
}

/* Strip */
.tb-reel-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 8px clamp(24px, 4vw, 72px) 16px;
}

/* Item */
.tb-reel-item {
  flex: 0 0 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* Card */
.tb-reel-card {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: box-shadow 0.25s ease;
}

/* Hover: shadow increase */
.tb-reel-item:hover .tb-reel-card {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

/* Thumbnail: zoom on hover */
.tb-reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.tb-reel-item:hover .tb-reel-card img {
  transform: scale(1.02);
}

/* Placeholder background */
.tb-reel-placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Dark hover overlay */
.tb-reel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
  pointer-events: none;
}

.tb-reel-item:hover .tb-reel-card::before {
  opacity: 1;
}

/* Play button */
.tb-reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17171a;
  font-size: 16px;
  padding-left: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 3;
}

.tb-reel-item:hover .tb-reel-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Bottom overlay */
.tb-reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  z-index: 3;
}

.tb-reel-stars {
  color: #c7a56a;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.tb-reel-quote {
  font-family: "General Sans", sans-serif;
  font-size: 12px;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* Category label */
.tb-reel-category {
  font-family: "General Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17171a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-reel-category i {
  color: #c7a56a;
}

/* CTA */
.tb-reel-cta {
  text-align: center;
  margin-top: 16px;
}

.tb-reel-btn {
  background-color: #c7a56a;
  color: #0a0d10;
  border: none;
  padding: 14px 40px;
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.08em;
  display: inline-block !important;
  width: auto !important;
}

.tb-reel-btn:hover {
  background-color: #b8945c;
}

/* Video Modal */
#video-modal {
  opacity: 0;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#video-modal.active {
  opacity: 1;
}

/* Tablet: scrollable strip */
@media (min-width: 768px) and (max-width: 1080px) {
  .tb-reel-title {
    white-space: normal;
  }

  .tb-reel-strip {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 32px 16px;
    scrollbar-width: none;
  }

  .tb-reel-strip::-webkit-scrollbar {
    display: none;
  }

  .tb-reel-item {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }
}

/* Mobile carousel */
@media (max-width: 767px) {
  .tb-reel-title {
    white-space: normal;
    font-size: clamp(22px, 7vw, 32px);
  }

  .tb-reel-subtitle {
    font-size: 14px;
  }

  .tb-reel-strip {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px 16px;
    scrollbar-width: none;
    gap: 12px;
  }

  .tb-reel-strip::-webkit-scrollbar {
    display: none;
  }

  .tb-reel-item {
    flex: 0 0 78vw;
    max-width: 270px;
    scroll-snap-align: center;
  }

  .tb-reel-card {
    aspect-ratio: 9 / 16;
  }

  /* Carousel dots */
  .tb-reel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
  }

  .tb-reel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .tb-reel-dot.active {
    background: #c7a56a;
    transform: scale(1.3);
  }
}

@media (min-width: 768px) {
  .tb-reel-dots { display: none; }
}
