/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 6px; align-items: center;
  font-size: 12px; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

/* ─── HERO ─── */
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px 36px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: start;
}
.hero-tld {
  font-family: var(--mono); font-size: 52px;
  font-weight: 500; color: var(--accent);
  letter-spacing: -2px; line-height: 1; margin-bottom: 8px;
}
.hero-desc {
  color: var(--text-muted); font-size: 14px;
  max-width: 480px; line-height: 1.7;
}
.hero-stats { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.stat-block { text-align: right; }
.stat-label {
  font-size: 11px; color: var(--text-muted);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 2px;
}
.stat-value {
  font-family: var(--mono); font-size: 24px;
  font-weight: 500; color: var(--text); line-height: 1;
}
.stat-value.cheapest { color: var(--green); font-weight: 700; }
.stat-provider { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ─── HERO SEARCH ─── */
.hero-search { margin-top: 20px; max-width: 480px; }
.hero-search-box {
  display: flex; border: 2px solid var(--border);
  border-radius: 10px; overflow: hidden;
  background: var(--surface); transition: border-color .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.hero-search-box:focus-within { border-color: var(--accent); }
.hero-search-prefix {
  display: flex; align-items: center;
  padding: 0 4px 0 14px;
  font-family: var(--mono); font-size: 13px;
  color: var(--text-muted); white-space: nowrap; user-select: none;
}
.hero-search-input {
  flex: 1; border: none; outline: none;
  font-family: var(--mono); font-size: 14px;
  padding: 11px 6px; background: transparent; color: var(--text); min-width: 0;
}
.hero-search-input::placeholder { color: var(--text-muted); font-family: var(--body); font-size: 13px; }
.hero-search-btn {
  background: var(--accent); color: #fff;
  border: none; padding: 0 20px;
  font-family: var(--body); font-weight: 700;
  font-size: 13px; cursor: pointer; transition: background .15s; white-space: nowrap;
}
.hero-search-btn:hover { background: #1558cc; }

/* ─── MAIN LAYOUT ─── */
.main {
  max-width: 1200px; margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 24px; align-items: start;
}

/* ─── SECTION HEADING ─── */
.section-head {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 16px;
}
.tab-group { display: flex; gap: 6px; }

/* ─── PRICE TABLE ─── */
.price-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.price-table th {
  padding: 10px 16px; font-size: 11px;
  font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px; text-align: left;
}
.price-table th.num { text-align: right; }
.price-table td {
  padding: 11px 16px; border-bottom: 1px solid #f0efe9;
  font-size: 13px; vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--surface2); }
.price-table td.num {
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  text-align: right; white-space: nowrap;
}

.rank-cell { width: 36px; text-align: center !important; }
.rank-dot { width: 22px; height: 22px; }

/* ─── PROVIDER CELL ─── */
.provider-cell { display: flex; align-items: center; gap: 8px; }
.provider-logo {
  width: 18px; height: 18px;
  border-radius: 4px; object-fit: contain; flex-shrink: 0;
}
.no-data-cell { color: var(--text-muted); font-size: 12px; }
.price-best     { font-size: 16px; font-weight: 700; color: var(--green); }
.price-campaign { font-size: 15px; font-weight: 600; color: var(--red); }

/* ─── RIGHT SIDEBAR ─── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.info-card-head {
  background: var(--surface2); border-bottom: 1px solid var(--border);
  padding: 12px 16px; font-family: var(--display);
  font-weight: 700; font-size: 13px;
}
.info-card-body { padding: 16px; }
.info-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid #f0efe9; font-size: 13px;
}
.info-row:last-child { border-bottom: none; }
.info-row-label { color: var(--text-muted); flex-shrink: 0; }
.info-row-value { font-weight: 500; text-align: right; }
.info-row-value a { color: var(--accent); text-decoration: none; }
.info-row-value a:hover { text-decoration: underline; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag {
  background: var(--accent-light); color: var(--accent);
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 5px;
}
.tag.warn { background: var(--red-light); color: var(--red); }
.restriction-list { display: flex; flex-direction: column; gap: 8px; }
.restriction-item { display: flex; gap: 8px; font-size: 13px; line-height: 1.5; }
.restriction-icon { flex-shrink: 0; margin-top: 1px; }

.empty { padding: 40px 16px; text-align: center; color: var(--text-muted); font-size: 13px; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .main { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
