/* ============================================================
   RS SHOP PROJECT — style.css
   Theme: Luxury Gold / Obsidian — Premium FiveM Assets
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Syne:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Frank+Ruhl+Libre:wght@300;400;500;700;900&family=Rubik:wght@300;400;500;600;700;800&family=Heebo:wght@300;400;500;700;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:        #060606;
  --black-soft:   #0d0d0d;
  --black-card:   #101010;
  --black-hover:  #161616;
  --border:       #1a1a1a;
  --border-mid:   #262626;
  --border-light: #333;
  --white:        #f7f4ee;
  --white-dim:    #c4c0b8;
  --white-muted:  #6e6a62;
  --white-faint:  #36342f;

  --gold:         #d4af5a;
  --gold-bright:  #f0c760;
  --gold-dim:     #9e7e37;
  --gold-bg:      rgba(212,175,90,0.07);
  --gold-border:  rgba(212,175,90,0.22);
  --gold-glow:    rgba(212,175,90,0.13);

  --sale-red:     #e8534a;
  --discord:      #5865F2;
  --discord-h:    #4752c4;

  --font-logo:    'Rajdhani', sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-heb:     'Rubik', 'Heebo', sans-serif;
  --font-serif:   'Frank Ruhl Libre', serif;

  --header-h:  76px;
  --radius:    4px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-heb);
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::selection { background: var(--gold); color: var(--black); }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Gold line divider ─────────────────────────────────────── */
.gold-line {
  display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 20px;
}
.gold-line::before, .gold-line::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
}
.gold-line::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.gold-line::after  { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-line span {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,6,6,0.96);
  backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid rgba(212,175,90,0.1);
  height: var(--header-h);
}

.header-container {
  max-width: 1600px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px;
}

.header-logo { position: relative; }
.logo-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100px; height: 100px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none; opacity: 0.7;
}

.logo-img {
  width: 44px; height: 44px; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,175,90,0.3)); flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-logo); font-size: 24px; font-weight: 700;
  letter-spacing: 0.05em; display: flex; align-items: center; gap: 4px; line-height: 1;
}
.logo-rs     { color: var(--gold); text-shadow: 0 0 18px var(--gold-glow); }
.logo-divider{ color: var(--gold-dim); font-weight: 300; font-size: 18px; }
.logo-pipe   { color: var(--border-light); font-size: 16px; font-weight: 300; }
.logo-project{ color: var(--white); }
.logo-fivem  { color: var(--gold-dim); font-size: 18px; }
.logo-tagline{
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-muted); margin-top: 4px; font-family: var(--font-display);
}

.header-nav { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }

