/* Barbecue Premium — charte média sombre */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --bp-black: #080808;
  --bp-charcoal: #111111;
  --bp-card: #171717;
  --bp-card-soft: #1f1f1f;
  --bp-cream: #f4efe7;
  --bp-text: #f8f8f8;
  --bp-muted: #b7b0a8;
  --bp-copper: #c46a2b;
  --bp-copper-dark: #9f4f1f;
  --bp-border: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.bp-app {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bp-black);
  color: var(--bp-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.bp-app h1,
body.bp-app h2,
body.bp-app h3,
body.bp-app h4,
body.bp-app h5,
body.bp-app h6,
body.bp-app .heading {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 600;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* --- Top bar --- */
.bp-topbar {
  background: #000;
  border-bottom: 1px solid var(--bp-border);
  font-size: 12px;
  color: var(--bp-muted);
}

.bp-topbar__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 6px 0;
}

.bp-topbar__tagline {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ddd;
}

.bp-topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.bp-topbar__links a {
  color: var(--bp-muted);
  text-decoration: none;
  font-weight: 600;
}

.bp-topbar__links a:hover {
  color: var(--bp-copper);
}

/* --- Header --- */
.bp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bp-border);
}

.bp-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.bp-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bp-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.bp-logo:hover,
.bp-logo:focus,
.bp-logo:visited {
  color: #fff;
  text-decoration: none;
}

.bp-logo:hover strong,
.bp-logo:focus strong {
  color: #fff;
}

.bp-logo:hover small,
.bp-logo:focus small {
  color: var(--bp-muted);
}

.bp-logo:hover .bp-logo__icon,
.bp-logo:focus .bp-logo__icon {
  color: var(--bp-copper);
  filter: brightness(1.08);
}

.bp-logo strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.bp-logo small {
  display: block;
  letter-spacing: 0.28em;
  font-size: 10px;
  color: var(--bp-muted);
}

.bp-logo__icon {
  color: var(--bp-copper);
  font-size: 28px;
  line-height: 1;
}

.bp-nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.bp-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 20px);
  flex-wrap: nowrap;
  justify-content: center;
}

/* Liens de premier niveau : même boîte pour Accueil et entrées à sous-menu */
.bp-nav > a,
.bp-nav__group > a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 2px;
  line-height: 1.25;
  font-family: "Inter", system-ui, sans-serif;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.bp-nav > a:hover,
.bp-nav > a[aria-current="page"],
.bp-nav__group > a:hover {
  color: var(--bp-copper);
}

.bp-nav__group {
  position: relative;
  display: flex;
  align-items: center;
}

.bp-nav__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.bp-nav__group:hover .bp-nav__sub {
  display: block;
}

.bp-nav__sub a {
  display: block;
  padding: 8px 16px;
  font-size: 12px;
  text-transform: none;
  font-weight: 600;
  color: #eee;
}

.bp-nav__sub a:hover {
  color: var(--bp-copper);
}

.bp-nav-toggle {
  display: none;
  border: 1px solid var(--bp-border);
  background: var(--bp-card);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.bp-search-form {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(168px, 22vw);
}

.bp-search-form input[type="search"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 7px 9px;
  border-radius: 6px;
  border: 1px solid var(--bp-border);
  background: var(--bp-charcoal);
  color: var(--bp-text);
  font-size: 12px;
}

.bp-search-form input::placeholder {
  color: var(--bp-muted);
}

.bp-search-form button {
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  background: linear-gradient(135deg, var(--bp-copper), var(--bp-copper-dark));
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}

.bp-search-form button:hover {
  filter: brightness(1.08);
}

@media (min-width: 961px) and (max-width: 1100px) {
  .bp-nav {
    gap: 6px;
  }

  .bp-nav > a,
  .bp-nav__group > a {
    font-size: 11px;
  }

  .bp-search-form {
    max-width: min(130px, 18vw);
  }
}

/* --- Hero slider --- */
.bp-hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #000;
}

.bp-hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.bp-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.bp-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.45) 46%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 45%);
}

.bp-hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: 0 16px;
  z-index: 2;
}

.bp-eyebrow {
  color: var(--bp-copper);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin: 0;
}

.bp-hero-slide h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  margin: 12px 0 20px;
}

.bp-hero-slide p {
  color: #eee;
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.bp-btn {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--bp-copper), var(--bp-copper-dark));
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
}

.bp-btn:hover {
  filter: brightness(1.08);
}

.bp-btn--outline {
  background: transparent !important;
  border: 2px solid var(--bp-copper);
  color: var(--bp-copper) !important;
  margin-top: 0;
}

.bp-btn--outline:hover {
  background: rgba(196, 106, 43, 0.12) !important;
  filter: none;
}

.bp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.bp-slider-arrow:hover {
  opacity: 1;
  color: var(--bp-copper);
}

.bp-slider-arrow--left {
  left: 16px;
}

.bp-slider-arrow--right {
  right: 16px;
}

.bp-slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.bp-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.bp-slider-dots button.is-active {
  background: var(--bp-copper);
}

/* --- Trust (icônes + textes, maquette) --- */
.bp-trust {
  background: var(--bp-charcoal);
  border-top: 1px solid var(--bp-border);
  border-bottom: 1px solid var(--bp-border);
}

.bp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bp-trust__cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 16px;
  border-right: 1px solid var(--bp-border);
}

.bp-trust__cell:last-child {
  border-right: 0;
}

.bp-trust__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bp-copper);
  font-size: 1.4rem;
}

.bp-trust__icon i {
  line-height: 1;
}

