/* ── Subbi Clothes — Shell: variables, body, nav, footer ── */
/* Shared by all public pages (not the OCE app).             */

/* ─ Design tokens ─ */
:root {
  /* ── Brand ── */
  --pink:       #ff2d78;
  --pink-dark:  #c8146a;
  --pink-dim:   rgba(255,45,120,0.45);
  --pink-soft:  rgba(255,45,120,0.08);
  --pink-glow:  rgba(255,45,120,0.18);
  /* ── Backgrounds ── */
  --bg:         #07000f;
  --bg-deep:    #04000a;
  --bg-card:    #100820;
  --bg-panel:   #0d0020;
  --bg-hover:   rgba(255,255,255,0.05);
  /* ── Borders ── */
  --border:     rgba(255,45,120,0.25);
  --border-dim: rgba(255,255,255,0.07);
  /* ── Text ── */
  --text:       #f0f0f5;
  --text-muted: #a898bc;
  --text-dim:   #7060a0;
  /* ── Misc ── */
  --warning:    #f5a623;
  --radius:     8px;
  --radius-lg:  14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* background glow */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 70% 50% at 50% 10%, var(--pink-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* scanline overlay */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
  );
}

/* ─ Nav ─ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,0,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ─ Logo ─ */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: 'Orbitron', monospace;
  font-size: 18px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  line-height: 1;
}
.logo-wordmark b { color: var(--text); font-weight: 700; }
.logo-pink { color: var(--pink); }
.logo-sub {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ─ Nav links ─ */
.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color .15s;
}
.nav-links a:first-child {
  min-width: 40px;
  text-align: center;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--pink) !important;
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: var(--radius);
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--pink-soft) !important; }

/* ─ Nav right (lang + hamburger) ─ */
.nav-right {
  justify-self: end;
  display: flex; align-items: center; gap: 8px;
}

/* ─ Lang switcher ─ */
.lang-switcher {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switcher button {
  background: transparent; border: none;
  color: var(--text-muted);
  padding: 5px 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  cursor: pointer; transition: all .2s;
}
.lang-switcher button:hover:not(.lang-active) {
  color: var(--text);
  background: var(--bg-hover);
}
.lang-switcher button.lang-active {
  background: var(--pink); color: #fff;
}

/* ─ Hamburger button ─ */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 18px;
  padding: 6px 8px; border-radius: var(--radius);
  transition: color .15s; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-hamburger:hover { color: var(--text); }

/* ─ Mobile dropdown menu ─ */
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border-dim);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-dim);
  display: flex; align-items: center; gap: 8px;
  transition: color .15s, background .15s;
}
.nav-mobile a:hover { color: var(--text); background: var(--bg-hover); }
/* ─ Responsive breakpoint ─ */
@media (max-width: 640px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Marketplace inside mobile menu: same look as other links */
.nav-mobile a.nav-cta {
  color: var(--text-muted) !important;
  border: none !important;
  padding: 14px 24px !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.nav-mobile a.nav-cta:hover { color: var(--text) !important; background: var(--bg-hover) !important; }

/* ─ Footer ─ */
.site-footer {
  border-top: 1px solid var(--border-dim);
  padding: 40px 24px;
  margin-top: auto;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 24px;
}
.footer-brand {
  font-family: 'Orbitron', monospace;
  font-size: 16px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-dim);
}
.footer-brand span { color: var(--pink-dim); }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; line-height: 21px; color: var(--text-muted); text-decoration: none;
  letter-spacing: 1px; font-weight: 600; text-transform: uppercase;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--text); }
.footer-bottom p { font-size: 15px; line-height: 22px; color: var(--text-muted); }
.footer-bottom strong { color: var(--text-muted); }
.footer-version { margin-top: 6px; font-size: 14px; line-height: 19px; }
.footer-version strong { color: var(--pink-dim); }

/* ─ Buttons ─ */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 1px;
  text-decoration: none; transition: all .15s;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-dark); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-dim);
  color: var(--text-muted);
}
.btn-ghost:hover { border-color: var(--border); color: var(--text); background: var(--bg-hover); }

/* ─ Section layout primitives ─ */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 48px;
}

/* ─ Video embed (16:9) ─ */
.video-wrap {
  position: relative; width: 100%;
  padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-dim);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
