


.pd-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #080808;
  animation: pdSlideIn 0.32s cubic-bezier(0.16,1,0.3,1) both;
  z-index: 2;
  
}

@keyframes pdSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@media (min-width: 768px) {
  .pd-overlay {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    animation: pdFadeIn 0.22s ease both;
  }
  @keyframes pdFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}


.pd {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  
}

.pd::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

@media (min-width: 768px) {
  .pd {
    max-width: 600px;
    max-height: 90vh;
    border-radius: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 0;
  }
  
  .pd::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}


.pd__topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 2;
  background: #0f0f0f;
}

@media (min-width: 768px) {
  .pd__topbar { display: none; }
}

.pd__back {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
}

.pd__topbar-title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.pd__close {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media (min-width: 768px) {
  .pd__close { display: flex; }
}

.pd__report-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}


.pd__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .pd__media {
    border-radius: 24px 24px 0 0;
  }
}


.pd__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
  user-select: none;
}

.pd__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.pd__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.pd__slide img.is-blurred {
  filter: blur(18px) brightness(0.6);
  transform: scale(1.08);
}


.pd__lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.pd__lock-overlay i { font-size: 28px; opacity: 0.5; }


.pd__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.pd__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.25s;
}
.pd__dot.is-active {
  background: #fff;
  width: 16px;
  border-radius: 99px;
}


.pd__counter {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}



.pd__doc {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.pd__doc-icon {
  width: 68px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.4);
  position: relative;
}

.pd__doc-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pd__doc-preview-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding: 0 24px;
}


.pd__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.pd__info-scroll {
  flex: 1;
  overflow: visible;
  scrollbar-width: none;
  padding: 20px;
}

.pd__info-scroll::-webkit-scrollbar { display: none; }


.pd__seller {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.15s;
}

.pd__seller:hover { background: rgba(255,255,255,0.04); }

.pd__seller-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
}

.pd__seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd__seller-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pd__seller-verified {
  color: var(--c-accent);
  font-size: 12px;
}

.pd__seller-handle {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}


.pd__type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pd__type-badge.is-digital {
  background: rgba(184,245,61,0.1);
  color: var(--c-accent);
  border: 1px solid rgba(184,245,61,0.2);
}

.pd__type-badge.is-physical {
  background: rgba(245,166,35,0.1);
  color: #f5a623;
  border: 1px solid rgba(245,166,35,0.2);
}

.pd__type-badge.is-collection {
  background: rgba(168,85,247,0.1);
  color: #a855f7;
  border: 1px solid rgba(168,85,247,0.2);
}


.pd__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.pd__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}


.pd__price {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.pd__price.is-free { color: #8ab633; }

.pd__price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  margin-left: 6px;
}


.pd__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.pd__meta-item i {
  font-size: 11px;
  width: 16px;
  text-align: center;
}


.pd__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pd__tag-chip {
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}


.pd__variations {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.pd__variation-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd__variation-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pd__variation-selected {
  color: var(--c-accent);
  font-weight: 700;
}


.pd__color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd__color-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pd__color-option:hover { border-color: rgba(255,255,255,0.2); }

.pd__color-option.is-selected {
  border-color: var(--c-accent);
  background: var(--c-accent-dim);
  color: var(--c-accent);
}

.pd__color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}


.pd__size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd__size-option {
  min-width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pd__size-option:hover { border-color: rgba(255,255,255,0.2); }

.pd__size-option.is-selected {
  border-color: var(--c-accent);
  background: var(--c-accent-dim);
  color: var(--c-accent);
}


.pd__version-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd__version-option {
  padding: 8px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pd__version-option:hover { border-color: rgba(255,255,255,0.2); }

.pd__version-option.is-selected {
  border-color: var(--c-accent);
  background: var(--c-accent-dim);
  color: var(--c-accent);
}


.pd__collection-summary {
  margin-bottom: 16px;
}

.pd__section-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pd__collection-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pd__collection-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.pd__collection-item:hover { background: rgba(255,255,255,0.03); }

.pd__collection-num {
  width: 24px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-align: center;
  flex-shrink: 0;
}

.pd__collection-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.pd__collection-thumb-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.pd__collection-info {
  flex: 1;
  min-width: 0;
}

.pd__collection-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.pd__collection-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.pd__collection-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pd__stream-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.pd__stream-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.pd__stream-btn.is-playing {
  background: rgba(184,245,61,0.12);
  border-color: rgba(184,245,61,0.3);
  color: var(--c-accent);
}

.pd__collection-buy {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--c-accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  transition: filter 0.2s;
}

.pd__collection-buy:hover { filter: brightness(1.1); }


.pd__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 16px 0;
}


.pd__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
}

.pd__actions::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.pd__action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.pd__action-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.pd__action-btn.is-liked { color: #ff6b6b; }

.pd__action-btn i { font-size: 15px; }


.pd__action-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  position: relative;
  pointer-events: auto;
}

.pd__action-btn.is-disabled:hover::after {
  content: attr(data-hint);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-surface3, #1e1e1e);
  color: var(--c-text, #fff);
  font-size: 11px;
  font-family: var(--ff-body);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid var(--c-border);
  z-index: 10;
}


.pd__external {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
  text-decoration: none;
}

.pd__external i { color: var(--c-accent); font-size: 16px; }

.pd__external span { font-size: 13px; color: rgba(255,255,255,0.6); }


.pd__cta-bar {
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.pd__cta {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: inherit;
}

.pd__cta.is-buy {
  background: var(--c-accent);
  color: #080808;
}

.pd__cta.is-buy:hover { filter: brightness(1.05); }

.pd__cta.is-whatsapp {
  background: rgba(37,211,102,0.12);
  color: #25d366;
  border: 1.5px solid rgba(37,211,102,0.25);
}

.pd__cta.is-whatsapp:hover { background: rgba(37,211,102,0.2); }


.pd__lyrics-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  margin-top: 10px;
  border-radius: 10px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: all 0.15s;
}

.pd__lyrics-btn:hover {
  background: var(--c-surface3);
  border-color: var(--c-accent);
}


.pd__color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  margin-right: 2px;
  vertical-align: middle;
}

.pd__audio {
  width: 100%;
  height: 100%;
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}


.pd__audio-artwork-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pd__audio-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.pd__audio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}