.bp-trust__text {
  min-width: 0;
}

.bp-trust__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bp-text);
  line-height: 1.25;
}

.bp-trust__text span {
  display: block;
  margin-top: 4px;
  color: var(--bp-muted);
  font-size: 13px;
  line-height: 1.35;
}

/* --- Sections --- */
.bp-section {
  padding: 72px 0;
}

.bp-section--cream {
  background: var(--bp-cream);
  color: #111;
}

.bp-section--cream .bp-section-title,
.bp-section--cream h2,
.bp-section--cream h3 {
  color: #111;
}

.bp-section-title {
  text-align: center;
  font-size: 34px;
  margin: 0 0 36px;
}

.bp-section--cream .bp-section-title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bp-section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--bp-copper);
  margin: 14px auto 0;
}

.bp-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.bp-section-header h2 {
  font-size: 34px;
  margin: 0;
}

.bp-featured .bp-section-header h2 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bp-featured .bp-section-header h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--bp-copper);
  margin: 12px 0 0;
}

.bp-section-header a {
  color: var(--bp-copper);
  font-weight: 800;
  text-decoration: none;
}

.bp-section-header a:hover {
  text-decoration: underline;
}

/* --- Category grid (Nos univers) : image haut + bloc noir bas --- */
.bp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bp-category-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(196, 106, 43, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bp-section--cream .bp-category-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(196, 106, 43, 0.15);
}

.bp-category-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(196, 106, 43, 0.28);
}

.bp-category-card__media {
  position: relative;
  flex: 0 0 auto;
  height: clamp(180px, 22vw, 240px);
  overflow: hidden;
  background: #1a1a1a;
}

.bp-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.bp-category-card__media--placeholder {
  transition: transform 0.45s ease, filter 0.35s ease;
}

.bp-category-card__media--placeholder.bp-category-card__media--v0 {
  background:
    radial-gradient(ellipse 90% 70% at 88% 12%, rgba(196, 106, 43, 0.35), transparent 55%),
    radial-gradient(circle at 12% 75%, rgba(196, 106, 43, 0.1), transparent 42%),
    linear-gradient(158deg, #161616 0%, #0a0a0a 48%, #1c1916 100%);
}

.bp-category-card__media--placeholder.bp-category-card__media--v1 {
  background:
    radial-gradient(ellipse 80% 65% at 10% 18%, rgba(196, 106, 43, 0.3), transparent 50%),
    radial-gradient(circle at 82% 78%, rgba(159, 79, 31, 0.18), transparent 45%),
    linear-gradient(198deg, #121212 0%, #0d0d0d 50%, #181512 100%);
}

.bp-category-card__media--placeholder.bp-category-card__media--v2 {
  background:
    radial-gradient(ellipse 70% 60% at 50% 8%, rgba(196, 106, 43, 0.26), transparent 48%),
    radial-gradient(circle at 20% 85%, rgba(196, 106, 43, 0.12), transparent 40%),
    linear-gradient(175deg, #141414 0%, #080808 55%, #151210 100%);
}

.bp-category-card__media--placeholder.bp-category-card__media--v3 {
  background:
    radial-gradient(ellipse 100% 55% at 70% 22%, rgba(159, 79, 31, 0.32), transparent 52%),
    radial-gradient(circle at 25% 30%, rgba(196, 106, 43, 0.1), transparent 38%),
    linear-gradient(210deg, #101010 0%, #0c0c0c 45%, #1a1614 100%);
}

.bp-category-card__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: #111;
  padding: 18px 16px 20px;
}

.bp-category-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bp-category-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bp-copper);
  font-size: 1.2rem;
}

.bp-category-card__icon i {
  line-height: 1;
}

.bp-category-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #fff;
}

.bp-category-card p {
  margin: 0 0 14px;
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.45;
  color: #c9c2ba;
}

.bp-category-card__cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--bp-copper), var(--bp-copper-dark));
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(196, 106, 43, 0.3);
}

.bp-category-card:hover .bp-category-card__media img {
  transform: scale(1.05);
}

.bp-category-card--placeholder:hover .bp-category-card__media--placeholder {
  transform: scale(1.03);
}

/* --- Featured articles --- */
.bp-featured {
  background: var(--bp-black);
  padding: 72px 0;
}

.bp-featured-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bp-article-card {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bp-article-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.bp-article-card > div {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bp-article-card .bp-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 8px;
  background: var(--bp-copper);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 3px;
  width: fit-content;
}

.bp-article-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.bp-article-card p {
  color: var(--bp-muted);
  font-size: 14px;
  margin: 0 0 12px;
  flex: 1;
}

.bp-article-card a.bp-article-card__link {
  color: var(--bp-copper);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.bp-article-card a.bp-article-card__link:hover {
  text-decoration: underline;
}

/* --- Newsletter band --- */
.bp-newsletter {
  background: var(--bp-cream);
  color: #111;
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bp-newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.bp-newsletter__icon {
  font-size: 32px;
}

.bp-newsletter h2 {
  margin: 0 0 6px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bp-newsletter p {
  margin: 0;
  color: #444;
  max-width: 520px;
}

.bp-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.bp-newsletter__form input[type="email"] {
  min-width: 240px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 15px;
}

/* --- Product spotlight (homepage) --- */
.bp-spotlight {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, var(--bp-charcoal) 0%, var(--bp-black) 100%);
}

.bp-spotlight__card {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

@media (max-width: 960px) {
  .bp-spotlight__card {
    grid-template-columns: 1fr;
  }

  .bp-topbbq__card {
    grid-template-columns: 1fr;
  }

  .bp-topbbq__main,
  .bp-topbbq__offers {
    border-left: 0;
    border-top: 1px solid var(--bp-border);
  }
}

.bp-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.bp-spotlight__main {
  padding: 28px 24px;
  border-right: 1px solid var(--bp-border);
}

.bp-spotlight__offers {
  padding: 24px;
}

.bp-topbbq__viewport {
  overflow: hidden;
}

.bp-topbbq__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.bp-topbbq__slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.bp-topbbq__card {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
}

.bp-topbbq__media {
  background: #101010;
}

.bp-topbbq__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.bp-topbbq__main {
  padding: 26px 22px;
  border-left: 1px solid var(--bp-border);
}

.bp-topbbq__offers {
  padding: 22px;
  border-left: 1px solid var(--bp-border);
}

.bp-topbbq__cta {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.bp-topbbq__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.bp-topbbq__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--bp-border);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.bp-topbbq__arrow:hover {
  border-color: var(--bp-copper);
  color: var(--bp-copper);
}

.bp-spotlight__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bp-copper);
  margin-bottom: 10px;
}

.bp-spotlight__ean {
  font-size: 12px;
  color: var(--bp-muted);
}

.bp-spotlight__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bp-copper);
  margin: 16px 0;
}

