/* ================================================================
   BASEBORN INDUSTRIES — MAIN STYLESHEET
   Version: 1.0.0
   
   TABLE OF CONTENTS:
   01. Design Tokens (CSS Variables)
   02. Reset & Base
   03. Typography
   04. Custom Cursor
   05. Noise Texture
   06. Loader
   07. Navigation
   08. Buttons
   09. Ticker
   10. Section Base Styles
   11. Hero Section
   12. Foundlings Section
   13. Products Section (WooCommerce)
   14. Drops Section
   15. Email Signup Section
   16. About / Lore Section
   17. Gallery Section
   18. Footer
   19. Animations & Reveals
   20. WooCommerce Overrides
   21. Responsive
   ================================================================ */

/* ----------------------------------------------------------------
   01. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* --- Colors --- */
  --bb-black:       #080808;
  --bb-void:        #0d0d0d;
  --bb-coal:        #141414;
  --bb-smoke:       #1e1e1e;
  --bb-ash:         #2a2a2a;
  --bb-mid:         #3a3a3a;
  --bb-red:         #d42b1f;
  --bb-red-hot:     #ff3527;
  --bb-red-glow:    rgba(212, 43, 31, 0.15);
  --bb-yellow:      #f5c118;
  --bb-yellow-glow: rgba(245, 193, 24, 0.15);
  --bb-bone:        #e8dfc4;
  --bb-white:       #f4f0e8;
  --bb-blue:        #3a7bd5;
  --bb-blue-glow:   rgba(58, 123, 213, 0.15);

  /* --- Typography --- */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow Condensed', sans-serif;
  --font-accent:  'Permanent Marker', cursive;

  /* --- Spacing --- */
  --section-pad-v: 120px;
  --section-pad-h: 60px;
  --container-max: 1360px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 80px;

  /* --- Motion --- */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:  0.2s;
  --duration-med:   0.4s;
  --duration-slow:  0.8s;

  /* --- Borders --- */
  --radius-none: 0;
  --border-glow: 1px solid rgba(212, 43, 31, 0.3);
  --border-subtle: 1px solid var(--bb-ash);
}

/* ----------------------------------------------------------------
   02. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  background-color: var(--bb-black);
  color: var(--bb-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

body.no-cursor-js { cursor: auto; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
}

/* ----------------------------------------------------------------
   03. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--bb-white);
}

.display-giant  { font-size: clamp(80px, 16vw, 200px); }
.display-large  { font-size: clamp(52px, 8vw, 100px); }
.display-medium { font-size: clamp(36px, 5vw, 64px); }
.display-small  { font-size: clamp(28px, 3vw, 40px); }

.body-large  { font-size: 18px; font-weight: 300; line-height: 1.8; }
.body-base   { font-size: 15px; font-weight: 300; line-height: 1.7; }
.body-small  { font-size: 13px; font-weight: 300; line-height: 1.7; }
.label-text  { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; }
.label-small { font-size: 9px;  letter-spacing: 0.3em; text-transform: uppercase; }

.text-red    { color: var(--bb-red);    }
.text-yellow { color: var(--bb-yellow); }
.text-blue   { color: var(--bb-blue);   }
.text-bone   { color: var(--bb-bone);   }
.text-dim    { color: rgba(244, 240, 232, 0.25); }
.text-muted  { color: rgba(244, 240, 232, 0.5);  }

/* ----------------------------------------------------------------
   04. CUSTOM CURSOR
   ---------------------------------------------------------------- */
#bb-cursor {
  width: 14px;
  height: 14px;
  background: var(--bb-red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-bounce),
              height 0.3s var(--ease-bounce),
              background 0.2s ease;
  mix-blend-mode: difference;
}

#bb-cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(212, 43, 31, 0.45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-bounce),
              height 0.3s var(--ease-bounce),
              border-color 0.2s ease;
}

.cursor-hover #bb-cursor {
  width: 24px;
  height: 24px;
  background: var(--bb-yellow);
}
.cursor-hover #bb-cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(245, 193, 24, 0.4);
}

