/* === BREADCRUMB === */
.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* === HERO CATÉGORIE === */
.cat-hero {
  background: linear-gradient(160deg, #0D2060 0%, #1A56DB 100%);
  color: var(--white);
  padding: 52px 0 48px;
}
.cat-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.cat-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 14px;
}
.cat-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cat-accent {
  position: relative;
  display: inline-block;
}
.cat-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #F59E0B;
  border-radius: 2px;
}
.cat-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
  max-width: 500px;
}
.cat-hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.cat-stat {
  display: flex;
  flex-direction: column;
}
.cat-stat strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.cat-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* Best deal card */
.best-deal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bd-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bd-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}
.bd-store {
  font-size: 12px;
  color: var(--gray-500);
}
.bd-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.bd-now {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
}
.bd-old {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.bd-save {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.bd-cta {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 11px;
  border-radius: var(--radius-md);
  margin-top: 4px;
  transition: background 0.15s;
}
.bd-cta:hover { background: var(--blue-dark); color: var(--white); }

/* === FILTRES === */
.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  position: sticky;
  top: 60px;
  z-index: 90;
}
.filters-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-group select {
  padding: 7px 28px 7px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.filter-group select:focus { border-color: var(--blue); }

/* Toggle switch */
.filter-toggle { margin-left: auto; }
.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  user-select: none;
}
.toggle-label input { display: none; }
.toggle-switch {
  width: 36px;
  height: 20px;
  background: var(--gray-300);
  border-radius: 10px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-label input:checked + .toggle-switch { background: var(--green); }
.toggle-label input:checked + .toggle-switch::after { transform: translateX(16px); }

/* === RÉSULTATS === */
.results-section { padding: 28px 0 64px; }
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.results-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

/* === GUIDE SEO === */
.guide-seo-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}
.guide-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 14px;
}
.guide-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 28px 0 10px;
}
.guide-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Tableau guide */
.guide-table-wrap { overflow-x: auto; margin: 16px 0; }
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.guide-table th {
  background: var(--gray-100);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 2px solid var(--gray-200);
}
.guide-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}
.guide-table tr:hover td { background: var(--gray-50); }

/* FAQ AEO */
.faq-aside {
  position: sticky;
  top: 120px;
}
.faq-aside h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item summary {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { background: var(--blue-light); color: var(--blue-dark); }
.faq-item p {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  background: var(--gray-50);
  margin: 0;
}

/* === ALERTE INLINE === */
.alerte-inline {
  background: var(--gray-900);
  padding: 24px 0;
}
.alerte-inline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.alerte-inline strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.alerte-inline p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.alerte-inline-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.alerte-inline-form input {
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  width: 200px;
}
.alerte-inline-form button {
  padding: 10px 18px;
  background: #F59E0B;
  color: var(--gray-900);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.alerte-inline-form button:hover { background: #D97706; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .cat-hero-inner { grid-template-columns: 1fr; }
  .cat-hero-aside { display: none; }
  .guide-seo-inner { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .filter-toggle { margin-left: 0; }
}
@media (max-width: 600px) {
  .cat-h1 { font-size: 52px; }
  .filters-inner { gap: 10px; }
  .filter-group select { font-size: 12px; }
  .alerte-inline-form input { width: 100%; }
  .alerte-inline-form { width: 100%; }
}
