/* ===== Products Dashboard (masonry + modal) ===== */

.pd-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 100px;
}

.pd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.pd-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.pd-subtitle {
  color: #64748b;
  margin: 4px 0 0;
  font-size: 15px;
}

.pd-stats {
  font-size: 14px;
  color: #64748b;
  background: #f8fafc;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.pd-stats span {
  font-weight: 700;
  color: #0f172a;
}

/* === Info bar (YouTube tutorial + close) === */
.pd-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 24px;
  direction: rtl;
  overflow: hidden;
  opacity: 1;
  max-height: 80px;
  transform: translateY(0);
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-bottom 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease, transform 0.3s ease;
}

.pd-info-bar--closing {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateY(-8px);
}

.pd-info-youtube {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dc2626;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s;
}

.pd-info-youtube:hover {
  color: #b91c1c;
}

.pd-info-youtube svg {
  width: 20px;
  height: 20px;
  color: #ef4444;
  flex-shrink: 0;
}

.pd-info-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.pd-info-close:hover {
  background: #fee2e2;
  color: #dc2626;
}

.pd-info-close svg {
  width: 18px;
  height: 18px;
}

/* === Masonry Grid === */
.pd-masonry {
  column-count: 4;
  column-gap: 16px;
}

/* === Card === */
.pd-card {
  break-inside: avoid;
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.pd-card-img-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.pd-fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.pd-fav-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.pd-card-img-wrap img {
  width: 100%;
  display: block;
}

.pd-card-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 40px;
  text-align: center;
  font-weight: 600;
}

.pd-card-body {
  padding: 12px;
}

.pd-card-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.pd-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pd-card-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.pd-badge-cat {
  background: #eef2ff;
  color: #4f46e5;
}

.pd-badge-country {
  background: #f0fdf4;
  color: #16a34a;
}

.pd-card-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
}

/* === Sentinel / Loader === */
.pd-sentinel {
  text-align: center;
  padding: 40px 0;
  color: #94a3b8;
  font-size: 14px;
}

.pd-sentinel .pd-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: pd-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}

.pd-sentinel.pd-loading .pd-spinner {
  display: inline-block;
}

@keyframes pd-spin {
  to { transform: rotate(360deg); }
}

/* === Empty / Error states === */
.pd-empty,
.pd-error {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}

.pd-error p {
  color: #ef4444;
}

.pd-retry-btn {
  margin-top: 12px;
  padding: 10px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
}

.pd-retry-btn:hover {
  background: #f8fafc;
}

/* === Modal === */
.pd-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-modal[hidden] {
  display: none;
}

.pd-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.pd-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 600px;
  width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.pd-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.pd-modal-close:hover {
  background: rgba(0,0,0,0.7);
}

.pd-modal-image img {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: contain;
  background: #f1f5f9;
}

.pd-modal-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #94a3b8;
  background: #f1f5f9;
  font-weight: 600;
}

.pd-modal-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pd-modal-fav-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.pd-modal-info {
  padding: 20px;
}

.pd-modal-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
}

/* Badges row */
.pd-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pd-modal-badges .pd-badge {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* Stats grid */
.pd-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.pd-stat-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.pd-stat-label {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 4px;
}
.pd-stat-value {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

/* Ads loading */
.pd-ads-loading {
  text-align: center;
  padding: 20px 0;
  color: #94a3b8;
  font-size: 14px;
}
.pd-ads-loading .pd-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: pd-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-left: 6px;
}

/* Shops list inside modal */
.pd-shops-list {
  margin-top: 16px;
}
.pd-shops-list-label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.pd-shop-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  direction: rtl;
}
.pd-shop-name-link {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.pd-shop-name-link:hover {
  text-decoration: underline;
}
.pd-shop-stats {
  flex: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.pd-shop-stat {
  font-size: 12px;
  color: #475569;
  white-space: nowrap;
}
.pd-shop-play-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  transition: background 0.15s;
}
.pd-shop-play-btn:hover {
  background: #4f46e5;
  color: #fff;
}
.pd-shop-play-disabled {
  opacity: 0.4;
  cursor: default;
}
.pd-ads-empty {
  text-align: center;
  padding: 20px;
  color: #94a3b8;
  font-size: 13px;
}

/* Dummy ad notice banner */
.pd-dummy-notice {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #991b1b;
  text-align: center;
  direction: rtl;
}
.pd-dummy-notice a {
  color: #dc2626;
  font-weight: 700;
  text-decoration: underline;
}

/* Dummy ad (restricted country) */
.pd-dummy-ad {
  position: relative;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  border-color: #fecaca;
}
.pd-dummy-ad .pd-dummy-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ef4444;
  z-index: 2;
  filter: blur(0);
  opacity: 0.7;
}
.pd-dummy-ad .pd-dummy-text {
  color: transparent !important;
  background: #e2e8f0;
  border-radius: 4px;
  display: inline-block;
  height: 14px;
  vertical-align: middle;
}
.pd-dummy-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* === Ad Sort/Filter Controls inside Modal === */
.pd-ads-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pd-ads-header .pd-shops-list-label {
  margin-bottom: 0;
}

.pd-ads-header-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pd-ads-sort-group {
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pd-ads-sort-btn {
  background: none;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s, color 0.15s;
}

.pd-ads-sort-btn:hover {
  background: #f8fafc;
  color: #334155;
}

.pd-ads-sort-btn.active {
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 600;
}

.pd-ads-sort-btn svg {
  width: 14px;
  height: 14px;
}

.pd-ads-filter-country {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 12px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  max-width: 120px;
}

.pd-ads-filter-country:focus {
  outline: none;
  border-color: #6366f1;
}

/* === Sticky Bottom Filter Bar === */
.pd-filter-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 8px 12px;
  width: calc(100% - 32px);
  max-width: 900px;
  direction: rtl;
}
.has-side-panel .pd-filter-bar {
  right: 276px;
  left: 16px;
  transform: none;
  width: auto;
  max-width: none;
}