/* ----------------------------------------------------------------
   05. NOISE TEXTURE
   ---------------------------------------------------------------- */
.bb-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ----------------------------------------------------------------
   06. LOADER
   ---------------------------------------------------------------- */
#bb-loader {
  position: fixed;
  inset: 0;
  background: var(--bb-black);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out-expo);
}

#bb-loader.bb-loader--gone {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.bb-loader__skull {
  width: 80px;
  height: 80px;
  animation: bb-skull-float 2.4s ease-in-out infinite,
             bb-skull-glow  1.2s ease-in-out infinite;
}

.bb-loader__bar-track {
  width: 180px;
  height: 2px;
  background: var(--bb-smoke);
  overflow: hidden;
}

.bb-loader__bar-fill {
  height: 100%;
  width: 0;
  background: var(--bb-red);
  animation: bb-load-fill 2.4s var(--ease-out-expo) forwards;
}

.bb-loader__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: rgba(244, 240, 232, 0.25);
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   07. NAVIGATION
   ---------------------------------------------------------------- */
#bb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-pad-h);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

#bb-nav.is-scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(212, 43, 31, 0.18);
}

/* Logo */
.bb-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--bb-white);
  transition: color var(--duration-fast) ease;
}
.bb-nav__logo:hover { color: var(--bb-red); }
.bb-nav__logo svg { width: 34px; height: 34px; flex-shrink: 0; }

/* Links */
.bb-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.bb-nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.55);
  position: relative;
  transition: color var(--duration-fast) ease;
}

.bb-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bb-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo);
}

.bb-nav__link:hover       { color: var(--bb-white); }
.bb-nav__link:hover::after { transform: scaleX(1); }
.bb-nav__link.is-active   { color: var(--bb-white); }
.bb-nav__link.is-active::after { transform: scaleX(1); }

/* Nav CTA */
.bb-nav__cta {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--bb-white);
  background: var(--bb-red);
  padding: 10px 26px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-bounce);
}

.bb-nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bb-red-hot);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out-expo);
}

.bb-nav__cta:hover { transform: translateY(-2px); }
.bb-nav__cta:hover::before { transform: translateX(0); }
.bb-nav__cta span { position: relative; z-index: 1; }

/* Hamburger */
.bb-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
}
.bb-nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bb-white);
  transition: all 0.3s ease;
}
.bb-nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.bb-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.bb-nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Drawer */
.bb-nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.bb-nav__mobile.is-open { transform: translateX(0); }

.bb-nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 64px);
  letter-spacing: 0.04em;
  color: rgba(244, 240, 232, 0.5);
  transition: color 0.2s ease, letter-spacing 0.3s ease;
}
.bb-nav__mobile a:hover { color: var(--bb-red); letter-spacing: 0.08em; }

/* ----------------------------------------------------------------
   08. BUTTONS
   ---------------------------------------------------------------- */

/* Base */
.bb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: transform 0.3s var(--ease-bounce);
  border: none;
  outline: none;
  white-space: nowrap;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.bb-btn:active { transform: scale(0.96) !important; }

.bb-btn__text  { position: relative; z-index: 1; }
.bb-btn__arrow { display: inline-block; transition: transform 0.3s var(--ease-out-expo); position: relative; z-index: 1; }
.bb-btn:hover .bb-btn__arrow { transform: translateX(6px); }

/* Variants */
.bb-btn--primary {
  background: var(--bb-red);
  color: var(--bb-white);
}
.bb-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bb-red-hot), var(--bb-red));
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}
.bb-btn--primary:hover { transform: translateY(-4px) scale(1.02); }
.bb-btn--primary:hover::before { transform: translateX(0); }

.bb-btn--outline {
  background: transparent;
  color: var(--bb-white);
  border: 1.5px solid rgba(244, 240, 232, 0.3);
  clip-path: none;
}
.bb-btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 240, 232, 0.06);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}
.bb-btn--outline:hover { border-color: var(--bb-white); transform: translateY(-4px); }
.bb-btn--outline:hover::before { transform: translateX(0); }

