/* RS Leisure — Black & Orange Theme — v2 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=DM+Mono:wght@400;500&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --bg-dark:    #000000;
  --bg-card:    #080808;
  --bg-elevated:#101010;
  --border:     #1a1a1a;
  --border-light:#252525;
  --orange:     #f97316;
  --orange-hot: #ff6b00;
  --orange-pale:#fb923c;
  --orange-dim: rgba(249,115,22,0.12);
  --text-primary:#ffffff;
  --text-muted:  #9ca3af;
  --text-dim:    #4b5563;
  --font-display:'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;
  --font-mono:  'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: var(--text-muted);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 3px; }

/* ── NAV ── */
.rsl-nav {
  background: rgba(0,0,0,0.96);
  border-bottom: 1px solid #1a1a1a;
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.rsl-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.rsl-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.rsl-logo-badge {
  width: 36px;
  height: 36px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rsl-logo-badge svg { width: 18px; height: 18px; color: #000; }
.rsl-logo-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
  transition: color 0.15s;
}
.rsl-logo:hover .rsl-logo-text { color: var(--orange); }
.rsl-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

/* Basket button */
.basket-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  background: #080808;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.15s;
  position: relative;
}
.basket-btn:hover {
  border-color: var(--orange);
  color: #fff;
  background: rgba(249,115,22,0.06);
}
.basket-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--orange);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav */
.nav-mobile {
  border-top: 1px solid #1a1a1a;
  padding: 0.75rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  background: #000;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(249,115,22,0.06) 0, rgba(249,115,22,0.06) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(249,115,22,0.06) 0, rgba(249,115,22,0.06) 1px, transparent 1px, transparent 80px);
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stripe {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: 0.4;
}
.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: #000;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-primary:hover {
  background: #ff6b00;
  box-shadow: 0 0 20px rgba(249,115,22,0.4);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  border: 1px solid #252525;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 2px;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange-pale); }

.btn-danger {
  background: transparent;
  color: #f87171;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border: 1px solid #7f1d1d;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 2px;
}
.btn-danger:hover { background: rgba(127,29,29,0.3); border-color: #f87171; }

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: 1;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  border-color: #2a2a2a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(249,115,22,0.1);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s;
}
.product-card:hover img { filter: brightness(1); }

/* ── CATEGORY PILLS ── */
.cat-pill {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
.cat-pill:hover { border-color: var(--orange); color: var(--orange-pale); }
.cat-pill.active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
  font-weight: 700;
}

/* ── FORM ELEMENTS ── */
.form-input {
  background: #050505;
  border: 1px solid var(--border-light);
  color: #d1d5db;
  padding: 0.65rem 0.9rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  border-radius: 2px;
}
.form-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(249,115,22,0.12);
}
.form-input::placeholder { color: #374151; }

label.form-label {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

/* ── QTY CONTROLS ── */
.qty-btn {
  width: 32px; height: 32px;
  background: #101010;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.qty-btn:hover { background: var(--orange); color: #000; border-color: var(--orange); }

/* ── FLASH MESSAGES ── */
.flash { font-size: 0.875rem; border-radius: 2px; }
.flash-success { background: #064e3b22; border: 1px solid #064e3b; color: #6ee7b7; }
.flash-danger, .flash-error { background: #7f1d1d22; border: 1px solid #7f1d1d; color: #fca5a5; }
.flash-warning { background: #78350f22; border: 1px solid #78350f; color: #fcd34d; }
.flash-info { background: #1e3a5f22; border: 1px solid #1e3a5f; color: #93c5fd; }

/* ── STATUS BADGES ── */
.status-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  font-weight: 500;
  text-transform: uppercase;
}
.status-pending  { background: #78350f33; color: #fcd34d; border: 1px solid #78350f; }
.status-paid     { background: #064e3b33; color: #6ee7b7; border: 1px solid #065f46; }
.status-shipped  { background: #1e3a5f33; color: #93c5fd; border: 1px solid #1e40af; }
.status-completed{ background: #1a2e1a33; color: #86efac; border: 1px solid #166534; }
.status-cancelled{ background: #7f1d1d33; color: #fca5a5; border: 1px solid #7f1d1d; }

/* ── CARDS / BOXES ── */
.summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
}

/* ── TABLES ── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.data-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #080808;
  font-size: 0.875rem;
  color: #d1d5db;
}
.data-table tr:hover td { background: rgba(255,255,255,0.015); }

/* ── STAT CARDS ── */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--orange), transparent);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(to right, #000, #060606);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 120px;
  height: 2px;
  background: var(--orange);
}

/* ── SECTION TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 0.95;
}

/* ── ORANGE RULE ── */
.orange-rule {
  height: 1px;
  background: linear-gradient(to right, var(--orange) 0%, rgba(249,115,22,0.3) 50%, transparent 100%);
  border: none;
  margin: 0;
}

/* ── FEATURE STRIP ── */
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

/* ── FOOTER ── */
.rsl-footer {
  background: #000;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.rsl-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-wordmark span { color: var(--orange); }

/* ── VARIANT SELECT ── */
.variant-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.variant-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 0.7rem;
  pointer-events: none;
  opacity: 0.8;
}
.variant-select {
  background: #1a1a1a;
  color: #e5e7eb;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.55rem 1.75rem 0.55rem 0.75rem;
  border: 1px solid #333;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  appearance: auto;
  width: 100%;
}
.variant-select:hover {
  border-color: var(--orange-pale);
  background: #222;
}
.variant-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange-dim);
}
.variant-select option {
  background: #1a1a1a;
  color: #e5e7eb;
  padding: 6px;
}
.variant-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

/* ── UTILITY ── */
.text-orange { color: var(--orange); }
.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }
.font-condensed { font-family: var(--font-condensed); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-h1   { font-size: 3.5rem; }
}
@media (min-width: 769px) {
  .nav-mobile { display: none !important; }
}