.pd-filter-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-filter-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pd-sort-group {
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pd-sort-btn {
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
  text-decoration: none;
}

.pd-sort-btn:hover {
  background: #f8fafc;
  color: #475569;
}

.pd-sort-btn.active {
  background: #eef2ff;
  color: #4f46e5;
}

.pd-sort-btn svg {
  width: 18px;
  height: 18px;
}

.pd-filter-select {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  max-width: 110px;
  appearance: auto;
}

.pd-filter-select:focus {
  outline: none;
  border-color: #6366f1;
}

/* === Multi-select dropdowns === */
.pd-multi-select {
  position: relative;
}

.pd-multi-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s;
}

.pd-multi-btn:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.pd-multi-btn.active {
  border-color: #6366f1;
}

.pd-multi-chevron {
  width: 14px;
  height: 14px;
  color: #94a3b8;
  transition: transform 0.15s;
}

.pd-multi-select.open .pd-multi-chevron {
  transform: rotate(180deg);
}

.pd-multi-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  z-index: 600;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  max-width: min(280px, 90vw);
  max-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pd-multi-list {
  overflow-y: auto;
  padding: 6px;
}

.pd-multi-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #0f172a;
}

.pd-multi-option:hover {
  background: #f8fafc;
}

.pd-multi-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #4f46e5;
  cursor: pointer;
  flex-shrink: 0;
}

.pd-multi-actions {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.pd-multi-clear {
  flex: 1;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  font-size: 12px;
  font-family: inherit;
  color: #64748b;
  cursor: pointer;
}

.pd-multi-clear:hover {
  background: #f1f5f9;
}

.pd-multi-apply {
  flex: 1;
  border: none;
  background: #4f46e5;
  color: #fff;
  border-radius: 8px;
  padding: 6px;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.pd-multi-apply:hover {
  background: #4338ca;
}

.pd-search-wrap {
  flex: 1;
  position: relative;
  min-width: 0;
}

.pd-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #94a3b8;
  pointer-events: none;
}

.pd-search-input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 36px 6px 32px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
  box-sizing: border-box;
}

.pd-search-input:focus {
  outline: none;
  border-color: #6366f1;
}

.pd-search-input::placeholder {
  color: #94a3b8;
}

.pd-search-clear {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-search-clear:hover {
  color: #475569;
}

.pd-search-clear svg {
  width: 16px;
  height: 16px;
}

/* Dummy product card (locked) */
.pd-dummy-product {
  pointer-events: none;
  user-select: none;
  position: relative;
  border-color: #fecaca !important;
  opacity: 0.7;
}
.pd-dummy-product-img {
  aspect-ratio: 1;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-dummy-product-lock {
  color: #ef4444;
  opacity: 0.5;
}
.pd-dummy-product .pd-fav-btn {
  display: none !important;
}
.pd-dummy-product .pd-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-dummy-product-cta {
  display: block;
  text-align: center;
  padding: 8px 12px;
  background: #ef4444;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  pointer-events: auto;
  filter: blur(0);
  margin-top: 4px;
}
.pd-dummy-product-cta:hover {
  background: #dc2626;
}

/* Guest banner */
.pd-guest-banner {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fef2f2, #fff7ed);
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  direction: rtl;
}
.pd-guest-banner svg {
  flex-shrink: 0;
  color: #dc2626;
}
.pd-guest-banner-text {
  font-size: 14px;
  color: #7f1d1d;
  line-height: 1.6;
}
.pd-guest-banner-text strong {
  color: #991b1b;
}
.pd-guest-banner-text a {
  color: #dc2626;
  font-weight: 700;
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 1200px) {
  .pd-masonry { column-count: 3; }
}

@media (max-width: 768px) {
  .pd-masonry { column-count: 2; }
  .pd-header { flex-direction: column; align-items: flex-start; margin: 40px 0;}
  .has-side-panel .pd-filter-bar {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
  }
  .pd-filter-bar {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 10px 10px 0 0;
    padding: 8px 10px;
  }
  .pd-filter-inner {
    flex-wrap: wrap;
    gap: 6px;
  }
  .pd-filter-controls {
    width: 100%;
    justify-content: flex-start;
  }
  .pd-search-wrap {
    width: 100%;
  }
  .pd-filter-select {
    max-width: none;
    flex: 1;
  }
  .pd-multi-select {
    flex: 1;
    max-width: none;
  }
  .pd-multi-btn {
    width: 100%;
    justify-content: center;
  }
  .pd-multi-menu {
    right: 0;
    left: auto;
  }
}

@media (max-width: 640px) {
  .pd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-filter-bar { padding: 6px 8px; }
  .pd-sort-btn { padding: 5px 8px; }
  .pd-sort-btn svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
  .pd-masonry { column-count: 2; }
  .pd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-modal-panel { width: 100vw; border-radius: 0; max-height: 100vh; }
}

/* ===== Video Tutorial Modal ===== */
.pd-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-video-modal[hidden] {
  display: none;
}

.pd-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(4px);
}

.pd-video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, 92vw);
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  animation: pdVideoPop 0.25s ease;
}

@keyframes pdVideoPop {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.pd-video-modal-close {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.pd-video-modal-close:hover {
  background: #ef4444;
  color: #fff;
}

.pd-video-modal-close svg {
  width: 18px;
  height: 18px;
}

.pd-video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.pd-video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