.bb-btn--yellow {
  background: var(--bb-yellow);
  color: var(--bb-black);
}
.bb-btn--yellow:hover { transform: translateY(-4px) scale(1.02); filter: brightness(1.08); }

.bb-btn--ghost {
  background: transparent;
  color: var(--bb-red);
  border: 1.5px solid var(--bb-red);
  clip-path: none;
}
.bb-btn--ghost:hover { background: var(--bb-red); color: var(--bb-white); transform: translateY(-3px); }

/* Sizes */
.bb-btn--sm { font-size: 15px; padding: 10px 24px; }
.bb-btn--lg { font-size: 24px; padding: 20px 52px; }

/* ----------------------------------------------------------------
   09. TICKER
   ---------------------------------------------------------------- */
.bb-ticker {
  overflow: hidden;
  background: var(--bb-red);
  padding: 12px 0;
  border-top: 2px solid rgba(255, 53, 39, 0.6);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

.bb-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: bb-ticker-roll 28s linear infinite;
}

.bb-ticker:hover .bb-ticker__track { animation-play-state: paused; }

.bb-ticker__item {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.12em;
  color: var(--bb-white);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.bb-ticker__item::after {
  content: '✦';
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

/* ----------------------------------------------------------------
   10. SECTION BASE STYLES
   ---------------------------------------------------------------- */
.bb-section {
  padding: var(--section-pad-v) var(--section-pad-h);
  position: relative;
}

.bb-section--dark   { background: var(--bb-black); }
.bb-section--void   { background: var(--bb-void);  }
.bb-section--coal   { background: var(--bb-coal);  }

.bb-section__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bb-red);
  margin-bottom: 12px;
}

.bb-section__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--bb-white);
  margin-bottom: 0;
}

.bb-section__title .dim { color: rgba(244, 240, 232, 0.18); }

.bb-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-xl);
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   11. HERO SECTION
   ---------------------------------------------------------------- */
.bb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--section-pad-h);
}

/* Depth backgrounds */
.bb-hero__depth {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 65%, rgba(212, 43, 31, 0.11) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(212, 43, 31, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid overlay */
.bb-hero__grid {
  position: absolute;
  inset: -100%;
  background-image:
    linear-gradient(rgba(212, 43, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 43, 31, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(600px) rotateX(48deg) translateY(28%);
  animation: bb-grid-scroll 14s linear infinite;
  pointer-events: none;
}

/* Particles */
.bb-hero__particles { position: absolute; inset: 0; pointer-events: none; }

.bb-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--bb-red);
  pointer-events: none;
  animation: bb-particle-rise linear infinite;
  opacity: 0;
}

/* Content */
.bb-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bb-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.48em;
  color: var(--bb-red);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: bb-rise-up 0.8s var(--ease-out-expo) 0.4s forwards;
}

.bb-hero__skull {
  width: 110px;
  height: 110px;
  margin-bottom: 28px;
  opacity: 0;
  animation: bb-rise-up 1s var(--ease-out-expo) 0.6s forwards;
  filter: drop-shadow(0 0 32px rgba(212, 43, 31, 0.65));
}
.bb-hero__skull svg { animation: bb-skull-float 3.2s ease-in-out infinite; }

.bb-hero__skull-shadow {
  width: 70px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(212, 43, 31, 0.5) 0%, transparent 70%);
  margin: -8px auto 20px;
  animation: bb-shadow-pulse 3.2s ease-in-out infinite;
  opacity: 0;
  animation: bb-rise-up 1s var(--ease-out-expo) 0.6s forwards, bb-shadow-pulse 3.2s ease-in-out 1.6s infinite;
}

.bb-hero__title {
  font-family: var(--font-display);
  font-size: clamp(88px, 17vw, 210px);
  line-height: 0.84;
  letter-spacing: -0.02em;
  color: var(--bb-white);
  opacity: 0;
  animation: bb-rise-up 1s var(--ease-out-expo) 0.8s forwards;
}
.bb-hero__title .line-red { color: var(--bb-red); display: block; }