.bp-offer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: var(--bp-card-soft);
  border-radius: 8px;
  border: 1px solid var(--bp-border);
  font-size: 14px;
}

.bp-offer-row a {
  color: var(--bp-copper);
  font-weight: 700;
  font-size: 12px;
}

/* --- Article layout --- */
.bp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 56px;
  padding: 64px 16px;
  align-items: start;
}

.bp-article h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  margin: 12px 0 18px;
}

.bp-breadcrumb {
  color: var(--bp-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

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

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

.bp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--bp-muted);
  font-size: 13px;
}

.bp-article-hero {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 0 34px;
  display: block;
}

.bp-article .bp-prose,
.bp-article .bp-prose p {
  color: #ddd;
  font-size: 17px;
  line-height: 1.85;
}

.bp-article .bp-prose h2 {
  font-size: 34px;
  margin-top: 46px;
  color: var(--bp-text);
}

.bp-article .bp-prose h3 {
  font-size: 24px;
  margin-top: 32px;
}

.bp-article .bp-prose a {
  color: var(--bp-copper);
}

.bp-art-hero {
  position: relative;
  min-height: 500px;
  background: #090909 center/cover no-repeat;
  border-bottom: 1px solid var(--bp-border);
}

.bp-art-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.85) 45%, rgba(7, 7, 7, 0.4) 100%);
}

.bp-art-hero__inner {
  position: relative;
  z-index: 1;
  padding: 20px 16px 44px;
  max-width: 1320px;
}

.bp-art-hero__breadcrumb {
  margin-bottom: 20px;
}

.bp-art-hero__eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 11px;
  border-radius: 6px;
  background: var(--bp-copper);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bp-art-hero__title {
  max-width: 660px;
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
}

.bp-art-hero__excerpt {
  max-width: 580px;
  margin: 0 0 18px;
  color: #d8d8d8;
  font-size: 22px;
  line-height: 1.45;
}

.bp-art-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #d1d1d1;
  font-size: 13px;
}

.bp-art-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bp-art-anchor-wrap {
  margin-top: -22px;
  position: relative;
  z-index: 4;
}

.bp-art-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.95);
}

.bp-art-anchor-nav__title {
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.bp-art-anchor-nav a {
  text-decoration: none;
  color: var(--bp-muted);
  border: 1px solid var(--bp-border);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
}

.bp-art-anchor-nav a:hover {
  color: var(--bp-copper);
  border-color: rgba(196, 106, 43, 0.6);
}

.bp-art-layout {
  padding-top: 28px;
}

.bp-art-sidebar {
  position: sticky;
  top: 106px;
}

.bp-art-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: item;
}

.bp-art-toc__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.bp-art-toc__list li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  color: var(--bp-copper);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.3;
  margin-top: 2px;
}

.bp-art-toc__list a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}

.bp-art-toc__list a:hover {
  color: var(--bp-copper);
}

.bp-art-section {
  scroll-margin-top: 120px;
}

.bp-rich-article {
  max-width: 980px;
  margin: 0 auto;
  color: #f0ede8;
  font-size: 18px;
  line-height: 1.75;
}

.bp-rich-article .bp-key-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 38px 0 46px;
}

.bp-rich-article .bp-key-points div {
  padding: 22px;
  background: linear-gradient(145deg, #171717, #101010);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
}

.bp-rich-article .bp-icon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(196,106,43,.16);
  border: 1px solid rgba(196,106,43,.45);
  border-radius: 999px;
  font-size: 22px;
}

.bp-rich-article .bp-key-points strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}

.bp-rich-article .bp-key-points p {
  margin: 0;
  font-size: 14px;
  color: #bdb6ad;
  line-height: 1.5;
}

.bp-rich-article .bp-verdict {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  margin: 48px 0;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(196,106,43,.20), rgba(255,255,255,.03)),
    #141414;
  border: 1px solid rgba(196,106,43,.5);
  border-radius: 18px;
}

.bp-rich-article .bp-verdict__icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  background: rgba(196,106,43,.18);
  border: 1px solid rgba(196,106,43,.55);
  border-radius: 999px;
  font-size: 30px;
}

.bp-rich-article .bp-verdict h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.bp-rich-article .bp-verdict p {
  margin: 0;
}

