/* =========================
   DOMINI — PAGE CSS
   (solo questa pagina)
   ========================= */

.page-domains .page-content {
  padding-top: 70px;
}

.domain-search--v2 {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-m);
  overflow: hidden;
  padding: 24px;
}

.domain-search--v2::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(255, 106, 0, 0.16), transparent 60%),
    radial-gradient(700px 260px at 95% 10%, rgba(255, 140, 66, 0.12), transparent 55%);
  pointer-events: none;
  opacity: 0.95;
}

.domain-search--v2 > * {
  position: relative;
  z-index: 1;
}

.ds-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.10);
  color: var(--white);
  font-weight: 900;
  width: fit-content;
  margin-bottom: 10px;
}

.ds-title h3 {
  margin: 0 0 8px;
  font-size: 1.85rem;
  letter-spacing: 0.2px;
}

.ds-sub {
  margin: 0;
  color: var(--muted);
  max-width: 860px;
}

.ds-note {
  color: var(--gray);
}

.ds-mini {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ds-mini-card {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  min-width: 260px;
}

.ds-mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.22);
  color: var(--primary);
}

.ds-mini-text strong {
  display: block;
  font-size: 0.98rem;
}

.ds-mini-text span {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
}

.ds-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 14px;
  align-items: start;
}

.ds-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 10, 0.35);
  box-shadow: var(--shadow-s);
  padding: 16px;
  backdrop-filter: blur(6px);
}

.ds-label {
  display: block;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--white);
}

.ds-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.ds-field {
  flex: 1 1 260px;
  min-width: 240px;
}

.ds-field--tld {
  flex: 0 0 250px;
  min-width: 220px;
}

.ds-input {
  height: 54px;
  width: 100%;
  padding: 0 14px;
  background: var(--soft);
  border: 1px solid #2a2a2a;
  color: var(--white);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ds-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.ds-select {
  height: 54px;
  width: 100%;
  padding: 0 14px;
  background: var(--soft);
  border: 1px solid #2a2a2a;
  color: var(--white);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ds-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.ds-help {
  display: block;
  margin-top: 6px;
  color: var(--gray);
  font-size: 0.88rem;
}

.ds-btn {
  height: 54px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.18);
  white-space: nowrap;
}

.ds-chips-title {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--white);
  font-weight: 1000;
}

.ds-chips-title small {
  color: var(--gray);
  font-weight: 700;
}

.ds-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.ds-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  user-select: none;
}

.ds-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.10);
  color: var(--white);
}

.ds-chip i {
  color: var(--primary);
}

.ds-alert {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 91, 91, 0.25);
  background: rgba(255, 91, 91, 0.08);
  color: var(--white);
  font-weight: 800;
}

.ds-results {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.ds-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-s);
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease;
}

.ds-result:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.30);
  background: rgba(255, 106, 0, 0.06);
}

.ds-result-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ds-domain {
  font-weight: 1100;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-meta {
  color: var(--gray);
  font-size: 0.92rem;
}

.ds-result-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ds-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 900;
  white-space: nowrap;
}

.ds-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  background: #9aa0a6;
  box-shadow: 0 0 0 4px rgba(154, 160, 166, 0.10);
}

.ds-dot.ok {
  background: #2bd576;
  box-shadow: 0 0 0 4px rgba(43, 213, 118, 0.12);
}

/* Disponibilità dominio */
.ds-pill.is-available{
  border-color: rgba(155,235,117,.40);
  background: rgba(155,235,117,.10);
}
.ds-pill.is-taken{
  border-color: rgba(255,45,45,.40);
  background: rgba(255,45,45,.10);
}
.ds-pill.is-unknown{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.ds-dot.is-available{
  background: #9BEB75;
  box-shadow: 0 0 0 4px rgba(155,235,117,.12);
}
.ds-dot.is-taken{
  background: #ff2d2d;
  box-shadow: 0 0 0 4px rgba(255,45,45,.12);
}
.ds-dot.is-unknown{
  background: #9aa0a6;
  box-shadow: 0 0 0 4px rgba(154,160,166,.10);
}


.ds-dot.bad {
  background: #ff5b5b;
  box-shadow: 0 0 0 4px rgba(255, 91, 91, 0.12);
}

.ds-mini-btn {
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  font-weight: 1000;
  border: 1px solid rgba(255, 106, 0, 0.28);
  background: rgba(255, 106, 0, 0.10);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.ds-mini-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 106, 0, 0.14);
  border-color: rgba(255, 106, 0, 0.35);
}

.ds-panel--prices h4 {
  margin: 0;
  font-size: 1.2rem;
}

.ds-panel--prices p {
  margin: 6px 0 0;
  color: var(--muted);
}

.ds-filter {
  margin-top: 12px;
}

.ds-filter-input {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--white);
  outline: none;
}

.ds-filter-input:focus {
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.ds-tld-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.ds-tld {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.ds-tld:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 0, 0.30);
  background: rgba(255, 106, 0, 0.06);
}

.ds-tld-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ds-tld-name {
  font-weight: 1100;
  letter-spacing: 0.3px;
}

.ds-tld-meta {
  color: var(--gray);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.ds-tld-right {
  text-align: right;
}

.ds-price {
  font-weight: 1100;
}

.ds-renew {
  color: var(--gray);
  font-size: 0.9rem;
}

.ds-prices-foot {
  margin-top: 12px;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
}

.ds-prices-foot i {
  margin-top: 2px;
  color: var(--primary);
}

.section-divider {
  margin: 46px auto;
  max-width: 980px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
}

/* Transfer box (se non è definito nel tuo CSS globale) */
.transfer-box {
  margin-top: 40px;
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(255, 106, 0, 0.14), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-m);
  text-align: center;
}

.transfer-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 16px;
}

@media (max-width: 920px) {
  .ds-grid {
    grid-template-columns: 1fr;
  }
  .ds-mini-card {
    min-width: 0;
    flex: 1 1 240px;
  }
  .ds-field--tld {
    flex: 1 1 240px;
  }
}

@media (max-width: 680px) {
  .ds-result {
    flex-direction: column;
    align-items: flex-start;
  }
  .ds-result-right {
    justify-content: flex-start;
  }
}