.bb-hero__sub {
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(244, 240, 232, 0.45);
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
  animation: bb-rise-up 0.8s var(--ease-out-expo) 1s forwards;
}

.bb-hero__btns {
  display: flex;
  gap: var(--gap-sm);
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: bb-rise-up 0.8s var(--ease-out-expo) 1.2s forwards;
}

.bb-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: bb-rise-up 0.6s ease 1.8s forwards;
}

.bb-hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--bb-red), transparent);
  animation: bb-scroll-pulse 2s ease-in-out infinite;
}

.bb-hero__scroll-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  color: rgba(244, 240, 232, 0.22);
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   12. FOUNDLINGS SECTION
   ---------------------------------------------------------------- */
.bb-foundlings__intro {
  max-width: 520px;
  margin-bottom: 72px;
}

.bb-foundlings__intro p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244, 240, 232, 0.5);
  margin-top: 20px;
}

.bb-foundlings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* Card */
.bb-foundling-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  cursor: none;
}

.bb-foundling-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease-out-expo);
}
.bb-foundling-card:hover .bb-foundling-card__bg { transform: scale(1.07); }

.bb-foundling-card__bg--poach  { background: linear-gradient(165deg, #1e1a00 0%, #0f0d00 40%, #080808 100%); }
.bb-foundling-card__bg--cypher { background: linear-gradient(165deg, #1e0400 0%, #0f0200 40%, #080808 100%); }
.bb-foundling-card__bg--neo    { background: linear-gradient(165deg, #001422 0%, #000d18 40%, #080808 100%); }

.bb-foundling-card__stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transition: height 0.4s ease;
}
.bb-foundling-card:hover .bb-foundling-card__stripe { height: 5px; }
.bb-foundling-card__stripe--poach  { background: var(--bb-yellow); }
.bb-foundling-card__stripe--cypher { background: var(--bb-red); }
.bb-foundling-card__stripe--neo    { background: var(--bb-blue); }

/* Ghost illustration placeholder */
.bb-foundling-card__ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  opacity: 0.1;
  transition: opacity 0.5s ease, transform 0.9s var(--ease-out-expo);
  filter: blur(2px);
  user-select: none;
  pointer-events: none;
}
.bb-foundling-card:hover .bb-foundling-card__ghost {
  opacity: 0.2;
  transform: scale(1.1) translateY(-8px);
}

.bb-foundling-card__inner {
  position: absolute;
  inset: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bb-foundling-card__tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
  width: fit-content;
  border: 1px solid;
}
.bb-foundling-card__tag--poach  { color: var(--bb-yellow); border-color: rgba(245,193,24,0.28); background: rgba(245,193,24,0.08); }
.bb-foundling-card__tag--cypher { color: var(--bb-red);    border-color: rgba(212,43,31,0.28);  background: rgba(212,43,31,0.08); }
.bb-foundling-card__tag--neo    { color: var(--bb-blue);   border-color: rgba(58,123,213,0.28); background: rgba(58,123,213,0.08); }

.bb-foundling-card__name {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.88;
  letter-spacing: 0.02em;
  transition: letter-spacing 0.4s ease;
}
.bb-foundling-card:hover .bb-foundling-card__name { letter-spacing: 0.06em; }
.bb-foundling-card__name--poach  { color: var(--bb-yellow); }
.bb-foundling-card__name--cypher { color: var(--bb-red); }
.bb-foundling-card__name--neo    { color: var(--bb-blue); }

.bb-foundling-card__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244, 240, 232, 0.5);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease-out-expo), opacity 0.4s ease;
  margin-top: 10px;
}
.bb-foundling-card:hover .bb-foundling-card__desc { max-height: 120px; opacity: 1; }

.bb-foundling-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--bb-white);
  margin-top: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s var(--ease-out-expo) 0.1s, gap 0.2s ease;
}
.bb-foundling-card:hover .bb-foundling-card__link { opacity: 1; transform: translateY(0); }
.bb-foundling-card__link:hover { gap: 14px; }