.bp-rich-article .bp-product-block {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at top left, rgba(196,106,43,.12), transparent 34%),
    #151515;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
}

.bp-rich-article .bp-product-block:hover {
  border-color: rgba(196,106,43,.55);
  transform: translateY(-2px);
  transition: .25s ease;
}

.bp-rich-article .bp-product-rank {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,.06);
}

.bp-rich-article .bp-product-image {
  background: #f4f1ec;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.bp-rich-article .bp-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bp-rich-article .bp-label {
  display: inline-block;
  padding: 7px 11px;
  background: linear-gradient(135deg, #c46a2b, #9f4f1f);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 5px;
}

.bp-rich-article .bp-product-info h3 {
  margin: 14px 0 12px;
  font-size: 30px;
}

.bp-rich-article .bp-product-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.bp-rich-article .bp-product-icons span {
  padding: 8px 11px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: #eee;
  font-size: 13px;
}

.bp-rich-article .bp-btn {
  display: inline-flex;
  margin-top: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #c46a2b, #9f4f1f);
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
}

/* --- Corps article (colonne principale uniquement) --- */
.bp-rich-article-inner {
  min-width: 0;
}

.bp-rich-article-inner .bp-prose,
.bp-rich-article-inner .bp-prose p {
  color: #c9c4bc;
  font-size: 18px;
  line-height: 1.8;
}

.bp-rich-article-inner .bp-prose > p:first-of-type {
  margin-top: 0;
}

.bp-rich-article-inner .bp-prose h2 {
  margin: 56px 0 20px;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.15;
  color: #fff;
  font-weight: 800;
}

.bp-rich-article-inner .bp-prose h2:first-child {
  margin-top: 0;
}

.bp-rich-article-inner .bp-prose h3 {
  margin: 32px 0 12px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.bp-rich-article-inner .bp-prose a {
  color: var(--bp-copper);
  font-weight: 700;
}

.bp-rich-article-inner .bp-lead {
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  margin: 0 0 28px;
}

.bp-rich-article-inner .bp-section-num {
  display: inline-block;
  margin-right: 12px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.95em;
  font-weight: 800;
  color: var(--bp-copper);
  letter-spacing: 0.02em;
}

.bp-rich-article-inner .bp-highlight-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  margin: 40px 0;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(196, 106, 43, 0.18), rgba(255, 255, 255, 0.03)),
    #141414;
  border: 1px solid rgba(196, 106, 43, 0.55);
  border-radius: 18px;
}

.bp-rich-article-inner .bp-highlight-box__icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  background: rgba(196, 106, 43, 0.18);
  border: 1px solid rgba(196, 106, 43, 0.55);
  border-radius: 999px;
  font-size: 28px;
  color: var(--bp-copper);
}

.bp-rich-article-inner .bp-highlight-box h2,
.bp-rich-article-inner .bp-highlight-box .bp-highlight-box__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bp-copper);
}

.bp-rich-article-inner .bp-highlight-box h3 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #fff;
}

.bp-rich-article-inner .bp-highlight-box p {
  margin: 0;
  color: #d5d0c8;
  font-size: 17px;
  line-height: 1.65;
}

.bp-rich-article-inner .bp-product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 48px;
  list-style: none;
  padding: 0;
}

.bp-rich-article-inner .bp-product-list > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bp-rich-article-inner .bp-product-block .bp-btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  box-sizing: border-box;
}

.bp-rich-article-inner .bp-check-list {
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.bp-rich-article-inner .bp-check-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  color: #c9c4bc;
  font-size: 15px;
  line-height: 1.5;
}

.bp-rich-article-inner .bp-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bp-copper);
  font-weight: 900;
  font-size: 15px;
}

.bp-rich-article-inner .bp-table-wrapper {
  overflow-x: auto;
  margin: 28px 0 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bp-rich-article-inner .bp-comparison-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #151515;
}

.bp-rich-article-inner .bp-comparison-table th,
.bp-rich-article-inner .bp-comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-size: 15px;
}

.bp-rich-article-inner .bp-comparison-table th {
  color: #fff;
  background: #1f1f1f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bp-rich-article-inner .bp-comparison-table td {
  color: #d5d0c8;
}

.bp-rich-article-inner .bp-comparison-table tr:last-child td {
  border-bottom: 0;
}

.bp-rich-article-inner .bp-article-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 36px;
  margin: 40px 0;
  align-items: start;
}

.bp-rich-article-inner .bp-article-columns h2 {
  margin-top: 0;
}

.bp-rich-article-inner .bp-feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.bp-rich-article-inner .bp-feature-row__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(196, 106, 43, 0.14);
  border: 1px solid rgba(196, 106, 43, 0.45);
  font-size: 20px;
  color: var(--bp-copper);
}

.bp-rich-article-inner .bp-mistake-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bp-rich-article-inner .bp-mistake-list li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 36px;
  color: #c9c4bc;
  font-size: 15px;
  line-height: 1.55;
}

.bp-rich-article-inner .bp-mistake-list li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(196, 106, 43, 0.12);
  border: 1px solid rgba(196, 106, 43, 0.45);
  color: var(--bp-copper);
  font-size: 12px;
  font-weight: 900;
}

.bp-rich-article-inner .bp-budget-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 40px;
}

.bp-rich-article-inner .bp-budget-tier {
  padding: 22px;
  background: linear-gradient(145deg, #171717, #101010);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  text-align: center;
}

.bp-rich-article-inner .bp-budget-tier__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(196, 106, 43, 0.16);
  border: 1px solid rgba(196, 106, 43, 0.45);
  font-size: 18px;
  font-weight: 800;
  color: var(--bp-copper);
}

