/* ══════════════════════════════════════════
   BAD KING TATTOO — Page Bric-à-brac
   Extrait du <style> inline de bric-a-brac.html pour suivre
   la même convention que piercings.css : un fichier par page.
   ══════════════════════════════════════════ */
/* ─── Page bric-à-brac ─── */
#bricabrac-hero {
  min-height: 60vh;
  padding: clamp(110px,16vw,135px) clamp(16px, 5vw, 60px) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--abyss);
  overflow: hidden;
}
#bricabrac-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,168,37,0.04), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212,168,37,0.03), transparent 40%);
  pointer-events: none;
}
.bb-eyebrow {
  font-family: var(--raw);
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 8px 18px;
  background: rgba(212, 168, 37, 0.04);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.bb-title {
  font-family: var(--gothic);
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 28px;
  text-shadow: 4px 4px 0 rgba(212,168,37,.06), -2px -2px 0 rgba(0,0,0,.6);
  position: relative;
  z-index: 1;
}
.bb-tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--cream);
  max-width: 720px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.bb-tagline em { color: var(--gold); font-style: italic; }

.bb-shop-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--raw);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-50);
  padding: 12px 22px;
  border: 1px dashed var(--gold-line);
  background: var(--coal);
  position: relative;
  z-index: 1;
}
.bb-shop-pill::before {
  content: '♛';
  color: var(--gold);
  opacity: 0.7;
}

/* Catégories */
#bricabrac-cats {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 60px);
  background: var(--void);
  position: relative;
}

.bb-cats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-cat {
  background: var(--coal);
  border: 1px solid var(--gold-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s;
}
.bb-cat:hover {
  border-color: rgba(212, 168, 37, 0.35);
  transform: translateY(-4px);
}

.bb-cat-img {
  aspect-ratio: 4 / 3;
  background: var(--abyss);
  border-bottom: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bb-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bb-cat-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(212,168,37,0.025) 14px, rgba(212,168,37,0.025) 16px),
    var(--abyss);
}
.bb-cat-img-placeholder svg {
  width: 70px;
  height: 70px;
  color: var(--gold);
  opacity: 0.45;
}

.bb-cat-body {
  padding: 28px 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bb-cat-tag {
  font-family: var(--raw);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 10px;
}
.bb-cat-title {
  font-family: var(--gothic);
  font-size: 2.1rem;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 2px 2px 0 rgba(212,168,37,.06);
}
.bb-cat-desc {
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--cream-50);
  flex: 1;
}

/* Manifeste / message shop */
#bricabrac-manifesto {
  padding: clamp(60px, 9vw, 110px) clamp(16px, 5vw, 60px);
  background: var(--abyss);
  position: relative;
  text-align: center;
}
.bb-manifesto-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(155deg, var(--coal) 0%, rgba(15,12,9,0.95) 100%);
  border: 1px solid var(--gold-line);
  border-left: 3px solid var(--gold);
  position: relative;
}
.bb-manifesto-wrap::before,
.bb-manifesto-wrap::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}
.bb-manifesto-wrap::before { top: -7px; right: -7px; border-left: none; border-bottom: none; }
.bb-manifesto-wrap::after  { bottom: -7px; left: -7px;  border-right: none; border-top: none; }

.bb-mani-eyebrow {
  font-family: var(--raw);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 14px;
}
.bb-mani-title {
  font-family: var(--gothic);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 2px 2px 0 rgba(212,168,37,.06);
}
.bb-mani-text {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 16px;
}
.bb-mani-text:last-of-type { margin-bottom: 32px; }
.bb-mani-text em { color: var(--gold); }

.bb-mani-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* Address line en bas */
.bb-address {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--cream-50);
  margin-top: 18px;
}
.bb-address a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  transition: color 0.3s, border-color 0.3s;
}
.bb-address a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 1100px) {
  .bb-cats-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
  }
  .bb-cats-grid > .bb-cat:last-child {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 720px) {
  .bb-cats-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .bb-cats-grid > .bb-cat:last-child {
    grid-column: auto;
    max-width: none;
  }
  .bb-manifesto-wrap {
    padding: 36px 26px;
  }
}
