/* ── 3. Carousel (.qhr-carousel) ──────────────────────────────────── */
.qhr-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--qhr-radius-xl, 20px);
  background-color: var(--qhr-surface-card, #130f0b);
  border: 1px solid var(--qhr-border-subtle, rgba(212,175,55,0.18));
}
.qhr-carousel-track {
  display: flex;
  width: 100%;
  transition: transform var(--qhr-motion-duration-slow, 350ms) cubic-bezier(0.16, 1, 0.3, 1);
}
.qhr-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  box-sizing: border-box;
}
.qhr-carousel-control {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--qhr-surface-elevated, rgba(19, 15, 11, 0.85));
  border: 1px solid var(--qhr-border-subtle, rgba(212,175,55,0.25));
  color: var(--qhr-text-primary, #fbf8f3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color var(--qhr-motion-duration-fast, 150ms);
}
.qhr-carousel-control:hover {
  background: var(--qhr-color-primary-base, #c7a35a);
  color: #0a0806;
}
.qhr-carousel-control--prev {
  inset-inline-start: var(--qhr-space-4, 16px);
}
.qhr-carousel-control--next {
  inset-inline-end: var(--qhr-space-4, 16px);
}
.qhr-carousel-indicators {
  position: absolute;
  inset-block-end: var(--qhr-space-4, 16px);
  inset-inline: 0;
  display: flex;
  justify-content: center;
  gap: var(--qhr-space-2, 8px);
  z-index: 10;
}
.qhr-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--qhr-radius-pill, 9999px);
  background: var(--qhr-border-strong, rgba(255,255,255,0.3));
  cursor: pointer;
  transition: all var(--qhr-motion-duration-fast, 150ms);
}
.qhr-carousel-dot.is-active {
  width: 24px;
  background: var(--qhr-color-primary-base, #c7a35a);
}