.bp-rich-article-inner .bp-budget-tier strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.bp-rich-article-inner .bp-budget-tier p {
  margin: 0;
  font-size: 14px;
  color: #a8a29a;
  line-height: 1.45;
}

.bp-rich-article-inner .bp-faq {
  margin: 36px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bp-rich-article-inner .bp-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #141414;
  overflow: hidden;
}

.bp-rich-article-inner .bp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.bp-rich-article-inner .bp-faq-item summary::-webkit-details-marker {
  display: none;
}

.bp-rich-article-inner .bp-faq-item summary::after {
  content: "\2304";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-60%) rotate(0deg);
  color: var(--bp-copper);
  font-size: 14px;
  font-weight: 900;
}

.bp-rich-article-inner .bp-faq-item[open] summary::after {
  transform: translateY(-30%) rotate(180deg);
}

.bp-rich-article-inner .bp-faq-item .bp-faq-body {
  padding: 0 18px 18px;
  color: #c9c4bc;
  font-size: 15px;
  line-height: 1.65;
}

.bp-rich-article-inner .bp-article-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 28px;
  align-items: center;
  margin: 48px 0 24px;
  padding: 22px 24px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.bp-rich-article-inner .bp-article-bottom-cta__media {
  border-radius: 12px;
  overflow: hidden;
  min-height: 140px;
  background: #1a1a1a;
}

.bp-rich-article-inner .bp-article-bottom-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

.bp-rich-article-inner .bp-article-bottom-cta h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
}

.bp-rich-article-inner .bp-article-bottom-cta p {
  margin: 0 0 16px;
  color: #a8a29a;
  font-size: 15px;
  line-height: 1.55;
}

.bp-rich-article-inner .bp-article-bottom-cta .bp-btn {
  width: auto;
  margin-top: 0;
}

.bp-rich-article-inner .bp-art-section .bp-callout {
  margin: 32px 0;
  border-radius: 16px;
  padding: 26px 28px;
}

.bp-rich-article-inner .bp-art-section .bp-callout--expert {
  border-width: 1px;
}

.bp-callout {
  margin: 28px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(196, 106, 43, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(196, 106, 43, 0.45);
  border-radius: 10px;
}

.bp-callout strong,
.bp-callout .bp-callout__title {
  color: var(--bp-copper);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}

.bp-callout--expert {
  border-color: rgba(196, 106, 43, 0.65);
}

.bp-callout ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #ddd;
}

.bp-callout li {
  margin-bottom: 8px;
}

.bp-sidebar {
  position: relative;
}

.bp-sidebar-card {
  position: sticky;
  top: 110px;
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.bp-sidebar-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}

.bp-sidebar-card ol,
.bp-sidebar-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #ddd;
}

.bp-sidebar-card li {
  margin-bottom: 12px;
}

.bp-sidebar-card a {
  color: #eee;
  text-decoration: none;
}

.bp-sidebar-card a:hover {
  color: var(--bp-copper);
}

.bp-sidebar-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.bp-recent-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.bp-recent-row h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.bp-recent-row time {
  font-size: 12px;
  color: var(--bp-muted);
}

.bp-product-cta {
  text-align: center;
}

.bp-product-cta img {
  border-radius: 8px;
  margin-bottom: 12px;
}

/* --- Inner pages legacy (catégorie, produit) --- */
.bp-page-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 48px 16px 32px;
  background: var(--bp-charcoal) center / cover no-repeat;
  border-bottom: 1px solid var(--bp-border);
}

.bp-cat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.45));
}

.bp-page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
}

.bp-page {
  padding: 48px 16px 72px;
}

.bp-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.bp-card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bp-cat-article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.bp-cat-article:hover {
  border-color: rgba(196, 106, 43, 0.5);
}

.bp-cat-article img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}

.bp-cat-article__body {
  padding: 18px 18px 18px 0;
}

.bp-cat-article__body h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.bp-cat-article__body p {
  margin: 0 0 10px;
  color: var(--bp-muted);
  font-size: 14px;
}

.bp-cat-article__more {
  color: var(--bp-copper);
  font-weight: 800;
  font-size: 13px;
}

.bp-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.bp-pagination a,
.bp-pagination span {
  min-width: 40px;
  padding: 8px 12px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid var(--bp-border);
  text-decoration: none;
  color: var(--bp-text);
  font-size: 14px;
  background: var(--bp-card);
}

.bp-pagination a:hover {
  border-color: var(--bp-copper);
  color: var(--bp-copper);
}

.bp-pagination .is-current {
  background: var(--bp-copper);
  border-color: var(--bp-copper);
  color: #fff;
}

/* --- Page catégorie articles (maquette) --- */
.bp-cat-page {
  background: var(--bp-black);
}

.bp-cat-hero {
  min-height: 320px;
  align-items: flex-end;
  padding: 56px 16px 40px;
}

