/** Shopify CDN: Minification failed

Line 1217:8998 Unexpected "/"

**/
/* ============================================================
   RAILBANGERS — Design System
   Built for front-row chaos. Hold the rail.
   ============================================================ */

:root {
  /* Core palette — deeper, darker, more gothic */
  --rb-bg:           #050507;
  --rb-bg-elev:      #0c0c12;
  --rb-bg-panel:     #10101a;
  --rb-bg-deeper:    #020203;
  --rb-ink:          #f4f4ee;
  --rb-ink-dim:      #9797a3;
  --rb-ink-mute:     #5a5a68;
  --rb-line:         #1f1f2a;
  --rb-line-hot:     #2f2f3d;

  /* Accents — sharper, hotter */
  --rb-pink:         #ff0a6c;
  --rb-pink-hot:     #ff2e88;
  --rb-pink-deep:    #b50550;
  --rb-lime:         #c8ff1c;
  --rb-lime-hot:     #dbff52;
  --rb-cyan:         #12d8e4;
  --rb-cyan-hot:     #3febf5;
  --rb-blood:        #8b0a28;
  --rb-blood-hot:    #c01a3d;

  /* Utility */
  --rb-danger:       #ff3e48;
  --rb-grad-pit:     radial-gradient(ellipse at 75% 35%, rgba(255,10,108,0.45), rgba(139,10,40,0.15) 35%, transparent 65%);
  --rb-grad-rail:    linear-gradient(135deg, rgba(255,10,108,0.22), rgba(18,216,228,0.10));
  --rb-grad-blood:   linear-gradient(180deg, transparent 0%, rgba(139,10,40,0.4) 100%);
  --rb-grad-deep:    radial-gradient(ellipse at 50% 0%, rgba(255,10,108,0.25), transparent 50%);

  /* Typography */
  --rb-display: "Pirata One", "Metamorphous", "Cinzel", serif;
  --rb-brush:   "Shrikhand", "Bungee Inline", "Rubik Mono One", Impact, sans-serif;
  --rb-sans:    "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --rb-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --rb-serif:   "Instrument Serif", "Cormorant Garamond", Georgia, serif;

  /* Sizing */
  --rb-container: 1480px;
  --rb-gutter: clamp(16px, 2.5vw, 40px);
  --rb-radius: 2px;
  --rb-radius-lg: 6px;

  /* Motion */
  --rb-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rb-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --rb-ease-elastic: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rb-bg);
  color: var(--rb-ink);
  font-family: var(--rb-sans);
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Selection */
::selection { background: var(--rb-pink); color: var(--rb-bg); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--rb-bg); }
::-webkit-scrollbar-thumb { background: var(--rb-line-hot); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--rb-pink); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.rb-display {
  font-family: var(--rb-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}
.rb-brush {
  font-family: var(--rb-brush);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.rb-mono {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.rb-eyebrow {
  font-family: var(--rb-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-dim);
}
.rb-outlined {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--rb-ink);
  text-stroke: 1.5px var(--rb-ink);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.rb-container {
  width: 100%;
  max-width: var(--rb-container);
  margin-inline: auto;
  padding-inline: var(--rb-gutter);
}
.rb-grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.rb-noise {
  position: relative;
}
.rb-noise::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ============================================================
   ANNOUNCEMENT TICKER
   ============================================================ */
.rb-ticker {
  background: var(--rb-lime);
  color: var(--rb-bg);
  border-bottom: 1px solid var(--rb-bg);
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.rb-ticker__track {
  display: flex;
  gap: 3rem;
  padding: 10px 0;
  white-space: nowrap;
  animation: rb-marquee 28s linear infinite;
  width: max-content;
}
.rb-ticker__item {
  font-family: var(--rb-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.rb-ticker__item::after {
  content: "●";
  font-size: 8px;
  color: var(--rb-bg);
}
@keyframes rb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.rb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 13, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rb-line);
}
.rb-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 20px 0;
}
.rb-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.rb-nav__link {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rb-ink);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s var(--rb-ease);
}
.rb-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--rb-pink);
  transition: width 0.3s var(--rb-ease);
}
.rb-nav__link:hover { color: var(--rb-pink-hot); }
.rb-nav__link:hover::before { width: 100%; }

.rb-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--rb-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.rb-logo__dot {
  width: 10px; height: 10px;
  background: var(--rb-pink);
  border-radius: 1px;
}
.rb-logo__dot--cyan { background: var(--rb-cyan); }

