/* Dorris Stories — all classes prefixed dorris- to avoid theme conflicts */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Roboto+Mono:wght@400;500&display=swap");

/* -------------------------------------------------------------------------
   Carousel
   ---------------------------------------------------------------------- */

.dorris-stories {
  margin: 16px 0;
}

.dorris-stories__heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: currentColor;
  margin: 0 0 10px;
}

.dorris-stories__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.dorris-stories__row::-webkit-scrollbar {
  display: none;
}

.dorris-stories__thumb {
  position: relative;
  flex-shrink: 0;
  width: var(--dorris-thumb-size, 88px);
  height: var(--dorris-thumb-size, 88px);
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid transparent;
  background: #e5e7eb;
  cursor: pointer;
  scroll-snap-align: start;
  padding: 0;
  transition: border-color 0.15s;
}

.dorris-stories__thumb:hover,
.dorris-stories__thumb:focus-visible {
  border-color: #c5612b;
  outline: none;
}

.dorris-stories__thumb-poster,
.dorris-stories__thumb-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dorris-stories__thumb-preview {
  z-index: 1;
}

/* -------------------------------------------------------------------------
   Player — backdrop
   ---------------------------------------------------------------------- */

.dorris-player {
  /* Design tokens scoped here — not :root (Shopify theme pollution risk) */
  --haven-orange: #d37046;
  --haven-orange-dark: #c5612b;
  --haven-orange-hover: #b15726;
  --haven-orange-active: #9d4d22;
  --haven-black: #121212;
  --haven-white: #ffffff;
  --haven-paper: #fafaf7;
  --haven-gray-100: #f9f9f9;
  --haven-gray-300: #e0e0e0;
  --haven-gray-600: #666666;
  --haven-gray-700: #333333;
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
  --radius-btn: 4px;
  --radius-card: 8px;
  --radius-pill: 40px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.05);
  --strip-height: 96px;

  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dorris-fade-in 0.2s ease;
  user-select: none;
  font-family: var(--font-body);
}

@keyframes dorris-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* -------------------------------------------------------------------------
   Modal card
   ---------------------------------------------------------------------- */

.dorris-player__modal {
  position: relative;
  width: min(400px, 92vw);
  aspect-ratio: 9 / 16;
  max-height: 90dvh;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.7);
  animation: dorris-modal-in 0.28s cubic-bezier(0.34, 1.35, 0.64, 1);
  display: flex;
  flex-direction: column;
  color: var(--haven-black);
}

@keyframes dorris-modal-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Desktop side-panel */
@media (min-width: 720px) {
  .dorris-player {
    align-items: center;
  }

  .dorris-player__modal {
    width: min(720px, 96vw);
    height: min(520px, 90vh);
    max-height: 90vh;
    aspect-ratio: unset;
    flex-direction: row;
    background: var(--haven-paper);
    border-radius: 16px;
  }

  .dorris-player__stage {
    width: 300px;
    flex-shrink: 0;
    height: 100%;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
  }

  .dorris-player__panel {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    /* no overflow-y here — panelScrollEl scrolls; pagination + footer stay pinned */
    padding: 0;
    background: var(--haven-paper);
  }

  .dorris-player__sheet {
    display: none !important;
  }
  .dorris-player__rail {
    display: none !important;
  }
}

/* Mobile full-bleed */
@media (max-width: 719px) {
  .dorris-player {
    align-items: stretch;
    /* backdrop-filter breaks video GPU compositing on iOS/Android — disable on mobile */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #000;
  }

  .dorris-player__modal {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    max-height: none;
    border-radius: 0;
    background: #000;
  }

  .dorris-player__stage {
    position: absolute;
    inset: 0;
  }

  .dorris-player__panel {
    display: none !important;
  }

  /* Ensure top bar clears notch / status bar on iOS */
  .dorris-player__top {
    padding-top: max(12px, calc(env(safe-area-inset-top) + 8px));
  }
}

/* Hide floating widgets while player is open */
body.dorris-player-open re-widget,
body.dorris-player-open [id*="redo-"],
body.dorris-player-open .redo-widget-container,
body.dorris-player-open [class*="chat-widget-container"],
body.dorris-player-open [id*="chat-widget"] {
  display: none !important;
}