.bp-cat-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.bp-cat-hero__breadcrumb {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.bp-cat-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.bp-cat-hero__breadcrumb a:hover {
  color: var(--bp-copper);
}

.bp-cat-hero__breadcrumb span:not([aria-hidden]) {
  color: #fff;
  font-weight: 600;
}

.bp-cat-hero__intro {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.55;
}

.bp-cat-hero__intro p {
  margin: 0 0 0.5em;
}

.bp-cat-hero__title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.bp-cat-body {
  padding-top: 40px;
}

.bp-cat-grid {
  align-items: start;
}

.bp-cat-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.bp-cat-toolbar__count {
  margin: 0;
  font-size: 14px;
  color: var(--bp-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.bp-cat-toolbar__icon {
  color: var(--bp-copper);
  font-size: 15px;
}

.bp-cat-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-cat-sort__label {
  font-size: 13px;
  color: var(--bp-muted);
  white-space: nowrap;
}

.bp-cat-sort__wrap {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(24, 24, 24, 0.95);
  padding: 0 10px;
}

.bp-cat-sort__select {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px 10px 4px;
  cursor: pointer;
  min-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
}

.bp-cat-feed {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bp-cat-card {
  display: grid;
  grid-template-columns: min(240px, 38%) 1fr;
  gap: 0;
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bp-cat-card:hover {
  border-color: rgba(196, 106, 43, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.bp-cat-card__media {
  position: relative;
  min-height: 160px;
  background: #111;
}

.bp-cat-card__media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.bp-cat-card__media-placeholder {
  width: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  color: var(--bp-copper);
  font-size: 34px;
}

.bp-cat-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--bp-copper);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1;
}

.bp-cat-card__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bp-cat-card__body.is-compact .bp-cat-card__footer {
  margin-top: 14px;
}

.bp-cat-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.bp-cat-card__excerpt {
  margin: 0 0 auto;
  padding-bottom: 16px;
  color: var(--bp-muted);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.bp-cat-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--bp-border);
}

.bp-cat-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--bp-muted);
}

.bp-cat-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bp-cat-card__meta-item i {
  color: var(--bp-copper);
  font-size: 14px;
}

.bp-cat-card__cta {
  color: var(--bp-copper);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.bp-cat-widget__title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.bp-cat-widget-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid var(--bp-border);
}

.bp-cat-widget-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bp-cat-widget-row:first-of-type {
  padding-top: 0;
}

.bp-cat-widget-row:hover .bp-cat-widget-row__title {
  color: var(--bp-copper);
}

.bp-cat-widget-row__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.bp-cat-widget-row--compact .bp-cat-widget-row__thumb {
  width: 52px;
  height: 52px;
}

.bp-cat-widget-row__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.bp-cat-sublist {
  display: flex;
  flex-direction: column;
}

.bp-cat-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--bp-border);
}

.bp-cat-subrow:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bp-cat-subrow:hover .bp-cat-subrow__label {
  color: var(--bp-copper);
}

.bp-cat-subrow__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bp-muted);
  font-size: 14px;
  font-weight: 700;
}

.bp-cat-subrow__chev {
  color: var(--bp-copper);
  font-size: 18px;
  line-height: 1;
}

.bp-cat-widget--newsletter {
  text-align: left;
}

.bp-cat-nl__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid var(--bp-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bp-copper);
  font-size: 20px;
}

.bp-cat-nl__text {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.bp-cat-nl__form {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.bp-cat-nl__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 0;
  font-size: 15px;
}

.bp-cat-nl__btn {
  width: auto;
  min-width: 110px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  margin-top: 0;
  height: 42px;
  padding: 0 16px;
}

.bp-cat-view-all {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.bp-cat-prod-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bp-cat-prod-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--bp-border);
}

.bp-cat-prod-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bp-cat-prod-row__media {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  border: 1px solid var(--bp-border);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-cat-prod-row__media img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.bp-cat-prod-row__body {
  min-width: 0;
}

.bp-cat-prod-row__name {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.3;
}

.bp-cat-prod-row__rating {
  margin: 0 0 5px;
  font-size: 12px;
  color: var(--bp-muted);
}

.bp-cat-prod-row__price {
  margin: 0 0 5px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.bp-cat-prod-row__currency {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--bp-muted);
}

.bp-cat-prod-row__cta {
  color: var(--bp-copper);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.bp-cat-prod-row__cta:hover {
  text-decoration: underline;
}

.bp-cat-prod-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  overflow: hidden;
}

.bp-cat-prod-card__media {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.bp-cat-prod-card__media img {
  max-width: 180px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bp-cat-prod-card__body {
  padding: 14px 16px 18px;
}

.bp-cat-prod-card__name {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.bp-cat-prod-card__rating {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--bp-muted);
}

.bp-cat-stars {
  color: var(--bp-copper);
  letter-spacing: 1px;
  margin-right: 4px;
}

.bp-cat-stars i {
  font-size: 11px;
}

.bp-cat-prod-card__price {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.bp-cat-prod-card__currency {
  font-size: 0.65em;
  font-weight: 700;
  opacity: 0.85;
}

.bp-cat-prod-card__btn {
  width: 100%;
  justify-content: center;
  margin-top: 0 !important;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 16px;
}

.bp-cat-widget__footer-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--bp-copper);
  text-decoration: none;
}

.bp-cat-widget__footer-link:hover {
  text-decoration: underline;
}

.bp-cat-widget__footer-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.bp-cat-art-pick {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bp-cat-art-pick__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--bp-border);
}

.bp-cat-art-pick__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bp-cat-art-pick__row:first-child {
  padding-top: 0;
}

.bp-cat-art-pick__thumb-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.bp-cat-art-pick__thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bp-cat-art-pick__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bp-cat-art-pick__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.bp-cat-art-pick__excerpt {
  font-size: 12px;
  color: var(--bp-muted);
  line-height: 1.4;
}

.bp-cat-art-pick__row:hover .bp-cat-art-pick__title {
  color: var(--bp-copper);
}

.bp-cat-promo {
  position: relative;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  background: var(--bp-card) center / cover no-repeat;
  background-color: #1a1a1a;
}

.bp-cat-promo--has-photo {
  background-size: cover;
  background-position: center;
}

.bp-cat-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.35), rgba(8, 8, 8, 0.88));
  pointer-events: none;
}

