/* Styles communs aux pages top-* */

/* Fil d'Ariane */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* En-tête de page */
.page-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.page-header h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.page-intro {
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Grille des tops */
.tops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.top-item {
  box-shadow: 0 0 4px var(--muted);
  border-radius: var(--radius);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.02);
}

.top-content h2 {
  margin-top: auto;
}

.top-item img {
  width: 100%;
  height: auto;
  margin-bottom: var(--space-3);
}

.top-content {
  text-align: center;
}

.top-content a {
  text-decoration: none;
  color: inherit;
}

.top-content img {
  width: auto;
  margin: 0 auto;
  max-height: 20px;
  margin-bottom: 0px;
}

.top-rank {
  display: inline-block;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.top-title {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.notes {
  margin: var(--space-3) 0;
}

.note-label {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.top-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3) 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-specs li {
  margin: 2px 0;
}

.top-desc {
  color: var(--text);
  margin-bottom: var(--space-4);
}

.top-cta {
  text-align: center;
  color: var(--muted);
}

.top-cta .btn-price {
  text-decoration: none;
  color: var(--muted);
  margin-top: auto;
  padding: 0px 10px;
}

.top-cta img {
  height: 20px;
  width: auto;
  margin-bottom: auto;
  vertical-align: middle;
  margin-right: 6px;
}

@media (max-width: 720px) {
  .breadcrumb {
    justify-content: center;
  }

  .top-cta {
    text-align: center;
  }
}