/* -------------------------------------------------------------------------
   Stage (video + overlay controls)
   ---------------------------------------------------------------------- */

.dorris-player__stage {
  position: relative;
  background: #000;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   Video
   ---------------------------------------------------------------------- */

.dorris-player__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Slide transitions */
@keyframes dorris-slide-out-left {
  to {
    transform: translateX(-18%);
    opacity: 0;
  }
}
@keyframes dorris-slide-out-right {
  to {
    transform: translateX(18%);
    opacity: 0;
  }
}
@keyframes dorris-slide-in-right {
  from {
    transform: translateX(18%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes dorris-slide-in-left {
  from {
    transform: translateX(-18%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.dorris-player__video--slide-out-left {
  animation: dorris-slide-out-left 0.2s ease forwards;
}
.dorris-player__video--slide-out-right {
  animation: dorris-slide-out-right 0.2s ease forwards;
}
.dorris-player__video--slide-in-right {
  animation: dorris-slide-in-right 0.25s ease forwards;
}
.dorris-player__video--slide-in-left {
  animation: dorris-slide-in-left 0.25s ease forwards;
}

/* -------------------------------------------------------------------------
   Top bar
   ---------------------------------------------------------------------- */

.dorris-player__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px 8px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
}

.dorris-player__segments {
  display: flex;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.dorris-player__seg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.dorris-player__seg--done {
  background: rgba(255, 255, 255, 0.9);
}

.dorris-player__seg-fill {
  height: 100%;
  background: #fff;
  animation: dorris-seg-fill linear forwards;
  animation-duration: 15s;
  width: 0%;
}

@keyframes dorris-seg-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.dorris-player__counter {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  flex-shrink: 0;
}

.dorris-player__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
}

.dorris-player__close svg {
  width: 20px;
  height: 20px;
}
.dorris-player__close:hover {
  opacity: 1;
}

/* -------------------------------------------------------------------------
   Pause overlay icon
   ---------------------------------------------------------------------- */

.dorris-player__pause-icon {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}

.dorris-player__pause-icon--visible {
  opacity: 1;
}

.dorris-player__pause-icon svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

/* -------------------------------------------------------------------------
   Caption overlay
   ---------------------------------------------------------------------- */

.dorris-player__caption {
  position: absolute;
  left: 14px;
  bottom: calc(var(--strip-height) + 36px);
  z-index: 9;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  max-width: 60%;
  line-height: 1.4;
}

/* -------------------------------------------------------------------------
   Right control rail (mobile only)
   ---------------------------------------------------------------------- */

.dorris-player__rail {
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dorris-player__rail-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.75;
  transition:
    opacity 0.15s,
    background 0.15s;
  padding: 0;
}

.dorris-player__rail-btn svg {
  width: 16px;
  height: 16px;
}

.dorris-player__rail-btn:hover,
.dorris-player__rail-btn:focus-visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.55);
  outline: none;
}

/* -------------------------------------------------------------------------
   Edge navigation arrows (replace full-height tap zones)
   ---------------------------------------------------------------------- */

.dorris-player__edge-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.2s,
    background 0.15s;
  padding: 0;
}

.dorris-player__edge-nav svg {
  width: 18px;
  height: 18px;
}

.dorris-player__edge-nav--prev {
  left: 8px;
}
.dorris-player__edge-nav--next {
  right: 8px;
}

@media (hover: hover) {
  .dorris-player__stage:hover .dorris-player__edge-nav {
    opacity: 0.8;
  }
  .dorris-player__edge-nav:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.65);
  }
}

@media (hover: none) {
  .dorris-player__edge-nav {
    opacity: 0.45;
    background: rgba(0, 0, 0, 0.3);
  }
}

/* -------------------------------------------------------------------------
   Scrub bar
   ---------------------------------------------------------------------- */

.dorris-player__scrub {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(var(--strip-height) + 6px);
  z-index: 10;
  width: calc(100% - 24px);
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  cursor: pointer;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.85) var(--dorris-scrub-pct, 0%),
    rgba(255, 255, 255, 0.3) var(--dorris-scrub-pct, 0%),
    rgba(255, 255, 255, 0.3) 100%
  );
}

.dorris-player__scrub::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  margin-top: -4.5px;
}

