/* =====================================================
   BEYOND TRADING CARDS — SET #001 PAGE CSS
   Mystery / Unannounced — Black, White, Orange
   ===================================================== */

/* ---------- THEME OVERRIDES ---------- */
.lions-theme {
  --lions-bg:      #080808;
  --lions-surface: #111111;
  --lions-surface2:#181818;
  --lions-red:     #FF6B00;
  --lions-red-glow: rgba(255, 107, 0, 0.35);
  --lions-gold:    #C9A84C;
}

/* Lions-specific header tint on scroll */
.lions-header.scrolled {
  background: rgba(8, 8, 8, 0.97) !important;
  border-bottom-color: rgba(200, 16, 46, 0.2) !important;
}

/* ---------- LIONS TYPOGRAPHY HELPERS ---------- */
.lions-label {
  color: var(--lions-red) !important;
}
.lions-title {
  color: var(--lions-white);
}
.lions-red {
  color: var(--lions-red);
  display: block;
}
.lions-red-text {
  color: var(--lions-red);
}
.lions-year {
  color: var(--lions-red) !important;
}

/* Lions button variants */
.btn-lions-primary {
  background: var(--lions-red);
  color: var(--white);
  border: 2px solid var(--lions-red);
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lions-primary:hover {
  background: #ff8533;
  border-color: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--lions-red-glow);
}
.btn-lions-primary.btn-lg {
  font-size: 18px;
  padding: 16px 40px;
}

.btn-lions-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lions-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-lions-ghost.btn-lg {
  font-size: 18px;
  padding: 16px 40px;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--lions-red); }
.breadcrumb span:not(.sep-slash) { color: rgba(255,255,255,0.7); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---------- LIONS HERO ---------- */
.lions-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--lions-bg);
  overflow: hidden;
}

.lions-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(200, 16, 46, 0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(200, 16, 46, 0.02) 30px,
      rgba(200, 16, 46, 0.02) 31px
    );
}

.lions-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.95) 45%, rgba(8,8,8,0.2) 100%);
}

.lions-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 130px;
  padding-bottom: 100px;
  padding-left: 60px;
  padding-right: 20px;
  max-width: 580px;
  margin-left: 0;
  margin-right: auto;
}

.lions-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lions-badge {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.4);
  color: var(--lions-red);
  padding: 5px 14px;
  border-radius: 4px;
}
.lions-badge-anniversary {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--lions-gold);
}

.lions-hero-title {
  font-family: var(--font-condensed);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--white);
}

.lions-hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
  font-family: var(--font-condensed);
  font-weight: 400;
}

.lions-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* LIONS HERO CARD DISPLAY */
.lions-hero-card-display {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  width: 38%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lions-hero-card {
  width: 340px;
  max-width: 38vw;
  border-radius: 20px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.8),
    0 0 80px var(--lions-red-glow),
    0 0 0 1px rgba(200,16,46,0.2);
  animation: lions-card-float 6s ease-in-out infinite;
  transition: transform 0.5s var(--ease);
}
.lions-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, var(--lions-red-glow) 0%, transparent 70%);
  z-index: -1;
  animation: lions-glow-pulse 4s ease-in-out infinite;
}
@keyframes lions-card-float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%       { transform: rotate(-1deg) translateY(-20px); }
}
@keyframes lions-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* ---------- ABOUT THE SET ---------- */
.about-set {
  background: var(--lions-surface);
  position: relative;
  overflow: hidden;
}
.about-set::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.05) 0%, transparent 70%);
}