.rb-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.rb-chip {
  font-family: var(--rb-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid var(--rb-line-hot);
  background: transparent;
  color: var(--rb-ink);
  transition: all 0.2s var(--rb-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rb-chip:hover {
  border-color: var(--rb-pink);
  color: var(--rb-pink-hot);
}
.rb-chip--cart {
  background: var(--rb-ink);
  color: var(--rb-bg);
  border-color: var(--rb-ink);
}
.rb-chip--cart .rb-chip__count {
  background: var(--rb-pink);
  color: var(--rb-ink);
  padding: 2px 6px;
  font-weight: 700;
}
.rb-chip--cart:hover {
  background: var(--rb-pink);
  color: var(--rb-ink);
  border-color: var(--rb-pink);
}
.rb-chip--cart:hover .rb-chip__count {
  background: var(--rb-ink);
  color: var(--rb-bg);
}

/* Mobile nav toggle */
.rb-nav-toggle { display: none; }
@media (max-width: 900px) {
  .rb-header__inner { grid-template-columns: auto 1fr auto; }
  .rb-nav { display: none; }
  .rb-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--rb-line-hot);
  }
  .rb-header__actions .rb-chip:not(.rb-chip--cart) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.rb-hero {
  position: relative;
  background: #000000;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.rb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
    background: #000000;
  pointer-events: none;
}
.rb-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .rb-hero__grid { grid-template-columns: 1fr; }
}

.rb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.rb-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-family: var(--rb-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.rb-tag--pink { background: var(--rb-pink); color: var(--rb-ink); }
.rb-tag--lime { background: var(--rb-lime); color: var(--rb-bg); }
.rb-tag--cyan { background: var(--rb-cyan); color: var(--rb-bg); }
.rb-tag--ghost { border: 1px solid var(--rb-line-hot); color: var(--rb-ink); }

.rb-hero__title {
  font-family: var(--rb-display);
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.85;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.rb-hero__title .rb-line {
  display: block;
}
.rb-hero__title .rb-stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--rb-ink);
}
.rb-hero__title .rb-pink { color: var(--rb-pink); }
.rb-hero__title .rb-lime { color: var(--rb-lime); }
.rb-hero__title .rb-cyan { color: var(--rb-cyan); }

.rb-hero__copy {
  color: var(--rb-ink-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

.rb-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--rb-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--rb-ink);
  background: var(--rb-ink);
  color: var(--rb-bg);
  transition: all 0.25s var(--rb-ease);
  position: relative;
  overflow: hidden;
}
.rb-btn::after {
  content: "→";
  transition: transform 0.25s var(--rb-ease);
  font-size: 14px;
}
.rb-btn:hover {
  background: var(--rb-pink);
  border-color: var(--rb-pink);
  color: var(--rb-ink);
}
.rb-btn:hover::after { transform: translateX(4px); }
.rb-btn--ghost {
  background: transparent;
  color: var(--rb-ink);
  border-color: var(--rb-line-hot);
}
.rb-btn--ghost:hover {
  background: transparent;
  color: var(--rb-lime);
  border-color: var(--rb-lime);
}
.rb-btn--lime {
  background: var(--rb-lime);
  color: var(--rb-bg);
  border-color: var(--rb-lime);
}
.rb-btn--lime:hover {
  background: var(--rb-lime-hot);
  border-color: var(--rb-lime-hot);
  color: var(--rb-bg);
}

/* Hero meta row */
.rb-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rb-line);
}
.rb-meta-stat__label {
  font-family: var(--rb-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-mute);
  margin-bottom: 6px;
}
.rb-meta-stat__value {
  font-family: var(--rb-display);
  font-size: 28px;
  line-height: 1;
  color: var(--rb-ink);
}
.rb-meta-stat__value--lime { color: var(--rb-lime); }

/* Hero visual panel */
.rb-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
    background: #000000;
      border: 0;
  overflow: hidden;
}
.rb-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
    background: #000000;
  pointer-events: none;
  z-index: 2;
}
.rb-hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rb-hero__visual-placeholder {
      display: none;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rb-display);
  font-size: 240px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

/* Stickers */
.rb-sticker {
  position: absolute;
  z-index: 4;
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 8px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.rb-sticker--tape {
  transform: rotate(-4deg);
}
.rb-sticker--pink { background: var(--rb-pink); color: var(--rb-ink); }
.rb-sticker--lime { background: var(--rb-lime); color: var(--rb-bg); }
.rb-sticker--cyan { background: var(--rb-cyan); color: var(--rb-bg); }
.rb-sticker--white { background: var(--rb-ink); color: var(--rb-bg); }

.rb-sticker--top-left { top: 24px; left: 24px; }
.rb-sticker--top-right { top: 20%; right: -12px; transform: rotate(5deg); }
.rb-sticker--mid-left { top: 50%; left: -14px; transform: rotate(-6deg); }
.rb-sticker--bottom-right { bottom: 18%; right: 20px; transform: rotate(3deg); }

/* Circular seal */
.rb-seal {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--rb-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rb-bg);
  z-index: 5;
  animation: rb-spin 18s linear infinite;
  box-shadow: 0 10px 30px rgba(212,255,62,0.3);
}
.rb-seal::before {
  content: "★";
  position: absolute;
  font-size: 24px;
  z-index: 2;
}
.rb-seal__text {
  position: absolute;
  width: 100%;
  height: 100%;
}
.rb-seal__text svg {
  width: 100%;
  height: 100%;
}
@keyframes rb-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   SECTION FOUNDATIONS
   ============================================================ */
.rb-section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}
.rb-section--bleed { padding-inline: 0; }
.rb-section__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rb-line);
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .rb-section__head { grid-template-columns: 1fr; }
}
.rb-section__num {
  font-family: var(--rb-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-dim);
}
.rb-section__title {
  font-family: var(--rb-display);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.9;
  margin: 0;
}
.rb-section__meta {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-dim);
  text-align: right;
  white-space: nowrap;
}

/* ============================================================
   COLLECTION STRIP
   ============================================================ */
.rb-collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .rb-collections { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rb-collections { grid-template-columns: 1fr; }
}