.dorris-player__scrub::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dorris-player__scrub::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 2px;
}

/* Desktop: scrub at bottom of video panel */
@media (min-width: 720px) {
  .dorris-player__scrub {
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }

  .dorris-player__caption {
    bottom: 40px;
  }
}

/* -------------------------------------------------------------------------
   Bottom sheet (mobile only)
   ---------------------------------------------------------------------- */

.dorris-player__sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62vh;
  background: var(--haven-paper);
  border-radius: 18px 18px 0 0;
  transform: translateY(calc(62vh - var(--strip-height)));
  transition: transform 0.28s cubic-bezier(0.34, 1.35, 0.64, 1);
  z-index: 11;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dorris-player__sheet--expanded {
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   Sheet — drag handle
   ---------------------------------------------------------------------- */

.dorris-player__sheet-handle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 4px;
  cursor: pointer;
}

.dorris-player__sheet-handle-pill {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.18);
}

/* -------------------------------------------------------------------------
   Sheet — collapsed strip
   ---------------------------------------------------------------------- */

.dorris-player__strip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 10px;
  cursor: pointer;
}

.dorris-player__strip-img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-card);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--haven-gray-300);
}

.dorris-player__strip-info {
  flex: 1;
  min-width: 0;
}

.dorris-player__strip-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--haven-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 2px;
}

.dorris-player__strip-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--haven-gray-600);
  margin: 0;
}

.dorris-player__strip-cta {
  flex-shrink: 0;
  background: var(--haven-orange-dark);
  color: var(--haven-white);
  border: 1px solid var(--haven-orange-dark);
  border-radius: var(--radius-btn);
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.dorris-player__strip-cta:hover {
  background: var(--haven-orange-hover);
}
.dorris-player__strip-cta:active {
  background: var(--haven-orange-active);
}
.dorris-player__strip-cta:disabled {
  opacity: 0.6;
  cursor: default;
}

/* -------------------------------------------------------------------------
   Sheet — expanded body
   ---------------------------------------------------------------------- */

.dorris-player__sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 14px 80px;
  -webkit-overflow-scrolling: touch;
}

.dorris-player__sheet-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0 14px;
  border-bottom: 1px solid var(--haven-gray-300);
  margin-bottom: 14px;
}

.dorris-player__sheet-header img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-card);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--haven-gray-300);
}

.dorris-player__sheet-header-info {
  flex: 1;
  min-width: 0;
}

.dorris-player__sheet-header-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--haven-black);
  margin: 0 0 2px;
}

.dorris-player__sheet-header-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--haven-gray-600);
  margin: 0 0 4px;
}

.dorris-player__sheet-header-price {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--haven-orange-dark);
  margin: 0;
}

/* -------------------------------------------------------------------------
   Media gallery
   ---------------------------------------------------------------------- */

.dorris-player__gallery {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 14px;
  padding-bottom: 2px;
}

.dorris-player__gallery::-webkit-scrollbar {
  display: none;
}

.dorris-player__gallery-thumb {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px solid var(--haven-gray-300);
  cursor: pointer;
  padding: 0;
  background: var(--haven-gray-100);
  transition: border-color 0.15s;
}

.dorris-player__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dorris-player__gallery-thumb--active {
  border-color: var(--haven-orange-dark);
}

@media (min-width: 720px) {
  .dorris-player__gallery-thumb {
    width: 64px;
    height: 64px;
  }
}

/* -------------------------------------------------------------------------
   Variants
   ---------------------------------------------------------------------- */

.dorris-player__variants {
  margin-bottom: 14px;
}

.dorris-player__variants-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--haven-gray-600);
  margin: 0 0 8px;
  display: block;
}

.dorris-player__variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dorris-player__variant {
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--haven-black);
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--haven-black);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
}

.dorris-player__variant--active {
  border-color: var(--haven-orange-dark);
  color: var(--haven-orange-dark);
  background: rgba(197, 97, 43, 0.12);
}

.dorris-player__variant--disabled {
  opacity: 0.4;
  text-decoration: line-through;
  pointer-events: none;
  cursor: default;
}

/* -------------------------------------------------------------------------
   Description
   ---------------------------------------------------------------------- */

.dorris-player__desc {
  margin-bottom: 14px;
}

