/* ============================================================
   RAKHA SERVICES — style.css | Pure Black & White Theme
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg:      #000000;
  --bg2:     #080808;
  --bg3:     #0f0f0f;
  --card:    #131313;
  --card2:   #1a1a1a;
  --border:  #222222;
  --border2: #303030;
  --text:    #ffffff;
  --text2:   #aaaaaa;
  --text3:   #666666;
  --accent:  #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
body.locked { overflow: hidden; height: 100vh; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── ANIMATED BACKGROUND GLOW ORBS ── */
.bg-glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  animation: orbFloat 16s ease-in-out infinite alternate;
}
.orb-2 {
  width: 600px; height: 600px;
  bottom: 8%; right: 8%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 70%);
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(45px, -35px) scale(1.18); }
  100% { transform: translate(-35px, 45px) scale(0.92); }
}

/* ── PARTICLES ── */
#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ── BUTTONS ── */
button, .btn-white, .btn-outline, .btn-ghost, .btn-buy {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all .25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: .875rem;
  white-space: nowrap;
  text-decoration: none;
}

.btn-white {
  background: #fff;
  color: #000;
  border: 1.5px solid #fff;
}
.btn-white:hover {
  background: #eaeaea;
  border-color: #eaeaea;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #333;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #888;
  border: 1.5px solid transparent;
}
.btn-ghost:hover { color: #fff; }

.btn-buy {
  background: #fff;
  color: #000;
  border: none;
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 700;
}
.btn-full { width: 100%; }

.discord-nav-btn {
  background: #fff !important;
  color: #000 !important;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.96);
  border-bottom-color: #2e2e2e;
}
.nav-container {
  max-width: 100%;
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 2.5px;
}
.logo-icon { filter: drop-shadow(0 0 10px rgba(255,255,255,0.7)); font-size: 1.5rem; }
.logo-text { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  color: #888;
  font-size: .875rem;
  cursor: pointer;
  transition: all .2s;
  font-weight: 500;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 18px;
  border-top: 1px solid var(--border);
  background: #000;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 10px 14px;
  border-radius: 8px;
  color: #888;
  font-size: .875rem;
  cursor: pointer;
  transition: all .2s;
}
.mobile-link:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* ── HERO: ELEVATED CHARACTER & BIGGER WORDS ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.noise-overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px
  );
  opacity: 0.04;
}
.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
}