.rb-collection-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--rb-bg-panel);
  border: 1px solid var(--rb-line);
  overflow: hidden;
  display: block;
  transition: transform 0.4s var(--rb-ease), border-color 0.3s var(--rb-ease);
}
.rb-collection-card:hover {
  transform: translateY(-4px);
  border-color: var(--rb-pink);
}
.rb-collection-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--rb-ease);
}
.rb-collection-card:hover .rb-collection-card__img {
  transform: scale(1.05);
}
.rb-collection-card__num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink);
  z-index: 2;
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  backdrop-filter: blur(6px);
}
.rb-collection-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}
.rb-collection-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, transparent 100%);
}
.rb-collection-card__title {
  font-family: var(--rb-display);
  font-size: 32px;
  line-height: 1;
  margin: 0 0 6px;
  color: var(--rb-ink);
}
.rb-collection-card__meta {
  font-family: var(--rb-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-ink-dim);
}

/* ============================================================
   PRODUCT GRID (featured)
   ============================================================ */
.rb-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1100px) { .rb-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .rb-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .rb-products { grid-template-columns: 1fr; } }

.rb-product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--rb-line);
  overflow: hidden;
  transition: border-color 0.3s var(--rb-ease), transform 0.4s var(--rb-ease);
}
.rb-product-card:hover { border-color: var(--rb-pink); transform: translateY(-3px); }
.rb-product-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: transparent;}
.rb-product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--rb-ease);
}
.rb-product-card:hover .rb-product-card__img { transform: scale(1.04); }
.rb-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.rb-product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rb-product-card__sku {
  font-family: var(--rb-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-mute);
}
.rb-product-card__title {
  font-family: var(--rb-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--rb-ink);
  margin: 0;
}
.rb-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--rb-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--rb-lime);
}
.rb-product-card__price--compare {
  color: var(--rb-ink-mute);
  text-decoration: line-through;
  font-size: 11px;
  font-weight: 400;
}

/* ============================================================
   FEATURE / RAGE MORE
   ============================================================ */
.rb-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .rb-feature { grid-template-columns: 1fr; } }

.rb-feature__title {
  font-family: var(--rb-brush);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.82;
  color: var(--rb-pink);
  margin: 20px 0 32px;
  text-shadow:
    4px 4px 0 var(--rb-bg),
    8px 8px 0 rgba(47,230,240,0.3);
}
.rb-feature__title--outlined {
  color: transparent;
  -webkit-text-stroke: 2px var(--rb-ink);
  text-shadow: none;
}

.rb-feature__copy {
  color: var(--rb-ink-dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}

.rb-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 32px;
  padding: 24px 0;
  border-top: 1px solid var(--rb-line);
  border-bottom: 1px solid var(--rb-line);
  margin-bottom: 32px;
}
.rb-specs__label {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-dim);
}
.rb-specs__value {
  font-family: var(--rb-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--rb-ink);
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.rb-manifesto {
  background: var(--rb-bg-elev);
  border-top: 1px solid var(--rb-line);
  border-bottom: 1px solid var(--rb-line);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.rb-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rb-grad-rail);
  opacity: 0.6;
  pointer-events: none;
}
.rb-manifesto__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--rb-gutter);
}
.rb-manifesto__eyebrow {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rb-cyan);
  margin-bottom: 32px;
}
.rb-manifesto__text {
  font-family: var(--rb-display);
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: 0.95;
  margin: 0 0 40px;
  letter-spacing: -0.005em;
}
.rb-manifesto__text .rb-pink { color: var(--rb-pink); }
.rb-manifesto__text .rb-lime { color: var(--rb-lime); }