.pd__audio-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-accent, #b8f53d);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0a0a0a;
  cursor: pointer;
  transition: 
    transform 0.25s cubic-bezier(0.16,1,0.3,1), 
    box-shadow 0.25s ease,
    opacity 0.3s ease;
  box-shadow: 
    0 0 40px rgba(184, 245, 61, 0.3),
    0 0 80px rgba(184, 245, 61, 0.1),
    0 8px 24px rgba(0,0,0,0.4);
}

.pd__audio-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 
    0 0 60px rgba(184, 245, 61, 0.5),
    0 0 120px rgba(184, 245, 61, 0.2),
    0 8px 32px rgba(0,0,0,0.5);
}

.pd__audio-btn:active {
  transform: translate(-50%, -50%) scale(0.94);
  transition: transform 0.1s ease;
}


.pd__audio-btn.is-playing {
  opacity: 0;
  pointer-events: none;
}

.pd__audio:hover .pd__audio-btn.is-playing,
.pd__audio-btn.is-playing:hover {
  opacity: 1;
  pointer-events: auto;
}


.pd__audio-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(184, 245, 61, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pd__audio-btn:hover::before {
  opacity: 1;
}


.pd__audio-slider-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: calc(100% - 48px);
  max-width: 320px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.pd__audio:hover .pd__audio-slider-wrap {
  transform: translateX(-50%) translateY(-4px);
}


.pd__audio-time-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 4px;
}

.pd__audio-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'SF Mono', 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.pd__audio-seek {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
}


.pd__audio-seek::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    var(--c-accent, #b8f53d) 0%,
    var(--c-accent, #b8f53d) var(--seek-percent, 0%),
    rgba(255, 255, 255, 0.08) var(--seek-percent, 0%),
    rgba(255, 255, 255, 0.08) 100%
  );
}


.pd__audio-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--c-accent, #b8f53d);
  cursor: pointer;
  border: 2px solid #0a0a0a;
  margin-top: -5px;
  box-shadow: 
    0 0 12px rgba(184, 245, 61, 0.6),
    0 0 24px rgba(184, 245, 61, 0.3);
  transition: box-shadow 0.2s ease;
}

.pd__audio-seek::-webkit-slider-thumb:hover {
  box-shadow: 
    0 0 20px rgba(184, 245, 61, 0.8),
    0 0 40px rgba(184, 245, 61, 0.4);
}


.pd__audio-seek::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
}

.pd__audio-seek::-moz-range-progress {
  height: 6px;
  border-radius: 3px;
  background: var(--c-accent, #b8f53d);
}

.pd__audio-seek::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--c-accent, #b8f53d);
  cursor: pointer;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 12px rgba(184, 245, 61, 0.6), 0 0 24px rgba(184, 245, 61, 0.3);
}


