/* Prix des domaines — tableau type Dynadot */

.page-content.dp-page {
  --dp-brand: #06c4b4;
  --dp-brand-dark: #0d9488;
  --dp-text: #0f172a;
  --dp-muted: #64748b;
  --dp-line: #e2e8f0;
  --dp-soft: #f8fafc;
  --dp-surface: #fff;
  --dp-radius: 14px;
  --dp-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  background: var(--dp-soft) !important;
}

.dp-hero {
  margin: clamp(0.75rem, 2vw, 1.25rem) auto 1.5rem;
  max-width: min(1200px, calc(100% - 1.5rem));
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--dp-radius);
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 196, 180, 0.95), rgba(17, 94, 89, 0.9));
  box-shadow: var(--dp-shadow);
}

.dp-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.dp-hero p {
  max-width: 640px;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.dp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.dp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dp-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.dp-btn--primary {
  background: #fff;
  color: var(--dp-brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.dp-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.dp-toolbar {
  margin: 0 auto 1rem;
  max-width: min(1200px, calc(100% - 1.5rem));
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.dp-search {
  flex: 1 1 280px;
  position: relative;
}

.dp-search i {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dp-muted);
  pointer-events: none;
}

.dp-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--dp-line);
  border-radius: 999px;
  background: var(--dp-surface);
  font-size: 0.95rem;
  color: var(--dp-text);
  outline: none;
  box-shadow: var(--dp-shadow);
}

.dp-search input:focus {
  border-color: rgba(6, 196, 180, 0.55);
  box-shadow: 0 0 0 3px rgba(6, 196, 180, 0.15);
}

.dp-meta {
  color: var(--dp-muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.dp-meta strong {
  color: var(--dp-brand-dark);
}

.dp-filters {
  margin: 0 auto 1.25rem;
  max-width: min(1200px, calc(100% - 1.5rem));
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dp-chip {
  border: 1px solid var(--dp-line);
  background: var(--dp-surface);
  color: var(--dp-muted);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.dp-chip.is-active,
.dp-chip:hover {
  background: rgba(6, 196, 180, 0.12);
  color: var(--dp-brand-dark);
  border-color: rgba(6, 196, 180, 0.35);
}

.dp-table-wrap {
  margin: 0 auto 2.5rem;
  max-width: min(1200px, calc(100% - 1.5rem));
  background: var(--dp-surface);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow);
  overflow: hidden;
}

.dp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  font-size: 0.92rem;
}

.dp-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #0f766e;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 1rem;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.dp-table thead th[data-sort] span {
  opacity: 0.7;
  margin-left: 0.25rem;
  font-size: 0.75rem;
}

.dp-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--dp-line);
  color: var(--dp-text);
  vertical-align: middle;
}

.dp-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.dp-table tbody tr:hover {
  background: rgba(6, 196, 180, 0.08);
}

.dp-tld {
  font-weight: 800;
  color: var(--dp-brand-dark);
  letter-spacing: -0.01em;
}

.dp-tld small {
  display: block;
  font-weight: 500;
  color: var(--dp-muted);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.dp-price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.dp-price--muted {
  color: var(--dp-muted);
  font-weight: 500;
}

.dp-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.dp-badge--yes {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.dp-badge--no {
  background: rgba(148, 163, 184, 0.18);
  color: #475569;
}

.dp-action a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(6, 196, 180, 0.12);
  color: var(--dp-brand-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
}

.dp-action a:hover {
  background: var(--dp-brand);
  color: #fff;
}

.dp-empty {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--dp-muted);
}

.dp-empty.is-visible {
  display: block;
}

.dp-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border-top: 1px solid var(--dp-line);
  background: var(--dp-soft);
}

.dp-page-btn,
.dp-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.55rem;
  border: 1px solid var(--dp-line);
  border-radius: 999px;
  background: var(--dp-surface);
  color: var(--dp-text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dp-page-btn:hover:not(:disabled),
.dp-page-num:hover {
  border-color: rgba(6, 196, 180, 0.45);
  color: var(--dp-brand-dark);
}

.dp-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.dp-page-num.is-active {
  background: var(--dp-brand);
  border-color: var(--dp-brand);
  color: #fff;
}

.dp-page-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.dp-page-ellipsis {
  color: var(--dp-muted);
  padding: 0 0.15rem;
  user-select: none;
}

.dp-meta__range {
  color: var(--dp-brand-dark);
  font-weight: 600;
}

.dp-note {
  margin: 0 auto 3rem;
  max-width: min(1200px, calc(100% - 1.5rem));
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--dp-line);
  color: var(--dp-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .dp-toolbar {
    align-items: stretch;
  }

  .dp-meta {
    white-space: normal;
  }
}