.bp-cat-promo__inner {
  position: relative;
  z-index: 1;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.bp-cat-promo__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bp-cat-promo__eyebrow i {
  color: var(--bp-copper);
}

.bp-cat-promo__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.bp-cat-promo__btn {
  margin-top: 4px !important;
}

.bp-cat-nl__heading {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.bp-cat-nl__disclaimer {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--bp-muted);
  text-align: center;
}

@media (max-width: 960px) {
  .bp-cat-page .bp-two-col .bp-sidebar {
    display: block;
  }

  .bp-cat-card {
    grid-template-columns: 1fr;
  }

  .bp-cat-card__media {
    min-height: 200px;
  }

  .bp-cat-card__media img {
    min-height: 200px;
  }

  .bp-cat-card__body {
    padding: 18px;
  }

  .bp-cat-nl__form {
    flex-direction: column;
  }

  .bp-cat-nl__btn {
    width: 100%;
  }
}

/* --- Footer --- */
.bp-footer {
  background: #000;
  border-top: 1px solid var(--bp-border);
  padding: 48px 16px 24px;
  color: var(--bp-muted);
  font-size: 14px;
}

.bp-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: min(1180px, 100%);
  margin: 0 auto 32px;
}

.bp-footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

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

.bp-footer a:hover {
  color: var(--bp-copper);
}

.bp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-footer li {
  margin-bottom: 8px;
}

.bp-footer__bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--bp-border);
  text-align: center;
  font-size: 13px;
}

/* --- Produit fiche (dark) --- */
.bp-prd {
  padding: 48px 16px 72px;
}

.bp-prd-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.bp-prd-main {
  min-width: 0;
}

.bp-prd-card {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.bp-prd-hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.bp-prd-body {
  margin-top: 18px;
}

.bp-prd-brand {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--bp-copper);
}

.bp-prd-price {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bp-copper);
}

.bp-prd-meta {
  margin: 0 0 12px;
  color: var(--bp-muted);
  font-size: 14px;
}

.bp-prd-block-title {
  margin: 0 0 14px;
  font-size: 24px;
}

.bp-prd-offers table {
  width: 100%;
  border-collapse: collapse;
}

.bp-prd-offers table th,
.bp-prd-offers table td {
  border: 1px solid var(--bp-border);
  padding: 9px 10px;
}

.bp-prd-sidebar .bp-sidebar-card {
  background: var(--bp-card);
}

.bp-prd-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-prd-side-list li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--bp-border);
}

.bp-prd-side-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bp-prd-side-list a {
  color: var(--bp-text);
  text-decoration: none;
}

.bp-prd-side-list a:hover {
  color: var(--bp-copper);
}

.bp-prd-similar {
  margin-top: 28px;
}

.bp-prd-similar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bp-prd-similar-card {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.bp-prd-similar-img {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--bp-border);
  margin-bottom: 10px;
}

.bp-prd-similar-brand {
  margin: 0 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--bp-copper);
}

.bp-prd-similar-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.35;
}

.bp-prd-similar-meta {
  margin: 0 0 10px;
  color: var(--bp-muted);
  font-size: 13px;
}

.bp-prd-similar-price {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--bp-copper);
}

.bp-prd-similar-cta {
  margin-top: auto;
  color: var(--bp-copper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.bp-prd-similar-cta:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .bp-prd-layout {
    grid-template-columns: 1fr;
  }

  .bp-prd-similar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bp-prd-similar-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Product page v2 (maquette) --- */
.bp-prd2 {
  padding: 36px 16px 72px;
}

.bp-prd2-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr) 320px;
  gap: 18px;
  align-items: start;
}

.bp-prd2-gallery,
.bp-prd2-main,
.bp-prd2-side .bp-sidebar-card,
.bp-prd2-tab-panel {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
}

.bp-prd2-gallery {
  padding: 14px;
}

.bp-prd2-gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}

.bp-prd2-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-prd2-thumb {
  padding: 0;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  overflow: hidden;
  background: #0c0c0c;
  cursor: pointer;
}

.bp-prd2-thumb.is-active,
.bp-prd2-thumb:hover {
  border-color: var(--bp-copper);
}

.bp-prd2-thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}

.bp-prd2-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.bp-prd2-usp-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.bp-prd2-usp-row span {
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  color: var(--bp-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bp-prd2-usp-row i {
  color: var(--bp-copper);
}

.bp-prd2-main {
  padding: 18px 18px 20px;
}

.bp-prd2-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bp-copper);
  font-weight: 800;
}

.bp-prd2-main h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.06;
}

.bp-prd2-rating {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--bp-muted);
}

.bp-prd2-meta {
  margin: 0 0 12px;
  color: var(--bp-muted);
  font-size: 13px;
}

.bp-prd2-intro {
  margin-bottom: 10px;
  color: #ddd;
  font-size: 15px;
  line-height: 1.5;
}

.bp-prd2-checks {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.bp-prd2-checks li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  color: var(--bp-muted);
  font-size: 14px;
}

.bp-prd2-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bp-copper);
  font-weight: 800;
}

.bp-prd2-stock {
  color: #93d59a;
  font-size: 13px;
  margin-bottom: 10px;
}

.bp-prd2-price {
  margin: 0 0 14px;
  color: var(--bp-copper);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  font-weight: 800;
}

.bp-prd2-price span {
  font-size: 0.32em;
  color: #c9c9c9;
}

.bp-prd2-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bp-prd2-cta-row .bp-btn {
  margin-top: 0;
}