.rb-manifesto__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--rb-line);
}
@media (max-width: 800px) { .rb-manifesto__points { grid-template-columns: 1fr; } }
.rb-point__num {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--rb-pink);
  margin-bottom: 12px;
}
.rb-point__title {
  font-family: var(--rb-sans);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--rb-ink);
}
.rb-point__body {
  font-size: 14px;
  color: var(--rb-ink-dim);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   MARQUEE / BIG TEXT STRIP
   ============================================================ */
.rb-big-strip {
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--rb-line);
  border-bottom: 1px solid var(--rb-line);
  overflow: hidden;
  white-space: nowrap;
}
.rb-big-strip__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: rb-marquee 35s linear infinite;
  width: max-content;
}
.rb-big-strip__word {
  font-family: var(--rb-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  color: var(--rb-ink);
  letter-spacing: -0.01em;
}
.rb-big-strip__word--outlined {
  color: transparent;
  -webkit-text-stroke: 2px var(--rb-ink);
}
.rb-big-strip__star {
  color: var(--rb-pink);
  font-size: clamp(48px, 7vw, 100px);
  transform: rotate(-8deg);
}

/* ============================================================
   ACCESSORIES / TILED CARDS
   ============================================================ */
.rb-accessories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .rb-accessories { grid-template-columns: repeat(2, 1fr); } }
.rb-accessory {
  aspect-ratio: 1;
  background: var(--rb-bg-panel);
  border: 1px solid var(--rb-line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--rb-ease);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rb-accessory:hover { border-color: var(--rb-cyan); }
.rb-accessory__label {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-dim);
}
.rb-accessory__name {
  font-family: var(--rb-display);
  font-size: 36px;
  line-height: 0.9;
  color: var(--rb-ink);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.rb-newsletter {
  background: var(--rb-pink);
  color: var(--rb-ink);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.rb-newsletter::before {
  content: "★";
  position: absolute;
  font-family: serif;
  font-size: 400px;
  color: rgba(0,0,0,0.08);
  top: -80px;
  right: -40px;
  line-height: 1;
  pointer-events: none;
}
.rb-newsletter__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .rb-newsletter__inner { grid-template-columns: 1fr; } }
.rb-newsletter__title {
  font-family: var(--rb-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  margin: 0;
  color: var(--rb-ink);
}
.rb-newsletter__copy {
  margin: 16px 0 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}
.rb-newsletter__form {
  display: flex;
  gap: 0;
  background: var(--rb-bg);
  padding: 6px;
  border: 2px solid var(--rb-bg);
}
.rb-newsletter__input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 16px 20px;
  color: var(--rb-ink);
  font-family: var(--rb-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  outline: none;
}
.rb-newsletter__input::placeholder { color: var(--rb-ink-mute); text-transform: uppercase; }
.rb-newsletter__submit {
  background: var(--rb-lime);
  color: var(--rb-bg);
  padding: 0 28px;
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: background 0.2s var(--rb-ease);
}
.rb-newsletter__submit:hover { background: var(--rb-cyan); }

/* ============================================================
   FOOTER
   ============================================================ */
.rb-footer {
  background: var(--rb-bg);
  border-top: 1px solid var(--rb-line);
  padding: 80px 0 40px;
}
.rb-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .rb-footer__grid { grid-template-columns: 1fr 1fr; }
}
.rb-footer__brand h3 {
  font-family: var(--rb-display);
  font-size: 48px;
  margin: 0 0 16px;
  line-height: 1;
}
.rb-footer__brand p {
  color: var(--rb-ink-dim);
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
}
.rb-footer__col h4 {
  font-family: var(--rb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-ink-dim);
  margin: 0 0 16px;
  font-weight: 600;
}
.rb-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rb-footer__col a {
  font-size: 14px;
  color: var(--rb-ink);
  transition: color 0.2s var(--rb-ease);
}
.rb-footer__col a:hover { color: var(--rb-pink); }
.rb-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--rb-line);
  flex-wrap: wrap;
  gap: 16px;
}
.rb-footer__bottom .rb-mono { color: var(--rb-ink-mute); }

/* ============================================================
   ANIMATIONS — reveal on load
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .rb-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: rb-reveal 0.8s var(--rb-ease-out) forwards;
  }
  .rb-reveal[data-delay="1"] { animation-delay: 0.08s; }
  .rb-reveal[data-delay="2"] { animation-delay: 0.16s; }
  .rb-reveal[data-delay="3"] { animation-delay: 0.24s; }
  .rb-reveal[data-delay="4"] { animation-delay: 0.32s; }
  .rb-reveal[data-delay="5"] { animation-delay: 0.40s; }
  @keyframes rb-reveal {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================================
   UTILS
   ============================================================ */