/* ----------------------------------------------------------------
   13. PRODUCTS SECTION (WooCommerce)
   ---------------------------------------------------------------- */
.bb-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

/* Product Card */
.bb-product-card {
  position: relative;
  background: var(--bb-coal);
  overflow: hidden;
  cursor: none;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease;
}
.bb-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.bb-product-card__media {
  aspect-ratio: 1 / 1;
  background: var(--bb-smoke);
  overflow: hidden;
  position: relative;
}

.bb-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo), filter 0.4s ease;
}
.bb-product-card:hover .bb-product-card__media img {
  transform: scale(1.09);
  filter: saturate(1.1);
}

/* WooCommerce replaces .bb-product-card__media img */
.bb-product-card .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo);
}
.bb-product-card:hover .woocommerce-product-gallery__image img { transform: scale(1.09); }

.bb-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  z-index: 1;
  pointer-events: none;
}
.bb-product-card__badge--new { background: var(--bb-red);    color: var(--bb-white); }
.bb-product-card__badge--ltd { background: var(--bb-yellow); color: var(--bb-black); }
.bb-product-card__badge--hot { background: var(--bb-red-hot);color: var(--bb-white); }

.bb-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bb-red);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--bb-white);
  text-align: center;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo), background 0.2s ease;
  cursor: none;
  border: none;
  width: 100%;
}
.bb-product-card:hover .bb-product-card__quick-add { transform: translateY(0); }
.bb-product-card__quick-add:hover { background: var(--bb-red-hot); }

.bb-product-card__info {
  padding: 20px 20px 26px;
}

.bb-product-card__char {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bb-red);
  margin-bottom: 6px;
}

.bb-product-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--bb-white);
  line-height: 1;
  margin-bottom: 10px;
}

.bb-product-card__price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bb-product-card__price .current { font-family: var(--font-display); font-size: 22px; color: var(--bb-yellow); }
.bb-product-card__price .original { font-size: 14px; color: rgba(244,240,232,0.3); text-decoration: line-through; }

/* WooCommerce price override */
.bb-product-card .price { font-family: var(--font-display); font-size: 22px; color: var(--bb-yellow); }
.bb-product-card .price del { color: rgba(244,240,232,0.3); font-size: 14px; }
.bb-product-card .price ins { text-decoration: none; }

/* ----------------------------------------------------------------
   14. DROPS SECTION
   ---------------------------------------------------------------- */
.bb-drops__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.bb-drop-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.bb-drop-card--featured { grid-column: 1 / -1; }

.bb-drop-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease-out-expo);
}
.bb-drop-card:hover .bb-drop-card__bg { transform: scale(1.04); }

.bb-drop-card__bg--red  { background: radial-gradient(ellipse at 30% 55%, rgba(212,43,31,0.32) 0%, transparent 55%), linear-gradient(to right, #100100, #1c0402); }
.bb-drop-card__bg--gold { background: radial-gradient(ellipse at 70% 55%, rgba(245,193,24,0.22) 0%, transparent 55%), linear-gradient(to right, #110d00, #100f00); }
.bb-drop-card__bg--blue { background: radial-gradient(ellipse at 50% 55%, rgba(58,123,213,0.2)  0%, transparent 55%), linear-gradient(to right, #001628, #08080d); }
.bb-drop-card__bg--img  { background-size: cover; background-position: center; }

.bb-drop-card__content {
  position: relative;
  z-index: 1;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
}
.bb-drop-card--featured .bb-drop-card__content { min-height: 560px; }

.bb-drop-card__overline {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bb-red);
  margin-bottom: 12px;
}

.bb-drop-card__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.9;
  color: var(--bb-white);
}

.bb-drop-card__date {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(244,240,232,0.4);
  text-transform: uppercase;
  margin-top: 14px;
}

.bb-drop-card__cta {
  margin-top: 32px;
  opacity: 0.7;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo);
}
.bb-drop-card:hover .bb-drop-card__cta { opacity: 1; transform: translateY(0); }

/* Countdown */
.bb-countdown {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.bb-countdown__unit { text-align: center; }

.bb-countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--bb-white);
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 14px;
  min-width: 68px;
  text-align: center;
}

.bb-countdown__label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.28);
  margin-top: 7px;
}