.hero-split {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0 6vw 0 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* HERO LEFT (CHARACTER PHOTO - SHIFTED RIGHT & DOWN, NO LIGHT) */
.hero-left {
  flex: 1;
  max-width: 52%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.char-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  transform: translate(45px, 15px);
}
.char-img {
  position: relative;
  z-index: 3;
  height: 78vh;
  max-height: 680px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  animation: charFloat 5s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
@keyframes charFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* HERO RIGHT (BIGGER HEADLINE & WORDS) */
.hero-right {
  flex: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: auto;
  padding-right: 2vw;
}

.hero-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #333;
  background: rgba(255,255,255,0.05);
  color: #aaa;
  padding: 7px 20px;
  border-radius: 99px;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}

.brand-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 6px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
  font-family: 'Bebas Neue', sans-serif;
}
.title-outline {
  color: transparent;
  -webkit-text-stroke: 2.5px #fff;
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: #888;
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 34px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.02);
}
.stat { padding: 0 24px; text-align: center; }
.sn {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}
.sl { font-size: .75rem; color: #666; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.sdiv { width: 1px; height: 36px; background: var(--border); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
  animation: bounceHint 2s infinite;
}
.scroll-hint.visible { opacity: 1; }
@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── MAIN CONTENT ── */
.main-content.hidden { display: none; }
.main-content.reveal {
  display: block;
  animation: revealContent .6s ease forwards;
}
@keyframes revealContent {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TOP FEATURES BAR ── */
.features-bar {
  background: #080808;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding: 22px 0;
}
.features-wrap {
  max-width: 1360px;
  margin: auto;
  padding: 0 5vw;
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.fi {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-size: .88rem;
  font-weight: 600;
}
.fi span:first-child { font-size: 1.25rem; }

/* ── STORE LAYOUT: SIDEBAR ON LEFT + BIGGER CARDS ON RIGHT ── */
.products-section {
  padding: 50px 0 100px;
  background: #000;
  width: 100%;
}
.products-section .sec-wrap {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 32px !important;
  width: 100% !important;
}
.sec-wrap {
  max-width: 1400px;
  margin: auto;
  padding: 0 4vw;
}
.store-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  width: 100%;
}

/* ── STORE SIDEBAR ── */
.store-sidebar {
  position: sticky;
  top: 90px;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 16px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.sidebar-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar-search .search-ico {
  position: absolute;
  left: 14px;
  color: #555;
  pointer-events: none;
}
.sidebar-search input {
  width: 100%;
  background: #141414;
  border: 1px solid #282828;
  border-radius: 12px;
  padding: 11px 36px 11px 40px;
  font-size: .88rem;
  color: #fff;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: all .2s;
}
.sidebar-search input:focus {
  border-color: #fff;
  box-shadow: 0 0 16px rgba(255,255,255,0.06);
}
.clear-search-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #666;
  font-size: .85rem;
  cursor: pointer;
  padding: 4px;
}
.clear-search-btn:hover { color: #fff; }

.sidebar-menu { display: flex; flex-direction: column; gap: 8px; }
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  color: #888;
  font-size: .88rem;
  font-weight: 600;
  user-select: none;
  border: 1px solid transparent;
}
.sidebar-item:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.sidebar-item.active {
  background: rgba(255,255,255,0.08);
  border-color: #333;
  color: #fff;
}
.cat-badge-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #181818;
  border: 1px solid #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.cat-badge-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: #181818;
  border: 1px solid #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cat-badge-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.cat-name { flex: 1; }
.cat-count {
  font-size: .75rem;
  font-weight: 700;
  color: #555;
  background: #161616;
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid #242424;
}
.sidebar-item.active .cat-count { color: #fff; background: #282828; }

.cat-group { margin-top: 14px; }
.cat-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: .72rem;
  font-weight: 800;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  border-radius: 8px;
  transition: color .2s;
}
.cat-group-header:hover { color: #aaa; }
.cat-group-header .chevron-icon { transition: transform .25s; }
.cat-group-header.active .chevron-icon { transform: rotate(180deg); }
.cat-group-items { display: none; flex-direction: column; gap: 4px; margin-top: 4px; }
.cat-group-items.open { display: flex; }

/* ── STORE MAIN (BIGGER WORDS & SIZING) ── */
.store-main { min-width: 0; }
.store-header-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid #1c1c1c;
}
.active-cat-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.active-cat-subtitle {
  font-size: 1rem;
  color: #777;
  max-width: 600px;
  line-height: 1.6;
}
.products-count-badge {
  font-size: .84rem;
  font-weight: 700;
  color: #fff;
  background: #141414;
  border: 1px solid #282828;
  padding: 8px 18px;
  border-radius: 99px;
  white-space: nowrap;
}

/* ── CARDS GRID: BIGGER CARDS & LARGER WORDS MATCHING SCREENSHOT ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
  gap: 22px;
  width: 100%;
}

.pcard {
  background: #0d0d0d;
  border: 1.5px solid #1f1f1f;
  border-radius: 28px;
  padding: 22px;
  cursor: pointer;
  transition: all .28s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}
.pcard:hover {
  transform: translateY(-8px);
  border-color: #383838;
  box-shadow: 0 24px 50px rgba(0,0,0,0.85), 0 0 25px rgba(255,255,255,0.04);
}
.pcard.featured { border-color: #383838; }

.pcard-banner {
  width: 100%;
  height: 205px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #141414;
  margin-bottom: 18px;
}
.pcard-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pcard:hover .pcard-banner-img {
  transform: scale(1.05);
}

.card-pill-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(38, 16, 56, 0.88);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.35);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .04em;
  z-index: 2;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.pcard-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-instock-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.28);
  font-size: .72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card-stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e5e5e5;
  font-size: .84rem;
  font-weight: 700;
}
.card-stars-badge .star-ico {
  color: #f59e0b;
  font-size: .95rem;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.card-buynow-lbl {
  font-size: .74rem;
  font-weight: 800;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-top: auto;
}

.empty-search-box {
  text-align: center;
  padding: 70px 20px;
  background: #0d0d0d;
  border: 1px dashed #282828;
  border-radius: 20px;
}
.empty-ico { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; }
.empty-search-box h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.empty-search-box p { font-size: .95rem; color: #666; max-width: 420px; margin: 0 auto 24px; line-height: 1.6; }

/* ── DEDICATED PRODUCT DETAILS VIEW MODAL (MATCHING SCREENSHOT) ── */
.pv-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px);
  padding: 24px;
}
.pv-modal-overlay.active { display: flex; }