.about-set-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-set-text p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* TIMELINE */
.set-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding: 24px 20px;
  background: var(--lions-surface2);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--lions-red) transparent;
}
.timeline-item {
  text-align: center;
  flex-shrink: 0;
  min-width: 90px;
}
.timeline-year {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.timeline-text {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  max-width: 90px;
  white-space: normal;
  line-height: 1.3;
}
.timeline-line {
  flex: 1;
  min-width: 16px;
  height: 1px;
  background: rgba(200, 16, 46, 0.3);
  margin: 0 8px;
  margin-bottom: 20px;
  flex-shrink: 1;
}

/* PACK IMAGE AND STATS */
.about-set-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.pack-image {
  max-height: 400px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 50px var(--lions-red-glow);
  transition: transform 0.5s var(--ease);
}
.pack-image:hover {
  transform: scale(1.04) rotate(1deg);
}
.pack-stats {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
}
.pack-stat {
  text-align: center;
  padding: 20px 28px;
  background: var(--lions-surface2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.pack-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lions-red);
}
.pack-stat-number {
  font-family: var(--font-condensed);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.pack-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- RARITIES ---------- */
.rarities-section {
  background: var(--lions-bg);
}

.rarities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.rarity-card {
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.rarity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.rarity-card:hover {
  transform: translateY(-6px);
}

.rarity-base {
  background: var(--lions-surface);
  border-color: rgba(255,255,255,0.1);
}
.rarity-base::before { background: rgba(255,255,255,0.3); }
.rarity-base:hover { border-color: rgba(255,255,255,0.25); }

.rarity-gold {
  background: linear-gradient(135deg, var(--lions-surface) 0%, rgba(201,168,76,0.06) 100%);
  border-color: rgba(201, 168, 76, 0.25);
}
.rarity-gold::before { background: var(--lions-gold); }
.rarity-gold:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

.rarity-holo {
  background: linear-gradient(135deg, var(--lions-surface) 0%, rgba(100, 200, 255, 0.06) 100%);
  border-color: rgba(100, 200, 255, 0.25);
}
.rarity-holo::before { background: linear-gradient(90deg, #ff0080, #00ffff, #ff8000, #ff0080); }
.rarity-holo:hover {
  border-color: rgba(100, 200, 255, 0.4);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.1);
}

.rarity-auto {
  background: linear-gradient(135deg, var(--lions-surface) 0%, rgba(200, 16, 46, 0.08) 100%);
  border-color: rgba(200, 16, 46, 0.3);
}
.rarity-auto::before { background: var(--lions-red); }
.rarity-auto:hover {
  border-color: rgba(200, 16, 46, 0.5);
  box-shadow: 0 12px 40px var(--lions-red-glow);
}

.rarity-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rarity-icon { font-size: 24px; }
.rarity-name {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rarity-rate {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.rarity-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.rarity-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rarity-features li {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding-left: 16px;
  position: relative;
}
.rarity-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lions-red);
  font-weight: 700;
}

/* ---------- SHOP SECTION ---------- */
.shop-section {
  background: var(--lions-surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.product-card {
  background: var(--lions-surface2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  position: relative;
}
.product-card:hover {
  border-color: rgba(200, 16, 46, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-card-featured {
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 0 0 1px rgba(200,16,46,0.1), 0 20px 60px rgba(200,16,46,0.1);
}
.product-card-featured:hover {
  box-shadow: 0 0 0 1px rgba(200,16,46,0.2), 0 24px 70px rgba(200,16,46,0.15);
}

.product-image-wrap {
  position: relative;
  background: var(--lions-bg);
  padding: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}
.product-img {
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.4);
  color: var(--lions-red);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-badge-hot {
  background: var(--lions-red);
  border-color: var(--lions-red);
  color: var(--white);
}
.product-badge-limited {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  color: var(--lions-gold);
}

.product-info {
  padding: 28px;
}
.product-name {
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.product-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  flex: 1;
}

/* QTY CONTROLS */
.product-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--lions-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--white);
  width: 32px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qty-btn:hover {
  background: rgba(200,16,46,0.25);
  color: var(--lions-red);
}
.qty-display {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}

.btn-add-to-cart {
  background: var(--lions-red);
  color: var(--white);
  border: 2px solid var(--lions-red);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-add-to-cart:hover {
  background: #ff8533;
  border-color: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--lions-red-glow);
}
.btn-add-to-cart.added {
  background: #198754;
  border-color: #198754;
}

/* ---------- BACK BANNER ---------- */
.back-banner {
  background: var(--lions-bg);
}
.back-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 64px;
  background: var(--lions-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  gap: 40px;
  flex-wrap: wrap;
}
.back-banner-inner h3 {
  font-family: var(--font-condensed);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.back-banner-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
}

/* ---------- LIONS FOOTER ---------- */
.lions-footer {
  border-top-color: rgba(200, 16, 46, 0.15) !important;
}

/* ---------- CART OVERRIDE FOR LIONS ---------- */
.lions-theme .cart-btn:hover {
  background: var(--lions-red);
  border-color: var(--lions-red);
}
.lions-theme #cart-total-amount { color: var(--lions-red); }

/* ---------- RESPONSIVE (LIONS) ---------- */
@media (max-width: 1100px) {
  .rarities-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-set-grid { grid-template-columns: 1fr; gap: 48px; }
  .lions-hero-card-display { display: none; }
  .lions-hero-content { max-width: 100%; }
}
@media (max-width: 700px) {
  .rarities-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .pack-stats { gap: 12px; }
  .back-banner-inner { padding: 32px 24px; }
  .lions-hero-title { font-size: 52px; }
}