.dorris-player__desc-inner {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--haven-gray-700);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dorris-player__desc-inner a {
  color: var(--haven-orange-dark);
}

.dorris-player__desc-inner h1,
.dorris-player__desc-inner h2,
.dorris-player__desc-inner h3,
.dorris-player__desc-inner h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--haven-black);
  margin: 6px 0 2px;
}

.dorris-player__desc-inner p {
  margin: 0 0 5px;
}

.dorris-player__desc-inner ul,
.dorris-player__desc-inner ol {
  padding-left: 16px;
  margin: 3px 0;
}

.dorris-player__desc-inner li {
  margin-bottom: 2px;
}

.dorris-player__desc--expanded .dorris-player__desc-inner {
  -webkit-line-clamp: unset;
  overflow: visible;
}

@media (min-width: 720px) {
  .dorris-player__desc-inner {
    -webkit-line-clamp: 4;
  }
}

.dorris-player__desc-toggle {
  background: none;
  border: none;
  color: var(--haven-orange-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0 0;
  display: block;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s;
}

.dorris-player__desc-toggle:hover {
  text-decoration-color: var(--haven-orange-dark);
}

/* -------------------------------------------------------------------------
   Sheet footer CTAs (shared with panel)
   ---------------------------------------------------------------------- */

.dorris-player__sheet-footer {
  position: sticky;
  bottom: 0;
  background: var(--haven-paper);
  padding: 12px 14px 18px;
  border-top: 1px solid var(--haven-gray-300);
  display: flex;
  gap: 8px;
}

.dorris-player__cta-add {
  flex: 2;
  background: var(--haven-orange-dark);
  color: var(--haven-white);
  border: 1px solid var(--haven-orange-dark);
  border-radius: var(--radius-btn);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.01em;
  transition:
    background 0.15s,
    transform 0.1s;
}

.dorris-player__cta-add:hover:not(:disabled) {
  background: var(--haven-orange-hover);
}
.dorris-player__cta-add:active:not(:disabled) {
  transform: scale(0.97);
  background: var(--haven-orange-active);
}
.dorris-player__cta-add:disabled {
  opacity: 0.6;
  cursor: default;
}
.dorris-player__cta-add--success {
  background: #16a34a !important;
  animation: dorris-cart-pop 0.4s cubic-bezier(0.34, 1.6, 0.64, 1);
}

@keyframes dorris-cart-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.06);
  }
  75% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

.dorris-player__cta-view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 10px;
  border: 1.5px solid var(--haven-gray-300);
  border-radius: var(--radius-btn);
  color: var(--haven-black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: border-color 0.15s;
}

.dorris-player__cta-view:hover {
  border-color: var(--haven-black);
}

/* -------------------------------------------------------------------------
   Desktop panel (right half)
   ---------------------------------------------------------------------- */

.dorris-player__panel {
  display: none;
  padding: 0;
}

.dorris-player__panel-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px 0;
}

.dorris-player__panel-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--haven-gray-600);
  margin: 0 0 8px;
  display: block;
}

.dorris-player__panel-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--haven-black);
  margin: 0 0 4px;
  line-height: 1.3;
}

.dorris-player__panel-price {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--haven-orange-dark);
  margin: 0 0 14px;
}

.dorris-player__panel-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 4px;
  border-top: 1px solid var(--haven-gray-300);
  flex-shrink: 0;
}

.dorris-player__panel-pagination-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--haven-gray-600);
  flex: 1;
}

.dorris-player__panel-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.dorris-player__panel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--haven-gray-300);
  transition: background 0.15s;
}

.dorris-player__panel-dot--active {
  background: var(--haven-orange-dark);
}

.dorris-player__panel-nav {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--haven-gray-300);
  background: transparent;
  color: var(--haven-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s;
}

.dorris-player__panel-nav svg {
  width: 14px;
  height: 14px;
}
.dorris-player__panel-nav:hover {
  border-color: var(--haven-black);
}
.dorris-player__panel-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Panel footer */
.dorris-player__panel .dorris-player__sheet-footer {
  position: sticky;
  bottom: 0;
  padding: 12px 22px 16px;
}

.dorris-player__panel .dorris-player__cta-view {
  border-color: var(--haven-gray-300);
  color: var(--haven-black);
}