.pv-modal-container {
  background: #0c0c0c;
  border: 1px solid #242424;
  border-radius: 24px;
  width: 100%;
  max-width: 1240px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 34px;
  animation: modalIn .28s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}

.pv-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid #2e2e2e;
  color: #aaa;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  z-index: 10;
}
.pv-close-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: scale(1.08);
}

.pv-grid {
  display: grid;
  grid-template-columns: 63% 37%;
  gap: 32px;
  align-items: start;
}

/* LEFT COLUMN */
.pv-left-col { min-width: 0; }
.pv-banner-wrap {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #141414;
  border: 1px solid #242424;
  margin-bottom: 22px;
  position: relative;
}
.pv-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3 VALUE PILLS */
.pv-features-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.pv-feat-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}
.pv-feat-icon { font-size: 1.4rem; margin-bottom: 8px; }
.pv-feat-title { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pv-feat-sub { font-size: .76rem; color: #666; line-height: 1.4; }

/* TWO BOXES SIDE BY SIDE */
.pv-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.pv-info-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 22px;
}
.pv-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1f1f1f;
}

.pv-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #1c1c1c;
}
.pv-detail-item:last-child { border-bottom: none; }
.pv-lbl {
  font-size: .75rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pv-val {
  font-size: .92rem;
  font-weight: 700;
  color: #eee;
  text-align: right;
}
.pv-stock-yes {
  color: #22c55e !important;
  font-weight: 800;
  background: rgba(34,197,94,0.12);
  padding: 4px 14px;
  border-radius: 99px;
  border: 1px solid rgba(34,197,94,0.3);
}

.pv-why-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.pv-why-item:last-child { margin-bottom: 0; }
.pv-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.pv-why-item strong { display: block; font-size: .88rem; color: #fff; margin-bottom: 2px; }
.pv-why-item p { font-size: .78rem; color: #666; }

/* REVIEWS CARD */
.pv-reviews-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 18px 24px;
}
.pv-rev-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pv-rev-header h4 { font-size: .95rem; font-weight: 800; color: #fff; }
.pv-stars { display: flex; align-items: center; gap: 8px; }
.pv-score { font-size: 1.1rem; font-weight: 900; color: #fff; }
.pv-star-icons { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.pv-rev-count { font-size: .8rem; color: #666; }

/* RIGHT COLUMN: FLOATING BUY PANEL */
.pv-right-col { min-width: 0; }
.pv-buy-panel {
  background: #141414;
  border: 1.5px solid #262626;
  border-radius: 20px;
  padding: 28px;
}

.pv-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pv-stock-badge {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.pv-rating-badge {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid #333;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
}
.pv-type-badge {
  background: rgba(255,255,255,0.04);
  color: #aaa;
  border: 1px solid #282828;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
}

.pv-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.pv-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.pv-desc {
  font-size: .88rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pv-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pv-tag {
  font-size: .72rem;
  font-weight: 700;
  color: #aaa;
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 5px 12px;
  border-radius: 8px;
}

/* PAYMENT DETAILS BOX */
.pv-pay-box {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 20px;
}
.pv-pay-title {
  font-size: .74rem;
  font-weight: 800;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.pv-line-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1c1c1c;
  margin-bottom: 14px;
}
.pv-pay-thumb {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
}
.pv-line-info { flex: 1; min-width: 0; }
.pv-line-name {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv-line-qty { font-size: .75rem; color: #666; }
.pv-line-price { font-size: .95rem; font-weight: 800; color: #fff; }

.pv-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  color: #666;
  margin-bottom: 8px;
}
.pv-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #1c1c1c;
  margin-bottom: 18px;
}

.pv-qty-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.pv-qty-label {
  font-size: .74rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pv-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.pv-qbtn {
  width: 34px; height: 34px;
  background: #181818;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-qbtn:hover { background: #333; }
.pv-qty-control input {
  width: 44px; height: 34px;
  text-align: center;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  outline: none;
}

.pv-payment-methods { margin-bottom: 18px; }
.pv-payment-methods .pm-opts { margin-top: 8px; }

.pv-checkout-btn {
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: 10px;
}

.pv-security-note {
  text-align: center;
  font-size: .74rem;
  color: #555;
  margin-top: 14px;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us-section {
  padding: 90px 0;
  background: #080808;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}
.sec-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1c1c1c;
}
.sec-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.8rem;
  color: #222;
  line-height: 1;
  letter-spacing: 2px;
}
.sec-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.sec-desc {
  font-size: .95rem;
  color: #777;
  max-width: 620px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.why-card {
  background: #111111;
  border: 1.5px solid #202020;
  border-radius: 22px;
  padding: 32px 28px;
  transition: all .25s ease;
  position: relative;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: #fff;
  box-shadow: 0 16px 40px rgba(255,255,255,0.04);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: #181818;
  border: 1px solid #282828;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.why-card p {
  font-size: .9rem;
  color: #777;
  line-height: 1.7;
}

/* ============================================================
   SUPPORT / TICKET IN DISCORD SECTION
   ============================================================ */
.support-section {
  padding: 90px 0;
  background: #000;
  position: relative;
}
.support-card-main {
  background: #0d0d0d;
  border: 1.5px solid #222222;
  border-radius: 28px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 44px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.support-left { min-width: 0; }
.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #22c55e;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.support-left h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.support-desc {
  font-size: 1rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}

.ticket-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}
.tstep {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.tstep-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tstep strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.tstep p {
  font-size: .84rem;
  color: #777;
  line-height: 1.5;
}

.support-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.discord-ticket-btn {
  background: #fff;
  color: #000;
  font-weight: 800;
}

.ticket-status-box {
  background: #121212;
  border: 1.5px solid #262626;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.tbox-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #202020;
  margin-bottom: 20px;
}
.tbox-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 2s infinite;
}
.tbox-hdr strong {
  font-size: .84rem;
  color: #aaa;
  letter-spacing: .08em;
}
.tbox-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.tstat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  color: #777;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
}
.tstat-row strong {
  color: #fff;
  font-weight: 700;
}
.tbox-footer {
  text-align: center;
  padding-top: 10px;
}
.tbox-link {
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s;
}
.tbox-link:hover {
  text-decoration: underline;
  color: #ccc;
}

@media (max-width: 960px) {
  .support-card-main {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }
}

/* ── COMMUNITY ── */
.community-section { padding: 80px 0; background: #000; }
.sec-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
}
.sec-num { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: #1c1c1c; line-height: 1; }
.sec-title { font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; }
.sec-desc { font-size: .95rem; color: #666; margin-top: 6px; }

.comm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: auto;
}
.comm-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #131313;
  border: 1.5px solid #222;
  border-radius: 18px;
  padding: 28px;
  transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.comm-card:hover {
  transform: translateY(-4px);
  border-color: #fff;
  box-shadow: 0 20px 40px rgba(255,255,255,0.06);
}
.comm-icon {
  width: 58px; height: 58px;
  background: #080808;
  border: 1px solid #222;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.discord-clr { color: #5865f2; }
.tg-clr { color: #229ed9; }
.comm-txt h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.comm-txt p { font-size: .8rem; color: #666; font-family: monospace; }
.comm-txt span { font-size: .85rem; font-weight: 700; color: #fff; margin-top: 8px; display: block; }
.comm-arr { font-size: 1.4rem; color: #444; margin-left: auto; transition: transform .2s; }
.comm-card:hover .comm-arr { transform: translate(3px, -3px); color: #fff; }

/* ── FOOTER ── */
.footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 70px 0 0;
}
.footer-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 5vw 50px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  border-bottom: 1px solid #1a1a1a;
}
.footer-brand p { font-size: .9rem; color: #666; margin-top: 14px; max-width: 260px; line-height: 1.6; }
.f-socials { display: flex; gap: 10px; margin-top: 22px; }
.fsoc {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #111;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.fsoc:hover { background: #fff; color: #000; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.fcol h5 {
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.fcol a {
  display: block;
  font-size: .88rem;
  color: #666;
  padding: 5px 0;
  transition: color .2s;
}
.fcol a:hover { color: #fff; }
.footer-bot {
  padding: 24px 5vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bot p { font-size: .8rem; color: #444; }

/* ── MODALS (LOGIN, CHECKOUT, ETC) ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(18px);
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: #131313;
  border: 1.5px solid #242424;
  border-radius: 22px;
  padding: 34px;
  width: 100%;
  max-width: 450px;
  position: relative;
  animation: modalIn .25s ease;
}
.modal-box.modal-lg { max-width: 540px; }
@keyframes modalIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #0a0a0a;
  border: 1px solid #242424;
  color: #666;
  width: 34px; height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.modal-close:hover { color: #fff; border-color: #fff; }
.modal-icon { font-size: 2.6rem; text-align: center; margin-bottom: 16px; }
.modal-box h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 8px; text-align: center; }
.modal-box > p, .modal-subtitle { font-size: .88rem; color: #666; text-align: center; margin-bottom: 24px; line-height: 1.5; }

.modal-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .75rem; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: .06em; }
.form-group input {
  background: #0a0a0a;
  border: 1.5px solid #222;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .92rem;
  color: #fff;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
}
.form-group input:focus { border-color: #fff; }

.checkout-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 22px;
}
.cp-name { font-size: .95rem; font-weight: 700; color: #fff; }
.cp-price { font-size: 1.2rem; font-weight: 900; color: #fff; }

.pm-wrap { display: flex; flex-direction: column; gap: 10px; }
.pm-lbl { font-size: .75rem; font-weight: 700; color: #666; text-transform: uppercase; }
.pm-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pm-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  border: 1.5px solid #222;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  transition: all .2s;
}
.pm-opt:hover { border-color: #444; }
.pm-opt.active, .pm-opt:has(input:checked) {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}
.pm-opt input { display: none; }
.pm-ico { font-size: 1.5rem; }
.pm-opt span:last-child { font-size: .84rem; font-weight: 800; color: #fff; letter-spacing: .04em; }

.tos-chk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: #666;
}
.tos-chk input { accent-color: #fff; width: 16px; height: 16px; }
.tos-chk a { color: #fff; text-decoration: underline; }
.co-sec { text-align: center; font-size: .76rem; color: #555; margin-top: 14px; }

.modal-alt { text-align: center; margin-top: 18px; font-size: .84rem; color: #666; display: flex; gap: 6px; justify-content: center; }
.modal-alt a { color: #fff; font-weight: 600; }

.orders-prompt { text-align: center; padding: 36px 0; }
.orders-prompt h4 { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 12px 0 6px; }
.orders-prompt p { font-size: .85rem; color: #666; margin-bottom: 20px; }

.tos-content {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  max-height: 280px;
  overflow-y: auto;
}
.tos-content p, .tos-content li { font-size: .84rem; color: #777; line-height: 1.7; }
.tos-content ul { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; list-style: disc; }

.star-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 2.2rem;
  color: #282828;
  cursor: pointer;
  margin-bottom: 22px;
}
.star-rating span.active, .star-rating span:hover { color: #f59e0b; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #141414;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 13px 24px;
  font-size: .88rem;
  color: #fff;
  z-index: 1000;
  transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── CHAT WIDGET ── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 400; }
.chat-bubble {
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
  color: #000;
  transition: transform .25s ease;
  position: relative;
}
.chat-bubble:hover { transform: scale(1.1); }
.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  background: #131313;
  border: 1.5px solid #262626;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.9);
  display: none;
  flex-direction: column;
}
.chat-panel.open { display: flex; }

.chat-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #181818;
  border-bottom: 1px solid #242424;
}
.chat-hdr-left { display: flex; align-items: center; gap: 10px; }
.ai-pulse-dot {
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
}
.chat-hdr-left strong { display: block; font-size: .92rem; color: #fff; }
.ai-status-label { font-size: .72rem; color: #777; display: block; }
.chat-hdr button {
  background: none; border: none;
  color: #666; font-size: 1.1rem;
  cursor: pointer; padding: 4px;
}
.chat-hdr button:hover { color: #fff; }

.chat-quick-chips {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #0d0d0d;
  border-bottom: 1px solid #1c1c1c;
  overflow-x: auto;
}
.chip-btn {
  background: #161616;
  border: 1px solid #282828;
  color: #888;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  cursor: pointer;
  transition: all .15s;
}
.chip-btn:hover { background: #fff; color: #000; border-color: #fff; }

.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
}
.cmsg.bot { align-items: flex-start; display: flex; flex-direction: column; }
.cmsg.user { align-items: flex-end; display: flex; flex-direction: column; }
.cbubble {
  background: #181818;
  border: 1px solid #282828;
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  font-size: .84rem;
  color: #ccc;
  max-width: 92%;
  line-height: 1.55;
}
.cmsg.user .cbubble {
  background: #fff;
  border: none;
  color: #000;
  border-radius: 14px 14px 4px 14px;
}
.chat-action-btn {
  display: inline-block;
  margin-top: 8px;
  background: #fff;
  color: #000 !important;
  font-size: .76rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.chat-action-btn:hover { background: #ddd; }

.chat-inp {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #1c1c1c;
  background: #141414;
}
.chat-inp input {
  flex: 1;
  background: #0a0a0a;
  border: 1px solid #282828;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .84rem;
  color: #fff;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.chat-inp input:focus { border-color: #fff; }
.chat-inp button {
  width: 38px; height: 38px;
  background: #fff;
  border: none;
  border-radius: 10px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pv-grid { grid-template-columns: 1fr; }
  .pv-banner-wrap { height: 260px; }
}

@media (max-width: 960px) {
  .store-layout { grid-template-columns: 1fr; }
  .store-sidebar { position: static; max-height: none; }
  .hero-split {
    flex-direction: column;
    padding-top: 90px;
    height: auto;
    min-height: 100vh;
  }
  .hero-left {
    max-width: 100%;
    height: 48vh;
    justify-content: center;
  }
  .char-wrap { justify-content: center; transform: none; padding-bottom: 20px; }
  .char-img {
    height: 46vh;
    transform: none;
    animation: none;
  }
  .hero-right {
    max-width: 100%;
    margin-left: 0;
    padding: 0 4vw 40px;
    align-items: center;
    text-align: center;
  }
  .hero-badge { margin: 0 auto 18px; }
  .hero-stats { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .cards-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .pv-details-row { grid-template-columns: 1fr; }
  .pv-features-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .chat-panel { width: 310px; }
  .pv-modal-container { padding: 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns button, .hero-btns a { width: 100%; }
  .footer-cols { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ── SOCIAL LOGIN BUTTONS (DISCORD & GOOGLE) ── */
.social-login-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.btn-social {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.btn-discord {
  background: #5865F2;
  color: #fff;
}
.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88,101,242,0.35);
}
.btn-google {
  background: #181818;
  color: #fff;
  border-color: #2e2e2e;
}
.btn-google:hover {
  background: #222;
  border-color: #444;
  transform: translateY(-2px);
}

.login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
  color: #444;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #222;
}
.login-divider span {
  padding: 0 12px;
}

/* ============================================================
   USER PROFILE MODAL & NAVBAR USER BADGE (PREMIUM SLEEK UI)
   ============================================================ */
.profile-modal-box {
  max-width: 420px;
  padding: 34px 28px;
  background: #0f0f0f;
  border: 1.5px solid #262626;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  text-align: center;
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}

.profile-avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: 0 0 24px rgba(255,255,255,0.18);
  background: #181818;
}

.profile-online-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  border: 3.5px solid #0f0f0f;
  box-shadow: 0 0 10px #22c55e;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.profile-email {
  font-size: .88rem;
  color: #777;
  margin-bottom: 14px;
}

.profile-badges-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.profile-badge-verified {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.28);
  font-size: .74rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: .04em;
}

.profile-badge-provider {
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  border: 1px solid #333;
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  text-transform: capitalize;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.pstat-box {
  background: #151515;
  border: 1px solid #252525;
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pstat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.pstat-lbl {
  font-size: .72rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.profile-actions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  text-align: left;
}

.btn-profile-action {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #141414;
  border: 1px solid #242424;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all .2s;
  color: #fff;
  text-decoration: none;
  width: 100%;
}
.btn-profile-action:hover {
  background: #1c1c1c;
  border-color: #3a3a3a;
  transform: translateX(4px);
}

.paction-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.paction-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.paction-txt strong {
  font-size: .88rem;
  color: #fff;
}
.paction-txt small {
  font-size: .75rem;
  color: #777;
}

.paction-arrow {
  color: #555;
  font-size: 1.1rem;
}

.profile-footer {
  border-top: 1px solid #1f1f1f;
  padding-top: 18px;
}

.btn-signout {
  width: 100%;
  height: 44px;
  background: transparent;
  border: 1.5px solid #382020;
  color: #f87171;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s;
}
.btn-signout:hover {
  background: rgba(239, 68, 68, 0.14);
  border-color: #ef4444;
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar user button styling */
.nav-user-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #141414 !important;
  border: 1.5px solid #2e2e2e !important;
  color: #fff !important;
  padding: 6px 14px 6px 8px !important;
  border-radius: 99px !important;
  cursor: pointer !important;
  transition: all .2s !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
}
.nav-user-btn:hover {
  border-color: #fff !important;
  background: #1f1f1f !important;
  transform: translateY(-2px);
}
.nav-user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #fff;
}
.nav-user-chevron {
  font-size: .65rem;
  color: #888;
  margin-left: 2px;
}


/* ============================================================
   NEW: CARD SLIDE-DOWN ANIMATION (UP TO DOWN ON SECTION CHANGE)
   ============================================================ */
@keyframes cardSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-34px);
  }
  60% {
    opacity: 0.9;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pcard.slide-down-anim {
  animation: cardSlideDown 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── NAVBAR BUTTONS (LANG TOGGLE & CART) ── */
.btn-lang-toggle, .btn-cart-nav {
  background: #121212;
  border: 1px solid #282828;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-lang-toggle:hover, .btn-cart-nav:hover {
  background: #1c1c1c;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.08);
}
.lang-ico, .cart-nav-ico {
  font-size: 1rem;
}
.cart-badge-count {
  background: #ffffff;
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 99px;
  min-width: 18px;
  text-align: center;
  line-height: 1.4;
  transition: transform 0.2s;
}
.cart-badge-count.pop {
  transform: scale(1.3);
}

.mobile-menu-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 6px;
}
.mobile-menu-toolbar .btn-lang-toggle,
.mobile-menu-toolbar .btn-cart-nav {
  flex: 1;
  justify-content: center;
}

/* ── CARD ADD TO CART & PRICE ROW ── */
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  margin-bottom: 8px;
}
.btn-card-addcart {
  background: #1a1a1a;
  border: 1px solid #333333;
  color: #eeeeee;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}
.btn-card-addcart:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(255,255,255,0.18);
}
.pv-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.pv-addcart-btn {
  background: transparent;
  border: 1.5px solid #333333;
  color: #ffffff;
}
.pv-addcart-btn:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   CART DRAWER & OVERLAY STYLES
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -490px;
  width: 450px;
  max-width: 94vw;
  height: 100vh;
  background: #0d0d0d;
  border-left: 1.5px solid #222222;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 50px rgba(0, 0, 0, 0.9);
}
.cart-drawer.open {
  right: 0;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #1a1a1a;
  background: #141414;
}
.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-title-icon {
  font-size: 1.25rem;
}
.cart-header-title h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}
.cart-items-chip {
  background: #222222;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
}
.cart-close-btn {
  background: #181818;
  border: 1px solid #2a2a2a;
  color: #777777;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.cart-close-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-empty {
  text-align: center;
  padding: 60px 16px;
}
.cart-empty-icon {
  font-size: 3.8rem;
  opacity: 0.25;
  margin-bottom: 16px;
}
.cart-empty h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.cart-empty p {
  font-size: 0.86rem;
  color: #666666;
  margin-bottom: 22px;
  line-height: 1.6;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #141414;
  border: 1px solid #222222;
  border-radius: 14px;
  padding: 14px;
  transition: border-color 0.2s;
}
.cart-item:hover {
  border-color: #333333;
}
.cart-item-img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  background: #090909;
  border: 1px solid #282828;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #1e1e1e;
  border: 1px solid #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  transition: all 0.15s;
}
.cart-qty-btn:hover {
  background: #ffffff;
  color: #000000;
}
.cart-qty-val {
  font-size: 0.84rem;
  font-weight: 800;
  color: #ffffff;
  min-width: 20px;
  text-align: center;
}
.cart-item-del {
  background: transparent;
  border: none;
  color: #555555;
  cursor: pointer;
  padding: 8px;
  font-size: 1rem;
  transition: color 0.2s;
}
.cart-item-del:hover {
  color: #ef4444;
}

.cart-footer {
  border-top: 1px solid #1c1c1c;
  background: #131313;
  padding: 22px 24px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #888888;
  margin-bottom: 8px;
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px dashed #262626;
  margin-bottom: 18px;
}
.cart-actions-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-cart-stripe {
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-cart-stripe:hover {
  background: #eaeaea;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.22);
}
.btn-clear-cart {
  color: #666666;
  font-size: 0.8rem;
  cursor: pointer;
  background: transparent;
  border: none;
}
.btn-clear-cart:hover {
  color: #ffffff;
}
.cart-sec-notice {
  text-align: center;
  font-size: 0.72rem;
  color: #555555;
  margin-top: 12px;
}

/* ============================================================
   ARABIC TYPOGRAPHY & BIG WORDS (STRICTLY LTR LAYOUT)
   CRITICAL: DO NOT FLIP DIRECTIONS TO RTL!
   ============================================================ */
body.lang-ar {
  font-family: 'Cairo', 'Inter', sans-serif;
}
body.lang-ar .hero-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.22;
  letter-spacing: normal;
}
body.lang-ar .title-outline {
  font-family: 'Cairo', sans-serif;
  letter-spacing: normal;
}
body.lang-ar .brand-label {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.15rem;
}
body.lang-ar .hero-sub {
  font-size: 1.02rem;
  line-height: 1.85;
}
body.lang-ar .sec-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  letter-spacing: normal;
}
body.lang-ar .sec-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}
body.lang-ar .active-cat-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
}
body.lang-ar .card-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.45;
}
body.lang-ar .cat-name {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}
body.lang-ar .cat-group-header span {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}
body.lang-ar .why-card h3,
body.lang-ar .support-left h2,
body.lang-ar .pv-title,
body.lang-ar .modal-box h2,
body.lang-ar .cart-header-title h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
}
body.lang-ar .btn-white,
body.lang-ar .btn-outline,
body.lang-ar .btn-ghost,
body.lang-ar .nav-link,
body.lang-ar .mobile-link,
body.lang-ar .btn-card-addcart {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}


/* ============================================================
   AMBIENT BACKGROUND LIGHTING EFFECTS (DYNAMIC GLOW & DEPTH)
   ============================================================ */
.bg-lights-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Top center luminous beam / ambient spotlight */
.orb-top-spotlight {
  width: 900px;
  height: 500px;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16) 0%, rgba(210, 225, 255, 0.06) 45%, rgba(0, 0, 0, 0) 75%);
  filter: blur(90px);
  animation: spotlightBreathe 8s ease-in-out infinite alternate;
}

/* Radiant glow behind character and hero title */
.orb-hero-glow {
  width: 650px;
  height: 650px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
  filter: blur(105px);
  animation: orbFloat1 13s ease-in-out infinite alternate;
}

/* Floating luminous orb on the right (behind catalog & cards) */
.orb-center-right {
  width: 750px;
  height: 750px;
  top: 40%;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(200, 220, 255, 0.04) 50%, transparent 70%);
  filter: blur(130px);
  animation: orbFloat2 17s ease-in-out infinite alternate;
}

/* Subtle glow orb on bottom left (behind why us & support) */
.orb-bottom-left {
  width: 700px;
  height: 700px;
  bottom: 5%;
  left: -90px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, rgba(220, 235, 255, 0.03) 55%, transparent 70%);
  filter: blur(135px);
  animation: orbFloat3 19s ease-in-out infinite alternate;
}

/* Dynamic breathing accent light */
.orb-pulse {
  width: 480px;
  height: 480px;
  top: 30%;
  left: 62%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 65%);
  filter: blur(95px);
  animation: pulseLight 9s ease-in-out infinite alternate;
}

@keyframes spotlightBreathe {
  0%   { opacity: 0.75; transform: translateX(-50%) scale(1); }
  100% { opacity: 1.0;  transform: translateX(-50%) scale(1.14); }
}

@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(45px, -35px) scale(1.15); }
  100% { transform: translate(-35px, 45px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-55px, 45px) scale(1.12); }
  100% { transform: translate(35px, -45px) scale(0.92); }
}

@keyframes orbFloat3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(35px, -35px) scale(1.10); }
  100% { transform: translate(-45px, 30px) scale(0.95); }
}

@keyframes pulseLight {
  0%   { opacity: 0.45; transform: scale(0.92); }
  50%  { opacity: 0.95; transform: scale(1.22); }
  100% { opacity: 0.55; transform: scale(1.02); }
}