.pd__audio-preview-note {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.pd__audio.is-playing .pd__audio-preview-note {
  opacity: 0;
}

.pd__audio:hover .pd__audio-preview-note {
  opacity: 1;
}


.pd__audio-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 245, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(184, 245, 61, 0.4);
}


.pd__video {
  width: 100%;
  height: 100%;
  position: relative;
}

.pd__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.pd__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-accent, #b8f53d);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0a0a0a;
  cursor: pointer;
  transition: 
    transform 0.25s cubic-bezier(0.16,1,0.3,1), 
    box-shadow 0.25s ease, 
    opacity 0.3s ease;
  box-shadow: 
    0 0 40px rgba(184, 245, 61, 0.3),
    0 0 80px rgba(184, 245, 61, 0.1),
    0 8px 24px rgba(0,0,0,0.4);
}

.pd__video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 
    0 0 60px rgba(184, 245, 61, 0.5),
    0 0 120px rgba(184, 245, 61, 0.2),
    0 8px 32px rgba(0,0,0,0.5);
}


.pd__video-play.is-playing {
  opacity: 0;
  pointer-events: none;
}

.pd__video:hover .pd__video-play.is-playing,
.pd__video-play.is-playing:hover {
  opacity: 1;
  pointer-events: auto;
}

.pd__video-play::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(184, 245, 61, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pd__video-play:hover::before {
  opacity: 1;
}


.pd__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: opacity 0.3s ease;
}


.pd__video-slider-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: calc(100% - 48px);
  max-width: 320px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pd__video:hover .pd__video-slider-wrap {
  transform: translateX(-50%) translateY(-4px);
}


.pd__video-time-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 4px;
}

.pd__video-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'SF Mono', 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 1px;
}


.pd__video-seek {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.pd__video-seek::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    var(--c-accent, #b8f53d) 0%,
    var(--c-accent, #b8f53d) var(--seek-percent, 0%),
    rgba(255, 255, 255, 0.08) var(--seek-percent, 0%),
    rgba(255, 255, 255, 0.08) 100%
  );
}

.pd__video-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--c-accent, #b8f53d);
  cursor: pointer;
  border: 2px solid #0a0a0a;
  margin-top: -5px;
  box-shadow: 
    0 0 12px rgba(184, 245, 61, 0.6),
    0 0 24px rgba(184, 245, 61, 0.3);
  transition: box-shadow 0.2s ease;
}

.pd__video-seek::-webkit-slider-thumb:hover {
  box-shadow: 
    0 0 20px rgba(184, 245, 61, 0.8),
    0 0 40px rgba(184, 245, 61, 0.4);
}

.pd__video-seek::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
}

.pd__video-seek::-moz-range-progress {
  height: 6px;
  border-radius: 3px;
  background: var(--c-accent, #b8f53d);
}

.pd__video-seek::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--c-accent, #b8f53d);
  cursor: pointer;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 12px rgba(184, 245, 61, 0.6), 0 0 24px rgba(184, 245, 61, 0.3);
}


.pd__audio-bars {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.pd__audio-bars .bar {
  width: 3px;
  height: 4px;
  border-radius: 2px;
  background: var(--c-accent, #b8f53d);
  opacity: 0.3;
}

.pd__audio-bars.is-playing .bar {
  opacity: 0.9;
  animation: pdBar var(--d) ease-in-out infinite alternate;
}

.pd__audio-bars .bar:nth-child(1) { --d: 0.4s; }
.pd__audio-bars .bar:nth-child(2) { --d: 0.7s; }
.pd__audio-bars .bar:nth-child(3) { --d: 0.3s; }
.pd__audio-bars .bar:nth-child(4) { --d: 0.6s; }
.pd__audio-bars .bar:nth-child(5) { --d: 0.45s; }
.pd__audio-bars .bar:nth-child(6) { --d: 0.55s; }
.pd__audio-bars .bar:nth-child(7) { --d: 0.35s; }

@keyframes pdBar {
  from { height: 3px; opacity: 0.3; }
  to   { height: 24px; opacity: 1; }
}

.pd__collection-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  pointer-events: none;
}
.pd__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
}


.pd__seller-avatar {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.pd__arrow:hover { background: rgba(0,0,0,0.7); }
.pd__arrow--left { left: 12px; }
.pd__arrow--right { right: 12px; }