.nav-link {
  font-size: 14px; font-weight: 500; color: var(--white-muted);
  padding: 8px 18px; border-radius: var(--radius); transition: all 0.25s var(--ease);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 70%; height: 1.5px; background: var(--gold); transition: transform 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-link-discord {
  display: flex; align-items: center; gap: 8px; padding: 9px 18px;
  background: rgba(88,101,242,0.15); border: 1px solid rgba(88,101,242,0.3);
  color: #818cf8; border-radius: var(--radius-lg); font-weight: 600;
  font-size: 14px; transition: all 0.25s var(--ease);
}
.nav-link-discord:hover {
  background: var(--discord); color: white; border-color: var(--discord);
  box-shadow: 0 6px 20px rgba(88,101,242,0.3);
}

.header-user { display: flex; align-items: center; }

.btn-discord-login {
  display: flex; align-items: center; gap: 9px; padding: 10px 22px;
  background: linear-gradient(135deg, var(--discord) 0%, #4752c4 100%);
  color: white; border: none; border-radius: var(--radius-lg);
  font-family: var(--font-heb); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.25s var(--ease);
}
.btn-discord-login:hover {
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(88,101,242,0.4);
}

.user-avatar-btn {
  display: flex; align-items: center; gap: 10px; padding: 5px 14px 5px 5px;
  background: var(--black-card); border: 1px solid var(--border-mid);
  border-radius: 50px; cursor: pointer; transition: all 0.25s var(--ease);
}
.user-avatar-btn:hover { border-color: var(--gold-border); }
.user-avatar-img  { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--gold-border); }
.user-avatar-name { font-size: 13px; font-weight: 600; color: var(--white); }
.user-customer-badge {
  display: inline-block; padding: 2px 7px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 4px; font-size: 9px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────────────────────
   DISCOUNT BANNER
───────────────────────────────────────────────────────────── */
.discount-banner-active {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(90deg, #6b3200 0%, #b06000 30%, #d4af5a 50%, #b06000 70%, #6b3200 100%);
  background-size: 200% 100%;
  animation: discountShimmer 3s linear infinite;
  box-shadow: 0 2px 20px rgba(212,175,90,0.4);
  border-bottom: 1px solid rgba(212,175,90,0.5);
}
@keyframes discountShimmer { 0%{ background-position:200% 0; } 100%{ background-position:-200% 0; } }
.discount-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap; direction: rtl;
}
.discount-banner-percent {
  font-family: var(--font-display); font-size: 21px; font-weight: 900;
  color: #0a0600; background: rgba(0,0,0,0.15); padding: 2px 11px;
  border-radius: 7px; letter-spacing: -0.02em;
}
.discount-banner-text { display: flex; flex-direction: column; gap: 1px; color: #0a0600; }
.discount-banner-text strong { font-size: 15px; font-weight: 800; }
.discount-banner-text span  { font-size: 12px; opacity: 0.7; }
.discount-banner-timer {
  font-size: 12px; color: #1a0600; background: rgba(0,0,0,0.14);
  padding: 3px 10px; border-radius: 20px; font-weight: 600;
}
.discount-banner-close {
  background: none; border: none; cursor: pointer; color: rgba(0,0,0,0.5);
  font-size: 15px; padding: 2px 6px; border-radius: 4px; margin-right: auto; transition: color .15s;
}
.discount-banner-close:hover { color: #000; }

/* ─────────────────────────────────────────────────────────────
   VIEW MANAGEMENT
───────────────────────────────────────────────────────────── */
[data-view] { display: none; }
[data-view].active { display: block; animation: pageFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes pageFadeUp { from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
.page-view { padding-top: var(--header-h); }

/* ─────────────────────────────────────────────────────────────
   PAGE HERO — improved with gradient + subtle pattern
───────────────────────────────────────────────────────────── */
.page-hero {
  padding: 72px 0 56px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -10%, rgba(212,175,90,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(212,175,90,0.015) 40px, rgba(212,175,90,0.015) 41px
  );
  pointer-events: none;
}

.page-title {
  font-size: clamp(38px, 6vw, 60px); font-weight: 700;
  color: var(--white); margin-bottom: 14px;
  position: relative; z-index: 1;
}
.page-subtitle {
  font-size: clamp(15px, 2vw, 18px); color: var(--white-muted);
  max-width: 600px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────────────────────── */
.section-products, .section-testimonials { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(30px, 5vw, 48px); font-weight: 800; color: var(--white);
  font-family: var(--font-display); letter-spacing: -0.03em; margin-bottom: 12px;
}
.section-subtitle { font-size: clamp(15px, 2vw, 18px); color: var(--white-muted); max-width: 560px; margin: 0 auto; }

/* ─────────────────────────────────────────────────────────────
   CATEGORY FILTER
───────────────────────────────────────────────────────────── */
.category-filter {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 48px; flex-wrap: wrap;
}
.cat-btn {
  padding: 9px 22px; background: transparent; border: 1px solid var(--border-mid);
  color: var(--white-muted); font-family: var(--font-heb); font-size: 13px; font-weight: 600;
  border-radius: 30px; cursor: pointer; letter-spacing: 0.02em;
  transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.cat-btn:hover:not(.active) {
  border-color: var(--gold-border); color: var(--white); transform: translateY(-2px);
}
.cat-btn.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent; color: var(--black); font-weight: 700;
  box-shadow: 0 4px 18px rgba(212,175,90,0.3); transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────
   PRODUCTS GRID
───────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px; margin-bottom: 60px;
}

/* ── Product Card — refined premium card ── */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}
/* top gold accent line */
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none; z-index: 2;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,90,0.35);
  box-shadow: 0 28px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(212,175,90,0.12), 0 0 40px rgba(212,175,90,0.05);
}
.product-card:hover::before { opacity: 1; }

.product-image-wrap {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--black-soft);
}
.product-image {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-image { transform: scale(1.07); }

/* ── Badge ── */
.product-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 13px;
  background: rgba(212,175,90,0.95);
  backdrop-filter: blur(8px);
  color: #060606; font-size: 11px; font-weight: 800;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; z-index: 2;
}
.product-badge.sold { background: rgba(80,76,70,0.9); color: var(--white-dim); }
.product-badge.discount-badge {
  background: linear-gradient(135deg, var(--gold-bright), #c89030);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100%{ box-shadow:0 0 0 0 rgba(212,175,90,0.4); } 50%{ box-shadow:0 0 0 5px rgba(212,175,90,0); } }

/* ── Copy / Share button ── */
.copy-link-btn {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; align-items: center; gap: 5px; padding: 5px 11px;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,90,0.3); border-radius: 20px;
  color: var(--gold); font-size: 11px; font-weight: 600;
  font-family: var(--font-heb); cursor: pointer; z-index: 5;
  letter-spacing: 0.04em; opacity: 0; transform: translateY(4px);
  transition: all 0.2s ease;
}
.product-card:hover .copy-link-btn { opacity: 1; transform: translateY(0); }
.copy-link-btn:hover { background: rgba(212,175,90,0.18); border-color: rgba(212,175,90,0.65); }
.copy-link-btn.copied { background: rgba(59,165,93,0.85); border-color: rgba(59,165,93,0.6); color: #fff; }

/* ── Product Info ── */
.product-info { padding: 22px 22px 20px; }
.product-category {
  font-size: 11px; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 7px;
}
.product-title {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 8px; line-height: 1.3;
  font-family: var(--font-display); letter-spacing: -0.01em;
}
.product-description {
  font-size: 13px; color: var(--white-muted); line-height: 1.6; margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.product-price {
  font-size: 22px; font-weight: 800; color: var(--gold);
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.product-price-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-price-original { text-decoration: line-through; color: var(--white-muted); font-size: 12px; font-weight: 500; }
.product-price.discounted { color: #57f287 !important; -webkit-text-fill-color: #57f287; font-size: 18px; }
.product-sold-info { display: flex; align-items: center; gap: 8px; }
.product-sold-avatar { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--gold-border); }
.product-sold-name { font-size: 12px; color: var(--white-muted); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.testimonial-card {
  background: var(--black-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  position: relative; overflow: hidden;
  transition: transform 0.26s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.26s ease, border-color 0.26s ease;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: -8px; right: 20px;
  font-size: 100px; color: var(--gold-border); font-family: Georgia, serif;
  line-height: 1; pointer-events: none; z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-5px); border-color: var(--gold-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,90,0.06);
}
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold-border); flex-shrink: 0; }
.testimonial-user-info { flex: 1; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.testimonial-product { font-size: 12px; color: var(--gold-dim); font-weight: 600; }
.testimonial-rating { color: var(--gold); font-size: 14px; letter-spacing: 2px; flex-shrink: 0; }
.testimonial-text { font-size: 14px; color: var(--white-dim); line-height: 1.75; position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black-soft); border-top: 1px solid var(--border); padding: 56px 0 28px;
}
.footer-content {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; flex-wrap: wrap; gap: 24px;
}
.footer-logo h3 { font-size: 28px; color: var(--gold); margin-bottom: 6px; font-family: var(--font-logo); }
.footer-logo p  { color: var(--white-muted); font-size: 13px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-link { color: var(--white-muted); font-size: 14px; font-weight: 500; transition: color 0.2s ease; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 28px; border-top: 1px solid var(--border); color: var(--white-muted); font-size: 13px; }

/* ─────────────────────────────────────────────────────────────
   MODALS
───────────────────────────────────────────────────────────── */
.product-modal, .user-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.product-modal.active, .user-modal.active { display: flex; }

.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(20px) saturate(1.2);
}
.modal-content {
  position: relative; z-index: 1;
  background: var(--black-card);
  border: 1px solid rgba(212,175,90,0.16);
  border-radius: 22px; max-width: 800px; width: 100%;
  max-height: 92vh; overflow-y: auto; overflow-x: hidden;
  animation: modalFadeIn 0.28s var(--ease);
  box-shadow: 0 50px 120px rgba(0,0,0,0.85), 0 0 0 1px rgba(212,175,90,0.08);
  scrollbar-width: none;
}
.modal-content::-webkit-scrollbar { display: none; }
.user-modal .modal-content { overflow: visible; max-height: unset; }
.user-modal .modal-content > #user-profile { overflow: hidden; border-radius: var(--radius-xl); }
@keyframes modalFadeIn { from{ opacity:0; transform:scale(0.96) translateY(10px); } to{ opacity:1; transform:none; } }

.modal-close {
  position: absolute; top: 18px; left: 18px;
  width: 38px; height: 38px; background: rgba(255,255,255,0.07); border: 1px solid var(--border-mid);
  border-radius: 50%; color: var(--white); font-size: 22px; cursor: pointer;
  transition: all 0.2s ease; z-index: 10; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────── */
.contact-section { padding: 72px 0 96px; }
.contact-hero { position: relative; overflow: hidden; }
.contact-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-top-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; margin-bottom: 22px;
}

/* Generic contact card */
.contact-card {
  background: var(--black-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover { border-color: var(--gold-border); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

/* Discord Live Card */
.discord-live-card {
  background: linear-gradient(150deg, rgba(88,101,242,0.07) 0%, rgba(88,101,242,0.02) 100%) !important;
  border-color: rgba(88,101,242,0.22) !important;
  padding: 34px !important;
}
.discord-live-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.discord-live-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(88,101,242,0.1); border: 2px solid rgba(88,101,242,0.28);
  display: flex; align-items: center; justify-content: center; color: #7289da; flex-shrink: 0;
}
.discord-live-label { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--white-muted); margin-bottom: 3px; }
.discord-live-name  { font-size: 20px; font-weight: 800; color: var(--white); font-family: var(--font-display); margin: 0; }
.discord-live-badge {
  margin-right: auto; padding: 4px 11px;
  background: rgba(59,165,93,0.13); border: 1px solid rgba(59,165,93,0.28);
  border-radius: 20px; font-size: 10px; font-weight: 700; color: #3ba55d; letter-spacing: .06em;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green { 0%,100%{ opacity:1; } 50%{ opacity:0.55; } }

.discord-live-stats {
  display: flex; align-items: center;
  background: rgba(0,0,0,0.25); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 24px;
  margin-bottom: 24px; justify-content: space-around;
}
.discord-live-stat { text-align: center; flex: 1; }
.discord-live-divider { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }
.discord-live-num { font-size: 34px; font-weight: 900; font-family: var(--font-display); line-height: 1; margin-bottom: 6px; }
.discord-live-num.online  { color: #3ba55d; }
.discord-live-num.offline { color: #747f8d; }
.discord-live-num.total   {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.discord-live-sublabel { font-size: 11px; color: var(--white-muted); display: flex; align-items: center; justify-content: center; gap: 5px; }
.status-dot  { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.online-dot  { background: #3ba55d; }
.offline-dot { background: #747f8d; }

.btn-join-discord {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 28px;
  background: linear-gradient(135deg, #5865F2, #4752c4);
  color: white; font-size: 15px; font-weight: 700;
  border-radius: var(--radius-lg); transition: all 0.25s var(--ease);
  box-shadow: 0 6px 20px rgba(88,101,242,0.22);
}
.btn-join-discord:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(88,101,242,0.38); }

/* Stats Card */
.contact-stats-card { padding: 30px !important; }
.contact-card-title {
  font-size: 19px; font-weight: 700; color: var(--white);
  margin-bottom: 22px; text-align: center; font-family: var(--font-display);
}
.contact-stats-list { display: flex; flex-direction: column; gap: 14px; }
.contact-stat-row {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: var(--black-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all .22s var(--ease);
}
.contact-stat-row:hover { border-color: var(--gold-border); background: var(--black-hover); }
.contact-stat-icon  { font-size: 20px; flex-shrink: 0; }
.contact-stat-label { font-size: 13px; color: var(--white-dim); flex: 1; }
.contact-stat-num {
  font-size: 26px !important; font-family: var(--font-display);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Contact method cards */
.contact-methods-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-method-card {
  background: var(--black-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 26px 18px; text-align: center;
  cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all .28s var(--ease);
}
.contact-method-card:hover {
  border-color: var(--gold-border); transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
}
.contact-method-card.no-link { cursor: default; }
.contact-method-card.no-link:hover { transform: translateY(-2px); }
.contact-method-icon {
  width: 56px; height: 56px; background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.contact-method-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--white-muted); }
.contact-method-value { font-size: 13px; font-weight: 600; color: var(--white); word-break: break-all; }
.contact-method-card[href]:hover .contact-method-value { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="left"]   { transform: translateX(-24px); }
[data-reveal="right"]  { transform: translateX(24px); }
[data-reveal="left"].revealed, [data-reveal="right"].revealed { transform: none; }
[data-stagger] > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.48s cubic-bezier(.22,1,.36,1), transform 0.48s cubic-bezier(.22,1,.36,1);
}
[data-stagger].revealed > *:nth-child(1) { transition-delay:   0ms; opacity:1; transform:none; }
[data-stagger].revealed > *:nth-child(2) { transition-delay:  80ms; opacity:1; transform:none; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 160ms; opacity:1; transform:none; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 240ms; opacity:1; transform:none; }

/* ─────────────────────────────────────────────────────────────
   MOBILE NAVIGATION
───────────────────────────────────────────────────────────── */
.mobile-nav { display: none; }
@media (max-width: 768px) {
  .mobile-nav {
    display: flex !important; position: fixed;
    bottom: 0; left: 0; right: 0; z-index: 300;
    background: rgba(8,8,8,0.98); backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-mid);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
  }
  .mobile-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 6px 14px; color: var(--white-muted); font-size: 10px; font-weight: 600;
    letter-spacing: 0.04em; border-radius: 10px;
    transition: color 0.2s, background 0.2s; font-family: var(--font-heb);
  }
  .mobile-nav-item.active, .mobile-nav-item:hover { color: var(--gold); background: rgba(212,175,90,0.07); }
  .mobile-nav-item svg { width: 22px; height: 22px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-container { padding: 0 14px; gap: 10px; }
  .logo-img { width: 32px; height: 32px; }
  .logo-text { font-size: 16px; }
  .logo-tagline, .nav-link-discord { display: none; }
  .header-nav { display: none; }
  .btn-discord-login { font-size: 12px; padding: 8px 13px; gap: 6px; }
  .btn-discord-login svg { width: 14px; height: 14px; }
  body { padding-bottom: 72px; }
  .section-products, .section-testimonials { padding: 64px 0; }
}

@media (max-width: 900px) { .contact-top-row { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .contact-methods-row { grid-template-columns: repeat(2, 1fr); }
  .discord-live-stats { padding: 14px 16px; }
  .discord-live-num { font-size: 28px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .page-hero { padding: 52px 0 38px; }
}

@media (max-width: 640px) {
  .container { padding: 0 14px; }
  .products-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-top-row, .contact-methods-row { grid-template-columns: 1fr !important; }
  .category-filter {
    gap: 7px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .category-filter::-webkit-scrollbar { display: none; }
  .cat-btn { white-space: nowrap; padding: 8px 15px; font-size: 12px; flex-shrink: 0; }
  .page-hero { padding: 32px 0 24px; }
  .page-title { font-size: clamp(24px, 7vw, 40px); }
  .page-subtitle { font-size: 13px; }
  .section-products { padding: 20px 0 32px; }
  .testimonial-card { padding: 18px; }
}

@media (max-width: 640px) {
  .product-card { border-radius: 14px; }
  .product-info { padding: 12px 12px 10px; }
  .product-title { font-size: 13px !important; line-height: 1.3; }
  .product-description { font-size: 11px !important; }
  .product-price { font-size: 15px !important; }
  .product-badge { font-size: 9px; padding: 3px 8px; }
  .product-footer { padding-top: 10px; }
  .copy-link-btn { padding: 4px 8px; font-size: 10px; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr !important; }
}

/* ── Modal mobile ── */
@media (max-width: 640px) {
  .product-modal .modal-content, .user-modal .modal-content {
    width: 100%; max-width: 100%; max-height: 92dvh;
    border-radius: 20px 20px 0 0; position: fixed;
    bottom: 0; top: auto; left: 0; right: 0; transform: none; margin: 0;
  }
  .modal-close { top: 12px !important; left: 12px !important; width: 34px !important; height: 34px !important; font-size: 20px !important; }
}

/* ── Discount banner mobile ── */
@media (max-width: 480px) {
  .discount-banner-inner { padding: 8px 12px; gap: 8px; justify-content: flex-start; }
  .discount-banner-text span { display: none; }
  .discount-banner-percent { font-size: 16px; }
  .discount-banner-text strong { font-size: 13px; }
}

/* ── Active nav style ── */
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
