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

:root {
  --red: #C8102E;
  --red-dark: #8B0A1F;
  --cream: #FDF6EC;
  --black: #111;
  --off-black: #1A1A1A;
  --smoke: #2A2A2A;
  --gold: #C9954C;
  --gold-light: #E8C68A;
  --text-muted: #888;
  --white: #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV / SITE HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,16,46,0.2);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
}
.nav-logo { height: 48px; display: block; max-width: 100%; width: auto; }
.nav-text-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}
.nav-text-logo .highlight { color: var(--red); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item a { color: var(--red); }
.nav-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Header Layout Presets */
.nav-layout-logo_center {
  flex-direction: column;
  gap: 15px;
  padding: 12px 20px;
}
.nav-layout-logo_center .nav-links {
  order: 2;
}
.nav-layout-logo_center .nav-actions {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger-bars {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--off-black);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-video-bg {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--off-black) 0%, rgba(26,26,26,0.72) 38%, rgba(0,0,0,0.18) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, transparent 20%, transparent 78%, rgba(0,0,0,0.32) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 80px 80px;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,149,76,0.4);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 60px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.pill {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
}
.pill.red { border-color: rgba(200,16,46,0.5); color: #ff8095; background: rgba(200,16,46,0.08); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.06); }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--text-muted);
}

/* ─── VIDEO BANNER (ABOUT) ─── */
.video-section {
  background: var(--smoke);
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.video-mock {
  flex: 0 0 560px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.video-mock-inner {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(200,16,46,0.2) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.play-btn:hover { transform: scale(1.1); background: var(--red-dark); }
.play-btn svg { margin-left: 4px; }
.video-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.video-text { flex: 1; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.video-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 20px;
}
.video-text p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 16px;
}
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── COLLECTIONS ─── */
.collections-section {
  padding: 100px 80px;
  background: var(--black);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
}
.section-header h2 span { color: var(--red); }
.see-all {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-muted);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.see-all:hover { color: white; border-color: white; }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.collection-card {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.collection-card:hover { transform: translateY(-6px); }
.collection-card:hover .collection-overlay { background: rgba(0,0,0,0.3); }
.collection-bg {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: transform 0.4s;
}
.collection-card:hover .collection-bg { transform: scale(1.05); }
.collection-bg-rb { background: linear-gradient(160deg, #1a0a20 0%, #3d1155 100%); }
.collection-bg-st { background: linear-gradient(160deg, #0d1f0d 0%, #1a3d1a 100%); }
.collection-bg-dn { background: linear-gradient(160deg, #20090d 0%, #4a0d1a 100%); }
.collection-bg-ba { background: linear-gradient(160deg, #0a0a0a 0%, #2a2a2a 100%); }
.collection-bg-vr { background: linear-gradient(160deg, #0d1520 0%, #0d2a3d 100%); }
.collection-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s;
}
.collection-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.collection-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.collection-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
}
.collection-count {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ─── FEATURED PRODUCTS ─── */
.featured-products-section {
  padding: 100px 80px;
  background: var(--smoke);
}

/* ─── VINYL FEATURED ─── */
.vinyl-section {
  background: var(--cream);
  color: var(--black);
  padding: 100px 80px;
  display: flex;
  gap: 80px;
  align-items: center;
}
.vinyl-text { flex: 1; }
.vinyl-text .section-label { color: var(--red-dark); }
.vinyl-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 20px;
}
.vinyl-text h2 span { color: var(--red); }
.vinyl-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 32px;
  max-width: 460px;
}
.vinyl-features {
  list-style: none;
  margin-bottom: 40px;
}
.vinyl-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
  color: #333;
}
.vinyl-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.vinyl-visual {
  flex: 0 0 460px;
  position: relative;
}
.vinyl-record {
  width: 360px; height: 360px;
  border-radius: 50%;
  background: conic-gradient(
    #1a1a1a 0deg, #333 5deg, #1a1a1a 10deg,
    #333 15deg, #1a1a1a 20deg, #333 25deg, #1a1a1a 30deg,
    #333 35deg, #1a1a1a 40deg, #333 50deg, #1a1a1a 60deg,
    #333 70deg, #1a1a1a 80deg, #333 100deg, #1a1a1a 120deg,
    #333 150deg, #1a1a1a 180deg, #333 210deg, #1a1a1a 240deg,
    #333 270deg, #1a1a1a 300deg, #333 330deg, #1a1a1a 360deg
  );
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.05);
  animation: spin 20s linear infinite;
  margin: 0 auto;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.vinyl-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: spin 20s linear infinite reverse;
}
.vinyl-label-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: white;
  line-height: 1.2;
}
.vinyl-label-sub { font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); }
.vinyl-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--red-dark); }

/* ─── BUNDLES ─── */
.bundles-section {
  padding: 100px 80px;
  background: var(--smoke);
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.bundle-card {
  background: var(--off-black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.bundle-card:hover { border-color: rgba(200,16,46,0.4); transform: translateY(-4px); }
.bundle-card.featured {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(200,16,46,0.08) 0%, var(--off-black) 50%);
}
.bundle-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.bundle-badge.gold { background: var(--gold); color: var(--black); }
.bundle-icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.bundle-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.bundle-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.bundle-includes {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bundle-includes li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}
.price-new {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: white;
}
.price-old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-save {
  font-size: 12px;
  color: #4ade80;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ─── DYNAMIC EVENTS & COMMUNITY GRID ─── */
.events-section {
  padding: 100px 80px;
  background: var(--black);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.event-card {
  background: var(--off-black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,16,46,0.3);
}
.event-image {
  height: 200px;
  position: relative;
  background: linear-gradient(135deg, #2a0a0f 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-date-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}
.event-info {
  padding: 24px;
}
.event-location {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.1;
  color: var(--white);
}
.event-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.event-price-tag {
  font-size: 16px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 20px;
}
.event-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 13px;
}

.city-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.city-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.city-tag:hover { border-color: var(--red); color: white; }

/* ─── INSTAGRAM WRAPPER ─── */
.instagram-section {
  padding: 100px 80px;
  background: var(--smoke);
}
.instagram-container {
  max-width: 1200px;
  margin: 0 auto;
}
.instagram-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.instagram-item-fallback {
  aspect-ratio: 1/1;
  background: var(--off-black);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.instagram-item-fallback:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(200,16,46,0.05);
}
.instagram-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* ─── STORY (AYSHA) ─── */
.story-section {
  background: var(--off-black);
  padding: 100px 80px;
  display: flex;
  gap: 100px;
  align-items: center;
}
.story-visual {
  flex: 0 0 400px;
  position: relative;
}
.story-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2a0a0f 0%, #0a0a0a 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(200,16,46,0.2);
  position: relative;
  overflow: hidden;
}
.story-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 40px,
      rgba(200,16,46,0.03) 40px, rgba(200,16,46,0.03) 41px
    );
}
.story-initial {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: rgba(200,16,46,0.15);
  line-height: 1;
  position: relative;
}
.story-frame-label {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 0 32px;
  line-height: 1.6;
}
.story-quote-mark {
  position: absolute;
  top: -20px; left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 180px;
  color: rgba(200,16,46,0.08);
  line-height: 1;
  pointer-events: none;
}
.story-text { flex: 1; }
.story-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: 1;
  margin-bottom: 24px;
}
.story-text h2 span { color: var(--red); }
.story-body {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.story-body strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.story-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--gold-light);
  margin-top: 32px;
}

/* ─── DYNAMIC REVIEWS SLIDER ─── */
.reviews-section {
  padding: 100px 80px;
  background: var(--black);
  overflow: hidden;
}
.reviews-slider-container {
  position: relative;
  margin-top: 50px;
  width: 100%;
}
.reviews-track-wrapper {
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}
.review-card {
  min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  background: var(--off-black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 32px 28px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(200,16,46,0.3); }
.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 500; color: var(--white); }
.review-loc { font-size: 12px; color: var(--text-muted); }

.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.slider-arrow {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.slider-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

/* ─── SUBSCRIPTION ─── */
.sub-section {
  background: linear-gradient(135deg, #1a0509 0%, var(--smoke) 100%);
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.sub-text { flex: 1; }
.sub-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
}
.sub-text h2 span { color: var(--red); }
.sub-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 400px;
}
.sub-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.perk-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(200,16,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.sub-card {
  flex: 0 0 360px;
  background: var(--off-black);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
}
.sub-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--red);
}
.sub-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.sub-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.sub-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── EMAIL CAPTURE ─── */
.email-section {
  background: var(--red);
  padding: 80px;
  text-align: center;
}
.email-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 12px;
}
.email-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}
.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 20px;
}
.email-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-right: none;
  color: white;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  border-radius: 2px 0 0 2px;
}
.email-input::placeholder { color: rgba(255,255,255,0.5); }
.email-btn {
  background: var(--black);
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
}
.email-btn:hover { background: var(--smoke); }
.email-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ─── CREDIBILITY ─── */
.cred-section {
  background: var(--off-black);
  padding: 60px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cred-header {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cred-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.cred-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.cred-logo:hover { color: rgba(255,255,255,0.6); }

/* ─── RIP N REFLECT PROMO BLOCK ─── */
.rnr-promo {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a20 50%, #0a0d1a 100%);
  padding: 100px 80px;
  border-top: 1px solid rgba(167,139,250,0.15);
  border-bottom: 1px solid rgba(167,139,250,0.15);
}
.rnr-promo-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.rnr-promo-text { flex: 1; }
.rnr-card-preview { flex: 0 0 320px; }
.rnr-card-demo {
  background: linear-gradient(160deg, #1e1030 0%, #0f0a1e 100%);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(100,60,200,0.2);
}
.rnr-card-logo {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 24px;
}
.rnr-card-question {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.5;
  color: white;
  margin-bottom: 16px;
  min-height: 60px;
  transition: opacity 0.3s;
}
.rnr-card-type {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.rnr-card-btns {
  display: flex;
  gap: 10px;
}
.rnr-mini-btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.rnr-mini-btn:hover { transform: translateY(-2px); }
.rnr-mini-btn.rip { background: rgba(200,16,46,0.2); color: #ff8095; border: 1px solid rgba(200,16,46,0.4); }
.rnr-mini-btn.reflect { background: rgba(167,139,250,0.15); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.3); }

/* ─── RIP N' REFLECT FULL CARD GAME SECTION ─── */
.rnr-section {
  background: #080810;
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rnr-section .rnr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.rnr-section .rnr-left-col {
  flex: 1.1;
}
.rnr-section .rnr-right-col {
  flex: 0.9;
  max-width: 560px;
  width: 100%;
  position: relative;
  text-align: center;
}
.rnr-header-inside {
  margin-bottom: 40px;
}
.rnr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 20%, rgba(167,139,250,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(200,16,46,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.rnr-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.rnr-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #ff8095 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.rnr-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 40px;
}
.rnr-mode-btns {
  display: inline-flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 16px;
}
.rnr-mode-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.rnr-mode-btn.active { background: var(--red); color: white; }
.rnr-mode-btn:not(.active):hover { color: white; }
.rnr-mode-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}
.rnr-game-area { max-width: 560px; margin: 0 auto 48px; position: relative; }
.rnr-card-wrap {
  perspective: 1000px;
  margin-bottom: 40px;
}
.rnr-main-card {
  height: 300px;
  position: relative;
}
.rnr-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.rnr-card-inner.flipping { transform: rotateY(180deg); }
.rnr-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  gap: 12px;
}
.rnr-card-front {
  background: linear-gradient(160deg, #1e1030 0%, #100820 60%, #0a0614 100%);
  border: 1px solid rgba(167,139,250,0.25);
  box-shadow: 0 32px 80px rgba(100,60,200,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}
.rnr-card-front.rip-style {
  background: linear-gradient(160deg, #200a12 0%, #120008 60%, #0a0005 100%);
  border-color: rgba(200,16,46,0.3);
  box-shadow: 0 32px 80px rgba(200,16,46,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}
.rnr-card-brand {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 8px;
}
.rnr-card-mode-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(167,139,250,0.15);
  color: #c4b5fd;
  border: 1px solid rgba(167,139,250,0.25);
}
.rnr-card-mode-tag.rip-tag {
  background: rgba(200,16,46,0.15);
  color: #ff8095;
  border-color: rgba(200,16,46,0.3);
}
.rnr-question-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.5;
  color: white;
  text-align: center;
  transition: opacity 0.2s;
}
.rnr-card-number {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}
.rnr-draw-area {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.rnr-draw-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.rnr-draw-btn:hover { transform: translateY(-3px); }
.rip-btn {
  background: linear-gradient(135deg, rgba(200,16,46,0.25) 0%, rgba(200,16,46,0.1) 100%);
  border: 1px solid rgba(200,16,46,0.4) !important;
  box-shadow: 0 8px 32px rgba(200,16,46,0.15);
}
.rip-btn:hover { box-shadow: 0 16px 48px rgba(200,16,46,0.3); }
.reflect-btn {
  background: linear-gradient(135deg, rgba(167,139,250,0.2) 0%, rgba(167,139,250,0.08) 100%);
  border: 1px solid rgba(167,139,250,0.35) !important;
  box-shadow: 0 8px 32px rgba(167,139,250,0.1);
}
.reflect-btn:hover { box-shadow: 0 16px 48px rgba(167,139,250,0.25); }
.rnr-btn-icon { font-size: 28px; }
.rnr-btn-label { font-size: 14px; font-weight: 700; color: white; letter-spacing: 0.05em; }
.rnr-btn-sub { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.rnr-or { font-size: 13px; color: rgba(255,255,255,0.25); flex-shrink: 0; }
.rnr-counter-row { margin-bottom: 8px; }
.rnr-counter-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.rnr-counter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #a78bfa 100%);
  border-radius: 100px;
  transition: width 0.4s ease;
}
.rnr-counter-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.rnr-gate {
  max-width: 560px;
  margin: 0 auto 48px;
}
.rnr-gate-card {
  background: linear-gradient(160deg, #1a0a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.rnr-email-gate {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
.rnr-email-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: white;
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  border-radius: 8px 0 0 8px;
}
.rnr-email-input::placeholder { color: rgba(255,255,255,0.3); }
.rnr-email-submit {
  background: #7c3aed;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0 8px 8px 0;
  transition: background 0.2s;
}
.rnr-email-submit:hover { background: #6d28d9; }
.rnr-vibes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rnr-vibe-pill {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.2s;
}
.rnr-vibe-pill:hover { border-color: rgba(167,139,250,0.4); color: #c4b5fd; cursor: default; }

/* ─── FAQ ACCORDION ─── */
.faq-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--off-black) 100%);
  padding: 100px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, background-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(254, 1, 182, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.faq-item.active {
  border-color: var(--red);
  background: rgba(254, 1, 182, 0.02);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
.faq-question span {
  padding-right: 20px;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}
.faq-answer {
  min-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 24px;
  transition: padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 24px 24px 24px;
}

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  padding: 64px 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img, .footer-logo { height: 48px; margin-bottom: 20px; width: auto; max-width: 100%; }
.footer-text-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-text-logo .highlight { color: var(--red); }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--red); color: white; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0; margin: 0;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-legal a:hover { color: white; }

/* ─── FLOATING CTA ─── */
.float-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.float-bar.hidden {
  transform: translate(-50%, 150px);
  opacity: 0;
}
.float-text { font-size: 13px; color: rgba(255,255,255,0.7); }
.float-text strong { color: white; }
.float-btn {
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}
.float-btn:hover { background: var(--red-dark); }

/* ─── GLOBAL FORM INPUT FIELDS ─── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
select,
textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--red);
  cursor: pointer;
}

/* ─── AJAX NOTICES AND MESSAGE RESPONSES ─── */
.bnb-form-response,
.review-form-response,
.ajax-response-msg {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.bnb-form-response[style*="block"],
.review-form-response[style*="block"] {
  display: block !important;
  animation: fadeInDown 0.3s ease-out forwards;
}

/* Success State Styles */
.bnb-form-response-success,
#dff0d8,
.success-msg {
  background: rgba(60, 118, 61, 0.1) !important;
  color: #a3e635 !important;
  border: 1px solid rgba(163, 230, 53, 0.2) !important;
  border-left: 4px solid #84cc16 !important;
}

/* Error State Styles */
.bnb-form-response-error,
#f2dede,
.error-msg {
  background: rgba(169, 68, 66, 0.1) !important;
  color: #f87171 !important;
  border: 1px solid rgba(248, 113, 113, 0.2) !important;
  border-left: 4px solid #ef4444 !important;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── NATIVE SOCIAL FEED GRID ANIMATIONS ─── */
.social-feed-card:hover img {
  transform: scale(1.06);
}
.social-feed-card:hover .social-feed-overlay {
  opacity: 1 !important;
}
.social-tab-btn {
  background: none;
  color: rgba(255,255,255,0.6);
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
}
.social-tab-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.social-tab-btn.active {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

/* ─── SIDEBAR WIDGETS OVERHAUL ─── */
.widget,
.sidebar-widget {
  background: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
}
.widget .widget-title,
.widget h2,
.sidebar-widget h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.widget ul li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
}
.widget ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget ul li a,
.sidebar-widget a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.widget ul li a:hover,
.sidebar-widget a:hover {
  color: var(--red);
}
.widget select {
  margin-top: 10px;
}
.widget_search .search-form {
  display: flex;
  gap: 10px;
}
.widget_search .search-form input[type="search"] {
  flex: 1;
}
.widget_search .search-form button,
.widget_search .search-form input[type="submit"] {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.widget_search .search-form button:hover,
.widget_search .search-form input[type="submit"]:hover {
  background: var(--red-dark);
}