/* ----------------------------------------------------------------
   15. EMAIL SIGNUP SECTION
   ---------------------------------------------------------------- */
.bb-signup {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bb-signup__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 50% 50%, rgba(212,43,31,0.07), transparent 70%);
  pointer-events: none;
}

.bb-signup__sub {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(244,240,232,0.4);
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 52px;
}

.bb-signup__form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}

.bb-signup__input {
  flex: 1;
  background: var(--bb-coal);
  border: 1px solid var(--bb-ash);
  border-right: none;
  color: var(--bb-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 18px 24px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.bb-signup__input::placeholder { color: rgba(244,240,232,0.22); }
.bb-signup__input:focus {
  border-color: var(--bb-red);
  background: rgba(212,43,31,0.04);
}

.bb-signup__submit {
  background: var(--bb-red);
  border: 1px solid var(--bb-red);
  color: var(--bb-white);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 18px 36px;
  cursor: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s var(--ease-bounce);
}
.bb-signup__submit:hover { background: var(--bb-red-hot); transform: scale(1.02); }

.bb-signup__fine {
  font-size: 11px;
  color: rgba(244,240,232,0.22);
  letter-spacing: 0.16em;
  margin-top: 16px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   16. ABOUT / LORE SECTION
   ---------------------------------------------------------------- */
.bb-lore__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  align-items: center;
}

.bb-lore__visual {
  aspect-ratio: 4 / 5;
  background: var(--bb-coal);
  overflow: hidden;
  position: relative;
}

.bb-lore__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo);
}
.bb-lore__visual:hover img { transform: scale(1.05); }

.bb-lore__copy {
  padding: 60px;
}

.bb-lore__copy p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(244,240,232,0.55);
  margin-bottom: 20px;
}

.bb-lore__quote {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--bb-red);
  line-height: 1.5;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--bb-red);
}

/* ----------------------------------------------------------------
   17. GALLERY SECTION
   ---------------------------------------------------------------- */
.bb-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}

.bb-gallery__item {
  overflow: hidden;
  position: relative;
  cursor: none;
}
.bb-gallery__item--tall { grid-row: span 2; }
.bb-gallery__item--wide { grid-column: span 2; }

.bb-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo), filter 0.4s ease;
  filter: grayscale(20%);
}
.bb-gallery__item:hover img { transform: scale(1.07); filter: grayscale(0%); }

/* ----------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------- */
.bb-footer {
  background: var(--bb-black);
  border-top: 1px solid var(--bb-smoke);
  padding: 80px var(--section-pad-h) 40px;
}

.bb-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
}

.bb-footer__brand h3 {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 0.04em;
  color: var(--bb-white);
  margin-bottom: 16px;
}

.bb-footer__brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244,240,232,0.38);
  max-width: 270px;
}

.bb-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.bb-footer__social-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--bb-ash);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,240,232,0.45);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.25s var(--ease-bounce);
}
.bb-footer__social-btn:hover {
  border-color: var(--bb-red);
  background: rgba(212,43,31,0.1);
  color: var(--bb-red);
  transform: translateY(-4px);
}

.bb-footer__col h4 {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.1em;
  color: var(--bb-white);
  margin-bottom: 22px;
}

.bb-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bb-footer__col ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(244,240,232,0.38);
  transition: color 0.2s ease, padding-left 0.25s var(--ease-out-expo);
  display: block;
}
.bb-footer__col ul li a:hover { color: var(--bb-white); padding-left: 8px; }