.rb-hide { display: none !important; }
.rb-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
/* === Featured products: match collection strip product display === */
.rb-section-featured-products .rb-products{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:var(--rb-gutter);
  align-items:start;
}
.rb-section-featured-products .rb-products > *{
  min-width:0;
  height:auto;
  aspect-ratio:auto;
}
.rb-section-featured-products .rb-products img{
  width:100%;
  height:auto;
  aspect-ratio:1/1;
  object-fit:contain;
  background:var(--rb-bg-panel);
  display:block;
}
@media (max-width:900px){
  .rb-section-featured-products .rb-products{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}/* === Featured products: hide vendor/SKU line, gothic title === */

/* Hide the "PRINTIFY · ..." vendor + ID line above the product name */
.rb-section-featured-products .product-card__vendor,
.rb-section-featured-products .product-card__meta,
.rb-section-featured-products .product-card__sku,
.rb-section-featured-products [class*="vendor"],
.rb-section-featured-products [class*="sku"]{
  display:none !important;
}

/* Gothic display font for the product titles */
.rb-section-featured-products .product-card__title,
.rb-section-featured-products .product-card a[href*="/products/"],
.rb-section-featured-products .rb-products h3,
.rb-section-featured-products .rb-products h4{
  font-family:var(--rb-display);
  font-weight:400;
  letter-spacing:0.01em;
  text-transform:none;
  line-height:1.1;
  font-size:clamp(1.25rem, 1.6vw, 1.6rem);
}

/* === Glitch hover effect for header chips (matches RAILBANGERS logo) === */
.rb-chip{ position: relative; }
.rb-chip:hover{
  animation: rb-glitch 0.4s steps(3) infinite;
    text-shadow: 2px 0 var(--rb-pink), -2px 0 var(--rb-cyan);
    }
    .rb-chip--cart:hover{
      animation: rb-glitch 0.4s steps(3) infinite;
        text-shadow: 2px 0 var(--rb-pink), -2px 0 var(--rb-cyan);
        }
        .rb-chip:hover svg{
          filter: drop-shadow(2px 0 var(--rb-pink)) drop-shadow(-2px 0 var(--rb-cyan));
            animation: rb-glitch-svg 0.4s steps(3) infinite;
            }
            @keyframes rb-glitch-svg{
              0%   { filter: drop-shadow(2px 0 var(--rb-pink)) drop-shadow(-2px 0 var(--rb-cyan)); }
                50%  { filter: drop-shadow(-2px 0 var(--rb-pink)) drop-shadow(2px 0 var(--rb-cyan)); }
                  100% { filter: drop-shadow(2px 0 var(--rb-pink)) drop-shadow(-2px 0 var(--rb-cyan)); }
                  }
                  
/* Custom RailBangers responsive overrides */
@media (min-width: 769px) { .rb-header .rb-nav:not(.is-open) { display: none; } .rb-header .rb-nav-toggle { display: inline-flex !important; align-items: center; justify-content: center; } }
@media (min-width: 1025px) { html body div .rb-products, html body div .rb-products.rb-products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 24px !important; } }
@media (max-width: 1024px) { html body div .rb-products, html body div .rb-products.rb-products, html body .rb-section-featured-products .rb-products { grid-template-columns: minmax(0, 1fr) !important; gap: 16px !important; display: grid !important; } html body .rb-product-card { width: 100% !important; max-width: 100% !important; min-width: 0 !important; } }
@media (max-width: 900px) { .rb-pdp { padding: 16px !important; } .rb-pdp__grid { display: block !important; } .rb-pdp__gallery { width: 100% !important; margin-bottom: 16px !important; } .rb-pdp__gallery-main { width: 100% !important; height: auto !important; max-height: 70vh !important; } .rb-pdp__gallery-main img { width: 100% !important; height: auto !important; object-fit: contain !important; } .rb-pdp__gallery-thumbs { display: flex !important; flex-direction: row !important; gap: 8px !important; overflow-x: auto !important; margin-top: 8px !important; } .rb-pdp__thumb { flex: 0 0 64px !important; width: 64px !important; height: 64px !important; } .rb-pdp__info { width: 100% !important; padding: 0 !important; } .rb-pdp__title { font-size: 32px !important; line-height: 1.1 !important; word-break: break-word !important; } .rb-pdp__price { font-size: 22px !important; } .rb-pdp__buy { width: 100% !important; } .rb-pdp__option { flex-wrap: wrap !important; } .rb-pdp__swatches { flex-wrap: wrap !important; } .rb-pdp__description { font-size: 14px !important; } }
@media (max-width: 768px) { .rb-container { padding-left: 12px !important; padding-right: 12px !important; } .rb-coll-header h1 { font-size: 48px !important; } body img { max-width: 100% !important; height: auto !important; } }
/* ===== Closet, Wishlist, Reviews, Community ===== */ .rb-wish-btn { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: transform 0.15s ease; padding: 0; } .rb-wish-btn:hover { transform: scale(1.1); background: rgba(0,0,0,0.75); } .rb-wish-pop { animation: rb-pop 0.35s ease; } @keyframes rb-pop { 0%,100%{transform:scale(1);} 50%{transform:scale(1.3);} } .rb-wish-pdp-btn { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 12px 20px; border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px; width: 100%; justify-content: center; } .rb-wish-pdp-btn:hover { border-color: #ff2e7e; color: #ff2e7e; } .rb-closet-link { background: transparent; border: 0; color: inherit; cursor: pointer; padding: 8px 12px; display: inline-flex; align-items: center; gap: 6px; font-family: inherit; font-size: inherit; position: relative; } .rb-closet-link:hover { color: #ff2e7e; } .rb-closet-link__count { background: #ff2e7e; color: #000; border-radius: 10px; padding: 1px 7px; font-size: 11px; font-weight: 700; min-width: 18px; text-align: center; } .rb-modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999; display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; backdrop-filter: blur(4px); } .rb-modal { background: #0d0d0f; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; max-width: 960px; width: 100%; padding: 32px; color: #fff; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.6); } .rb-modal-close { position: absolute; top: 16px; right: 16px; background: transparent; border: 0; color: #fff; font-size: 28px; cursor: pointer; width: 36px; height: 36px; line-height: 1; padding: 0; } .rb-modal-close:hover { color: #ff2e7e; } .rb-modal-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; } .rb-modal-header h2 { margin: 0; font-size: 36px; outline: none; padding: 4px 8px; border-radius: 4px; min-width: 100px; } .rb-modal-header h2:focus { background: rgba(204,255,0,0.1); box-shadow: inset 0 0 0 2px #ccff00; } .rb-modal-actions { display: flex; gap: 8px; } .rb-btn-mini { background: #ccff00; color: #000; border: 0; padding: 8px 16px; border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; } .rb-btn-mini:hover { background: #ff2e7e; color: #fff; } .rb-closet-sub { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0 0 24px; } .rb-closet-empty { padding: 60px 16px; text-align: center; color: rgba(255,255,255,0.5); font-size: 15px; border: 1px dashed rgba(255,255,255,0.15); border-radius: 6px; } .rb-closet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; } .rb-closet-item { background: #18181b; border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; } .rb-closet-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; } .rb-closet-item__title { padding: 10px; font-size: 13px; flex: 1; } .rb-closet-item__title a { color: #fff; text-decoration: none; } .rb-closet-item__title a:hover { color: #ccff00; } .rb-closet-rm { background: transparent; color: rgba(255,255,255,0.5); border: 0; border-top: 1px solid rgba(255,255,255,0.08); padding: 8px; cursor: pointer; font-family: inherit; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; } .rb-closet-rm:hover { color: #ff2e7e; background: rgba(255,46,126,0.08); } .rb-reviews { padding: 40px 16px; max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); } .rb-reviews__title { font-size: 32px; margin: 0 0 24px; color: #fff; } .rb-reviews__summary { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; } .rb-stars { display: inline-flex; gap: 2px; } .rb-stars .rb-star { color: rgba(255,255,255,0.2); font-size: 20px; line-height: 1; background: transparent; border: 0; padding: 0; cursor: default; } .rb-stars--big .rb-star { font-size: 28px; } .rb-stars--input .rb-star { cursor: pointer; font-size: 32px; padding: 4px; transition: transform 0.1s ease; } .rb-stars--input .rb-star:hover { transform: scale(1.2); } .rb-stars .rb-star.on { color: #ccff00; } .rb-reviews__avg { color: rgba(255,255,255,0.7); font-size: 14px; } .rb-review-form { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: #0d0d0f; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; margin-bottom: 24px; } .rb-review-form input, .rb-review-form textarea { background: #18181b; border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 10px 12px; border-radius: 4px; font-family: inherit; font-size: 14px; } .rb-review-form textarea { min-height: 100px; resize: vertical; } .rb-review-submit { align-self: flex-start; padding: 12px 24px !important; cursor: pointer; } .rb-review { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); } .rb-review__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; } .rb-review__head strong { color: #fff; } .rb-review__date { color: rgba(255,255,255,0.4); font-size: 12px; } .rb-review__text { color: rgba(255,255,255,0.85); line-height: 1.6; } .rb-community { padding: 60px 16px; max-width: 1200px; margin: 0 auto; color: #fff; } .rb-community__hero { text-align: center; padding: 40px 0 60px; } .rb-community__hero h1 { font-size: 80px; margin: 0 0 16px; letter-spacing: -0.02em; } .rb-community__hero p { font-size: 16px; max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.7); line-height: 1.6; } .rb-community__hero strong { color: #ccff00; } .rb-community__compose { background: #0d0d0f; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 24px; margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; } .rb-community__compose h3 { margin: 0 0 8px; font-size: 18px; } .rb-community__compose input, .rb-community__compose textarea { background: #18181b; border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 12px; border-radius: 4px; font-family: inherit; font-size: 14px; } .rb-community__compose textarea { min-height: 80px; resize: vertical; } .rb-community__compose .rb-btn { align-self: flex-start; cursor: pointer; padding: 12px 24px; } .rb-community__feed { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 24px; } .rb-empty { grid-column: 1 / -1; padding: 60px 16px; text-align: center; color: rgba(255,255,255,0.5); border: 1px dashed rgba(255,255,255,0.15); border-radius: 6px; } .rb-post { background: #0d0d0f; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 20px; display: flex; flex-direction: column; gap: 12px; } .rb-post__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; } .rb-post__head strong { color: #ccff00; } .rb-post__date { color: rgba(255,255,255,0.4); font-size: 12px; } .rb-post__event { background: rgba(255,46,126,0.15); color: #ff2e7e; padding: 2px 8px; border-radius: 12px; font-size: 12px; } .rb-post__title { margin: 0; font-size: 18px; } .rb-post__img img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 6px; display: block; } .rb-post__body { margin: 0; line-height: 1.6; color: rgba(255,255,255,0.85); font-size: 14px; } .rb-post__foot { display: flex; gap: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); } .rb-post__foot button { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: #fff; padding: 6px 14px; border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 13px; } .rb-post__foot button:hover { border-color: #ff2e7e; color: #ff2e7e; } .rb-post-like.is-liked { color: #ff2e7e; border-color: #ff2e7e; } .rb-post-comments { display: flex; flex-direction: column; gap: 8px; } .rb-post-comment { background: rgba(255,255,255,0.03); border-radius: 4px; padding: 8px 12px; font-size: 13px; } .rb-post-comment strong { color: #ccff00; } .rb-post-comment span { color: rgba(255,255,255,0.4); font-size: 11px; margin-left: 6px; } .rb-post-comment-form { display: flex; gap: 8px; align-items: flex-start; } .rb-post-comment-form textarea { flex: 1; background: #18181b; border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 8px 10px; border-radius: 4px; font-family: inherit; font-size: 13px; min-height: 40px; resize: vertical; } @media (max-width: 768px) { .rb-modal { padding: 20px; } .rb-modal-header h2 { font-size: 28px; } .rb-community__hero h1 { font-size: 56px; } .rb-community__feed { grid-template-columns: 1fr; } }-modal display:none from features.css */ .rb-modal-backdrop .rb-modal { display: block !important; }
.rb-modal-backdrop > .rb-modal { display: block !important; visibility: visible !important; opacity: 1 !important; }
a.rb-chip[aria-label="Wishlist"] { display: none !important; } .rb-product-card .rb-wish-btn { display: none !important; } .rb-closet-link { display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 1px solid rgb(47, 47, 61); padding: 8px 12px; color: inherit; cursor: pointer; font: inherit; letter-spacing: 0.04em; transition: border-color 0.2s, color 0.2s, background 0.2s; } .rb-closet-link:hover { border-color: var(--rb-pink, #ff2e7e); color: var(--rb-pink, #ff2e7e); } .rb-closet-link__count { display: inline-block; min-width: 18px; padding: 0 4px; font-size: 11px; font-weight: 700; }
button.rb-nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgb(47, 47, 61); padding: 8px 12px; width: auto; height: auto; transition: border-color 0.2s, color 0.2s; cursor: pointer; } button.rb-nav-toggle:hover { border-color: var(--rb-pink, #ff2e7e); color: var(--rb-pink, #ff2e7e); }
.rb-product-card__media { background: #f4f4ee !important; } .rb-product-card__media img.rb-product-card__img { object-fit: contain !important; padding: 8px; }
.rb-pdp__gallery img, .rb-pdp__media img { object-fit: contain !important; background: #f4f4ee; }
.rb-modal-backdrop { display: flex !important; align-items: flex-start; justify-content: center; padding: 60px 16px; }

button.rb-nav-toggle { justify-self: start; width: max-content; max-width: max-content; }
@media (max-width: 900px) { .rb-nav-toggle { border: 1px solid var(--rb-line, #2f2f3d) !important; background: rgba(255,255,255,0.02) !important; border-radius: 999px !important; padding: 8px 12px !important; height: 40px !important; width: 40px !important; transition: all 0.2s ease !important; } .rb-nav-toggle:hover { border-color: var(--rb-pink, #ff0a6c) !important; background: rgba(255,10,108,0.08) !important; } .rb-header__actions .rb-chip[aria-label="Account"] { display: none !important; } .rb-header__actions { gap: 8px !important; } .rb-closet-link { padding: 6px 10px !important; gap: 6px !important; } .rb-chip--cart { padding: 8px 10px !important; font-size: 12px !important; } }
@media (max-width: 600px) { #rb-auth-btn .rb-auth-label { display: none !important; } #rb-auth-btn { padding: 8px 10px !important; min-width: 36px !important; gap: 0 !important; } .rb-closet-link__count { display: none !important; } .rb-header__actions { gap: 6px !important; } .rb-chip--cart { font-size: 11px !important; padding: 6px 8px !important; } .rb-logo__mark { font-size: 18px !important; } .rb-header__inner { gap: 8px !important; } } @media (max-width: 480px) { .rb-logo__dot { display: none !important; } .rb-header { padding: 8px 0 !important; } }
.rb-product-card__title { font-family: 'UnifrakturCook', 'Cinzel', 'Trajan Pro', Georgia, serif !important; font-weight: 700 !important; letter-spacing: 0.5px !important; font-size: 1.25rem !important; line-height: 1.15 !important; text-transform: none !important; } .rb-product-card__price { font-family: 'Bebas Neue', 'Oswald', Impact, sans-serif !important; letter-spacing: 1px !important; font-size: 1.05rem !important; } .rb-product-card__vendor { font-family: 'Space Grotesk', monospace !important; font-size: 0.65rem !important; letter-spacing: 2px !important; } .rb-products-grid .rb-product-card a { color: #fff; } .rb-quick-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 16px; } .rb-quick-modal.is-open { display: flex; } .rb-quick-modal__panel { background: #0f0f12; border: 1px solid rgba(255,46,126,0.4); border-radius: 12px; max-width: 460px; width: 100%; padding: 20px 18px; color: #fff; box-shadow: 0 20px 60px rgba(255,46,126,0.25); } .rb-quick-modal__close { position: absolute; top: 12px; right: 14px; background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; } .rb-quick-modal__title { font-family: 'UnifrakturCook','Cinzel',Georgia,serif; font-size: 1.4rem; margin: 0 0 4px; } .rb-quick-modal__price { color: #c4ff2e; font-family: 'Bebas Neue','Oswald',sans-serif; letter-spacing: 1px; margin-bottom: 16px; } .rb-quick-modal__opt { margin-bottom: 14px; } .rb-quick-modal__opt-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; display: block; } .rb-quick-modal__values { display: flex; flex-wrap: wrap; gap: 6px; } .rb-quick-modal__val { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); color: #fff; padding: 8px 14px; border-radius: 6px; cursor: pointer; font-size: 0.85rem; transition: all 0.15s; } .rb-quick-modal__val:hover { border-color: #ff2e7e; } .rb-quick-modal__val.is-selected { background: #ff2e7e; border-color: #ff2e7e; color: #fff; } .rb-quick-modal__val.is-disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; } .rb-quick-modal__actions { display: flex; gap: 8px; margin-top: 18px; } .rb-quick-modal__btn { flex: 1; padding: 12px; border-radius: 8px; border: 0; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-size: 0.85rem; } .rb-quick-modal__btn--cart { background: #c4ff2e; color: #000; } .rb-quick-modal__btn--closet { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); } .rb-quick-modal__btn:disabled { opacity: 0.4; cursor: not-allowed; } .rb-quick-modal__msg { color: #ff2e7e; font-size: 0.8rem; margin-top: 8px; min-height: 18px; } .rb-product-card__quick-add { font-family: 'Bebas Neue','Oswald',sans-serif !important; letter-spacing: 1.5px !important; font-size: 0.85rem !important; } .rb-post-like, .rb-post-share, .rb-post-comment-toggle, .rb-post-views { display: inline-flex; align-items: center; gap: 4px; background: transparent; border: 0; color: rgba(255,255,255,0.7); font-size: 0.85rem; cursor: pointer; padding: 6px 10px; border-radius: 6px; transition: all 0.15s; font-family: 'Space Grotesk', sans-serif; } .rb-post-like:hover, .rb-post-share:hover, .rb-post-comment-toggle:hover { background: rgba(255,255,255,0.06); color: #fff; } .rb-post-like.is-liked { color: #ff2e7e; } .rb-post-like.is-liked .rb-icon { fill: #ff2e7e; } .rb-icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; } .rb-post-count { font-size: 0.8rem; opacity: 0.85; min-width: 8px; } .rb-feed-v2 { max-width: 640px; margin: 0 auto; padding: 0 12px 80px; } .rb-feed-v2__compose { background: #0f0f12; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 14px; margin-bottom: 16px; } .rb-feed-v2__compose textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 12px; border-radius: 10px; resize: vertical; min-height: 70px; font-family: 'Space Grotesk',sans-serif; font-size: 0.95rem; } .rb-feed-v2__row { display: flex; gap: 8px; margin-top: 10px; align-items: center; flex-wrap: wrap; } .rb-feed-v2__media-btn { background: rgba(196,255,46,0.1); color: #c4ff2e; border: 1px solid rgba(196,255,46,0.3); padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 6px; } .rb-feed-v2__media-btn input { display: none; } .rb-feed-v2__post-btn { background: #ff2e7e; color: #fff; border: 0; padding: 10px 18px; border-radius: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; margin-left: auto; } .rb-feed-v2__preview { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; } .rb-feed-v2__preview-item { position: relative; width: 80px; height: 80px; border-radius: 8px; overflow: hidden; background: #000; } .rb-feed-v2__preview-item img, .rb-feed-v2__preview-item video { width: 100%; height: 100%; object-fit: cover; } .rb-feed-v2__preview-item button { position: absolute; top: 2px; right: 2px; background: rgba(0,0,0,0.7); border: 0; color: #fff; width: 20px; height: 20px; border-radius: 50%; cursor: pointer; font-size: 12px; line-height: 1; } .rb-feed-v2__progress { font-size: 0.75rem; color: #c4ff2e; margin-top: 6px; } .rb-card { background: #0f0f12; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; margin-bottom: 16px; overflow: hidden; } .rb-card__head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; } .rb-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#ff2e7e,#c4ff2e); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; font-size: 0.9rem; } .rb-card__user { font-weight: 700; font-size: 0.95rem; color: #fff; } .rb-card__time { font-size: 0.72rem; color: rgba(255,255,255,0.5); } .rb-card__body { padding: 0 14px 12px; color: #fff; font-size: 0.95rem; line-height: 1.4; white-space: pre-wrap; word-break: break-word; } .rb-card__media { width: 100%; max-height: 600px; background: #000; display: block; } .rb-card__media video { width: 100%; max-height: 600px; display: block; background: #000; } .rb-card__media img { width: 100%; max-height: 600px; object-fit: cover; display: block; } .rb-card__actions { display: flex; align-items: center; gap: 4px; padding: 8px 10px; border-top: 1px solid rgba(255,255,255,0.06); } .rb-card__comments { padding: 8px 14px 14px; border-top: 1px solid rgba(255,255,255,0.06); display: none; } .rb-card__comments.is-open { display: block; } .rb-card__comment { display: flex; gap: 8px; padding: 6px 0; font-size: 0.85rem; } .rb-card__comment-user { font-weight: 700; color: #c4ff2e; } .rb-card__comment-input { display: flex; gap: 8px; margin-top: 8px; } .rb-card__comment-input input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 8px 12px; border-radius: 999px; font-size: 0.85rem; } .rb-card__comment-input button { background: #ff2e7e; border: 0; color: #fff; padding: 0 14px; border-radius: 999px; cursor: pointer; font-weight: 700; font-size: 0.8rem; } .rb-spotify { background: #0f0f12; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 14px; margin-bottom: 16px; } .rb-spotify__title { font-family: 'UnifrakturCook','Cinzel',Georgia,serif; font-size: 1.1rem; margin: 0 0 10px; color: #c4ff2e; } .rb-spotify iframe { width: 100%; border: 0; border-radius: 10px; } .rb-feed-v2__filter { display: flex; gap: 6px; margin-bottom: 12px; overflow-x: auto; padding-bottom: 4px; } .rb-feed-v2__filter button { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; cursor: pointer; white-space: nowrap; } .rb-feed-v2__filter button.is-active { background: #ff2e7e; border-color: #ff2e7e; color: #fff; } .rb-pdp-reviews-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; } .rb-review-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px; } .rb-review-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.65); } .rb-review-card__user { color: #fff; font-weight: 700; } .rb-review-card__stars { color: #ffc83a; letter-spacing: 2px; font-size: 0.9rem; } .rb-review-card__body { color: #fff; font-size: 0.92rem; line-height: 1.4; white-space: pre-wrap; } @media (max-width: 600px) { .rb-feed-v2 { padding: 0 8px 80px; } .rb-card__head { padding: 10px; } .rb-card__body { padding: 0 10px 10px; font-size: 0.92rem; } .rb-card__actions { padding: 6px 6px; gap: 2px; } .rb-post-like, .rb-post-share, .rb-post-comment-toggle, .rb-post-views { padding: 6px 6px; font-size: 0.8rem; } .rb-quick-modal__panel { padding: 16px 14px; } }