.bp-prd2-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bp-prd-side-price {
  display: block;
  margin-top: 4px;
  color: var(--bp-copper);
  font-size: 12px;
}

.bp-prd2-tip p {
  color: var(--bp-muted);
  font-size: 14px;
  line-height: 1.45;
}

.bp-prd2-tip a {
  color: var(--bp-copper);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.bp-prd2-tabs {
  margin-top: 22px;
}

.bp-prd2-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.bp-prd2-tab-nav a {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 14px;
  color: var(--bp-muted);
  text-decoration: none;
  border-right: 1px solid var(--bp-border);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bp-prd2-tab-nav a:last-child {
  border-right: 0;
}

.bp-prd2-tab-nav a:hover {
  color: var(--bp-copper);
}

.bp-prd2-tab-panel {
  display: none;
  padding: 18px;
  margin-bottom: 10px;
}

.bp-prd2-tab-panel.is-active {
  display: block;
}

.bp-prd2-tab-nav a.is-active {
  color: var(--bp-copper);
  background: rgba(196, 106, 43, 0.12);
}

@media (max-width: 1100px) {
  .bp-prd2-top {
    grid-template-columns: 1fr;
  }

  .bp-prd2-main-image img {
    height: 360px;
  }
}

@media (max-width: 700px) {
  .bp-prd2-gallery {
    grid-template-columns: 1fr;
  }

  .bp-prd2-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  .bp-prd2-thumb {
    min-width: 64px;
  }

  .bp-prd2-main-image img {
    height: 280px;
  }

  .bp-prd2-usp-row {
    grid-template-columns: 1fr;
  }
}

/* --- Utils --- */
.bp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bp-text-center {
  text-align: center;
}

.bp-muted {
  color: var(--bp-muted);
}

.bp-sidebar-toc ol,
.bp-sidebar-toc ul {
  padding-left: 1.1rem;
  margin: 0;
}

.bp-prose--table table {
  width: 100%;
  border-collapse: collapse;
}

.bp-prose--table th,
.bp-prose--table td {
  border: 1px solid var(--bp-border);
  padding: 8px 10px;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .bp-nav-wrap {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    background: var(--bp-charcoal);
    border-left: 1px solid var(--bp-border);
    padding: 88px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 45;
    justify-content: flex-start;
    overflow-y: auto;
  }

  body.bp-nav-open .bp-nav-wrap {
    transform: translateX(0);
  }

  .bp-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .bp-nav > a,
  .bp-nav__group > a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--bp-border);
  }

  .bp-nav__group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .bp-nav__sub a {
    display: block;
    width: 100%;
    padding: 8px 0 8px 12px;
    border-bottom: 1px solid var(--bp-border);
    font-size: 12px;
    text-transform: none;
    font-weight: 600;
  }

  .bp-nav__sub {
    position: static;
    transform: none;
    display: block;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 12px;
  }

  .bp-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bp-hero-slider {
    height: 560px;
  }

  .bp-category-grid,
  .bp-featured-row,
  .bp-trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bp-trust__cell {
    border-right: 0;
    border-bottom: 1px solid var(--bp-border);
  }

  .bp-trust__cell:nth-child(odd) {
    border-right: 1px solid var(--bp-border);
  }

  .bp-article-layout,
  .bp-two-col {
    grid-template-columns: 1fr;
  }

  .bp-art-hero {
    min-height: 400px;
  }

  .bp-art-hero__title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .bp-art-hero__excerpt {
    font-size: 18px;
  }

  .bp-art-anchor-wrap {
    margin-top: -16px;
  }

  .bp-sidebar {
    display: none;
  }

  .bp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bp-spotlight__main {
    border-right: 0;
    border-bottom: 1px solid var(--bp-border);
  }

  .bp-cat-article {
    grid-template-columns: 1fr;
  }

  .bp-cat-article img {
    min-height: 200px;
  }

  .bp-cat-article__body {
    padding: 0 18px 18px;
  }
}

@media (max-width: 640px) {
  .bp-category-grid,
  .bp-featured-row,
  .bp-trust__grid,
  .bp-footer__grid {
    grid-template-columns: 1fr;
  }

  .bp-trust__cell:nth-child(odd) {
    border-right: 0;
  }

  .bp-hero-slide h1 {
    font-size: 42px;
  }

  .bp-hero-slide p {
    font-size: 16px;
  }

  .bp-search-form input[type="search"] {
    width: 100%;
  }

  .bp-search-form {
    max-width: min(140px, 42vw);
  }
}

@media (max-width: 900px) {
  .bp-rich-article .bp-key-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .bp-rich-article .bp-product-block {
    grid-template-columns: 1fr;
  }

  .bp-rich-article-inner .bp-product-list {
    grid-template-columns: 1fr;
  }

  .bp-rich-article-inner .bp-article-columns {
    grid-template-columns: 1fr;
  }

  .bp-rich-article-inner .bp-budget-grid {
    grid-template-columns: 1fr;
  }

  .bp-rich-article-inner .bp-article-bottom-cta {
    grid-template-columns: 1fr;
  }

  .bp-rich-article-inner .bp-highlight-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bp-rich-article .bp-key-points {
    grid-template-columns: 1fr;
  }

  .bp-rich-article .bp-verdict {
    grid-template-columns: 1fr;
  }

  .bp-rich-article-inner .bp-prose,
  .bp-rich-article-inner .bp-prose p {
    font-size: 16px;
  }

  .bp-rich-article-inner .bp-prose h2 {
    font-size: 24px;
  }
}