.bb-footer__bottom {
  border-top: 1px solid var(--bb-smoke);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bb-footer__bottom p {
  font-size: 12px;
  color: rgba(244,240,232,0.2);
  letter-spacing: 0.1em;
}

.bb-footer__bottom a { color: var(--bb-red); }
.bb-footer__bottom a:hover { color: var(--bb-red-hot); }

/* ----------------------------------------------------------------
   19. ANIMATIONS & REVEALS
   ---------------------------------------------------------------- */
@keyframes bb-rise-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bb-skull-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes bb-skull-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212,43,31,0.4)); }
  50%       { filter: drop-shadow(0 0 28px rgba(212,43,31,0.9)); }
}

@keyframes bb-shadow-pulse {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  50%       { opacity: 0.9; transform: scaleX(0.65); }
}

@keyframes bb-scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.35; transform: scaleY(0.5); }
}

@keyframes bb-ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes bb-grid-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 64px; }
}

@keyframes bb-load-fill {
  to { width: 100%; }
}

@keyframes bb-particle-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  8%   { opacity: 0.7; }
  92%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-110vh) scale(1.8); }
}

/* Scroll reveal */
.bb-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s var(--ease-out-expo),
              transform 0.85s var(--ease-out-expo);
}
.bb-reveal.is-visible { opacity: 1; transform: translateY(0); }
.bb-reveal--delay-1 { transition-delay: 0.1s; }
.bb-reveal--delay-2 { transition-delay: 0.2s; }
.bb-reveal--delay-3 { transition-delay: 0.35s; }
.bb-reveal--delay-4 { transition-delay: 0.5s; }

/* Stagger */
.bb-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}
.bb-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.04s; }
.bb-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.12s; }
.bb-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.20s; }
.bb-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.28s; }
.bb-stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.36s; }
.bb-stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.44s; }

/* ----------------------------------------------------------------
   20. WOOCOMMERCE OVERRIDES
   ---------------------------------------------------------------- */

/* Reset WC defaults */
.woocommerce-page .woocommerce,
.woocommerce { background: transparent; }

.woocommerce ul.products { margin: 0; padding: 0; }
.woocommerce ul.products li.product { float: none; width: auto; margin: 0; }

/* Shop archive - use our grid */
.woocommerce ul.products.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

/* WC single product page */
.woocommerce div.product div.images .woocommerce-product-gallery__image { padding: 0; }
.woocommerce div.product div.images .woocommerce-product-gallery__image a img { border-radius: 0; }
.woocommerce div.product div.summary { padding-left: 40px; }

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--bb-yellow);
}

.woocommerce .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--bb-red) !important;
  color: var(--bb-white) !important;
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  letter-spacing: 0.1em !important;
  border-radius: 0 !important;
  padding: 16px 40px !important;
  border: none !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s ease, transform 0.2s var(--ease-bounce) !important;
  cursor: none !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--bb-red-hot) !important; transform: translateY(-3px) !important; }

/* Cart & checkout base */
.woocommerce-cart table.cart, .woocommerce-checkout { background: var(--bb-coal); }
.woocommerce table.shop_table { border: none; background: transparent; }
.woocommerce table.shop_table th {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgba(244,240,232,0.5);
  background: var(--bb-smoke);
  border: none;
  padding: 14px 16px;
}
.woocommerce table.shop_table td {
  color: var(--bb-white);
  border-color: rgba(255,255,255,0.05);
  vertical-align: middle;
  padding: 16px;
}

/* WC notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: var(--bb-coal) !important;
  color: var(--bb-white) !important;
  border-top-color: var(--bb-red) !important;
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--bb-red) !important;
  border-radius: 0 !important;
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  padding: 4px 10px !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1.4 !important;
}

/* ----------------------------------------------------------------
   21. RESPONSIVE
   ---------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad-h: 40px;
    --section-pad-v: 90px;
  }

  .bb-products__grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products.columns-4 { grid-template-columns: repeat(2, 1fr); }
  .bb-foundlings__grid { grid-template-columns: repeat(2, 1fr); }
  .bb-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .bb-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .bb-lore__grid { grid-template-columns: 1fr; }
  .bb-lore__copy { padding: 40px 0; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad-h: 24px;
    --section-pad-v: 72px;
  }

  /* Nav */
  #bb-nav { padding: 0 24px; }
  .bb-nav__links { display: none; }
  .bb-nav__cta   { display: none; }
  .bb-nav__burger { display: flex; }

  /* Hero */
  .bb-hero__btns { flex-direction: column; align-items: center; }

  /* Grids */
  .bb-foundlings__grid   { grid-template-columns: 1fr; }
  .bb-products__grid     { grid-template-columns: 1fr 1fr; gap: 2px; }
  .bb-drops__grid        { grid-template-columns: 1fr; }
  .bb-drop-card--featured { grid-column: auto; }
  .bb-gallery__grid      { grid-template-columns: 1fr 1fr; }
  .bb-gallery__item--wide { grid-column: auto; }
  .bb-gallery__item--tall { grid-row: auto; }
  .bb-footer__grid       { grid-template-columns: 1fr; gap: 36px; }
  .woocommerce ul.products.columns-4 { grid-template-columns: 1fr 1fr; }

  /* Signup */
  .bb-signup__form { flex-direction: column; }
  .bb-signup__input { border-right: 1px solid var(--bb-ash); }

  /* Drops */
  .bb-drop-card__content { min-height: 360px; padding: 32px; }

  /* Lore */
  .bb-lore__copy { padding: 32px 0; }

  /* Buttons */
  .bb-btn--lg { font-size: 20px; padding: 16px 36px; }

  /* Footer */
  .bb-footer { padding: 60px 24px 32px; }
}

@media (max-width: 480px) {
  .bb-products__grid { grid-template-columns: 1fr; }
  .woocommerce ul.products.columns-4 { grid-template-columns: 1fr; }
  .bb-foundling-card__name { font-size: 56px; }
  .bb-gallery__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   COLLECTIONS SECTION
   ---------------------------------------------------------------- */
.bb-collections__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.bb-collection-card {
    background: var(--bb-coal);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    cursor: none;
}
.bb-collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
}

.bb-collection-card__media {
    display: block;
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bb-smoke);
    text-decoration: none;
}
.bb-collection-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out-expo), filter 0.4s ease;
    filter: grayscale(10%);
}
.bb-collection-card:hover .bb-collection-card__media img {
    transform: scale(1.07);
    filter: grayscale(0%);
}

.bb-collection-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bb-smoke);
    border: 2px dashed var(--bb-ash);
}

.bb-collection-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 60%);
    pointer-events: none;
}

.bb-collection-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    font-family: var(--font-display);
    font-size: 13px; letter-spacing: 0.08em;
    padding: 4px 12px;
    z-index: 1;
}

.bb-collection-card__info {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bb-collection-card__char {
    display: inline-block;
    font-size: 9px; letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid;
    width: fit-content;
}

.bb-collection-card__name {
    font-family: var(--font-display);
    font-size: 30px; line-height: 1;
    letter-spacing: 0.02em;
    color: var(--bb-white);
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}
.bb-collection-card__name:hover { color: var(--bb-red); }

.bb-collection-card__desc {
    font-size: 13px; font-weight: 300;
    color: rgba(244,240,232,0.5);
    line-height: 1.7;
    flex: 1;
}

.bb-collection-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--bb-ash);
}

.bb-collection-card__count {
    font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.3);
}

.bb-collection-card__link {
    font-family: var(--font-display);
    font-size: 16px; letter-spacing: 0.1em;
    color: var(--bb-white);
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
    text-decoration: none;
}
.bb-collection-card__link:hover { color: var(--bb-red); gap: 12px; }

/* Foundling card image upgrade */
.bb-foundling-card__ghost img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: none;
    opacity: 1;
}
.bb-hero__skull-img {
    width: 100%; height: 100%;
    object-fit: contain;
    animation: bb-skull-float 3.2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .bb-collections__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
    .bb-collections__grid { grid-template-columns: 1fr; }
}
