/* تنظیمات پایه */
html {
  font-size: 16px;            /* فونت کلی بزرگ‌تر */
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #020617;
  --card: #020617;
  --border: #1f2937;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #22d3ee;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
  color: var(--text-main);
  direction: rtl;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;           /* خواناتر و درشت‌تر */
}

/* هدر */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 2rem;
  background: rgba(2, 6, 23, 0.96);
  border-bottom: 1px solid #111827;
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;          /* بزرگ‌تر از قبل */
  letter-spacing: 0.25em;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 0.8rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.98rem;
  color: var(--text-muted);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  transition: 0.2s;
}

.nav-link:hover {
  background: #0b1120;
  color: #ffffff;
}

.auth-buttons {
  display: flex;
  gap: 0.5rem;
}

/* دکمه‌ها */

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #22d3ee, #38bdf8);
  color: #020617;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid #4b5563;
}

.btn-ghost:hover {
  background: #020617;
}

/* محتوا */

.main {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* هیرو */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.8rem;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero-text h1 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.hero-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.1rem;
  padding: 1.2rem;
  border: 1px solid #1f2937;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero-card ul {
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-card li {
  margin-bottom: 0.35rem;
}

/* سکشن‌های عمومی */

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

/* کارت‌ها و گرید دسته‌بندی‌ها */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

/* گرید مخصوص حوزه‌های اصلی (۳ کارت اول صفحه) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.1rem;
  padding: 1.1rem;
  border: 1px solid #1f2937;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.card-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-main);
}

.card-list li {
  margin-bottom: 0.25rem;
}


/* FAQ */

.faq-item {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid #1f2937;
  margin-bottom: 0.7rem;
}

.faq-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* قوانین */

.rules-list {
  list-style: disc;
  padding-right: 1.2rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.rules-list li {
  margin-bottom: 0.35rem;
}

/* تماس با ما */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-form {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
}

.contact-form label {
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  background: #020617;
  border-radius: 0.6rem;
  border: 1px solid #1f2937;
  padding: 0.5rem 0.7rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-info {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.contact-info ul {
  list-style: none;
  margin: 0.4rem 0 0.7rem;
}

.contact-info li {
  margin-bottom: 0.25rem;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.contact-note {
  font-size: 0.85rem;
}

/* فوتر */

.footer {
  border-top: 1px solid #111827;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

/* ریسپانسیو */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .auth-buttons {
    order: 2;
  }

  .main {
    padding-inline: 1rem;
  }
}
/* ---------------- CYBER GLOW EFFECT ---------------- */

.cyber-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

/* نور خطی اطراف کارت */
.cyber-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;

  background: linear-gradient(
    130deg,
    rgba(34, 211, 238, 0.9),   /* آبی نئونی */
    rgba(56, 189, 248, 0.4),
    rgba(168, 85, 247, 0.55), /* بنفش */
    rgba(34, 211, 238, 0.9)
  );

  filter: blur(14px);
  opacity: 0.25;
  transition: opacity 0.35s ease-out, filter 0.35s ease-out;

  animation: neonPulse 5.5s infinite alternate ease-in-out;
}

/* محتوای داخل کارت روی نور نیفته */
.cyber-card > * {
  position: relative;
  z-index: 2;
}

/* هنگام هاور نور تقویت شود */
.cyber-card:hover::before {
  opacity: 0.8;
  filter: blur(22px);
}

/* انیمیشن تپش نور */
@keyframes neonPulse {
  0% {
    opacity: 0.15;
    filter: blur(10px);
  }
  50% {
    opacity: 0.35;
    filter: blur(16px);
  }
  100% {
    opacity: 0.2;
    filter: blur(12px);
  }
}
.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.store-filters-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-chip {
  padding-inline: 0.9rem;
  padding-block: 0.35rem;
  font-size: 0.9rem;
}

.product-price-tag {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* --------- AUTH PAGES --------- */

.auth-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 160px);
}

.auth-card {
  max-width: 480px;
  width: 100%;
  margin-top: 2rem;
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid #1f2937;
}

.auth-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.auth-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.auth-form label {
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.auth-form input {
  background: #020617;
  border-radius: 0.6rem;
  border: 1px solid #1f2937;
  padding: 0.5rem 0.7rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.auth-checkbox input {
  width: 15px;
  height: 15px;
}

.auth-submit {
  margin-top: 0.6rem;
  width: 100%;
  justify-content: center;
}

.auth-extra {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.auth-extra a {
  color: var(--accent);
  text-decoration: none;
}

.auth-small-text {
  font-size: 0.8rem;
}

/* ریسپانسیو کوچک‌تر */
@media (max-width: 640px) {
  .auth-card {
    margin-top: 1.5rem;
    padding-inline: 1rem;
  }
}
.orders-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
}

.order-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.order-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.order-note {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.order-status {
  font-weight: 600;
}

.order-status-pending {
  color: #facc15;
}

.order-status-processing {
  color: #38bdf8;
}

.order-status-done {
  color: #22c55e;
}

.order-status-canceled {
  color: #f97373;
}
.user-chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.9rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.8);
}
.admin-orders-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-orders-table th,
.admin-orders-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  text-align: right;
}

.admin-orders-table th {
  background: rgba(15, 23, 42, 0.9);
  position: sticky;
  top: 0;
}

.btn-sm {
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
}

.status-select {
  background: #020617;
  border-radius: 0.5rem;
  border: 1px solid #1f2937;
  color: var(--text-main);
  font-size: 0.8rem;
  padding: 0.15rem 0.4rem;
  margin-left: 0.3rem;
}

/* رنگ‌ها قبلاً برای order-status ها ساختیم، اگر نداری: */
.order-status-pending { color: #facc15; }
.order-status-processing { color: #38bdf8; }
.order-status-done { color: #22c55e; }
.order-status-canceled { color: #f97373; }
.product-thumb-wrap {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.product-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 180px;
}
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: none; /* اول مخفی، بعد با JS می‌شود flex */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Sidebar */

.dashboard-sidebar {
  padding: 1.4rem 1.3rem;
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.sidebar-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(80, 200, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-user-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar-username {
  font-weight: 600;
  font-size: 0.95rem;
}

.sidebar-email {
  font-size: 0.8rem;
  opacity: 0.7;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-link {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 0.7rem;
  font-size: 0.88rem;
  text-decoration: none;
  opacity: 0.8;
  transition: background 0.15s ease, opacity 0.15s ease, transform 0.1s ease;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
  transform: translateX(-2px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, #3f46ff, #35c1ff);
  opacity: 1;
}

.sidebar-logout {
  width: 100%;
  margin-top: 1.3rem;
  font-size: 0.85rem;
}

/* Content */

.dashboard-content .panel-grid {
  margin-top: 0;
}

.panel-card {
  padding: 1.1rem 1.2rem;
  text-align: left;
}

.panel-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.panel-card p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.panel-card-cta {
  border: 1px dashed rgba(80, 200, 255, 0.6);
}

/* ریسپانسیو */

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .dashboard-hero-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}
/*miaw-- */
/* ستون لینک‌ها (سمت چپ) */
.panel-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.panel-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.panel-links a:hover {
  opacity: 1;
  transform: translateX(-2px);
}

/* کارت پروفایل سمت راست */
.panel-profile {
  padding: 1.6rem 1.8rem;
  min-width: 320px;
}

.panel-profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.panel-profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(80, 200, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-profile-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.panel-profile-email {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* منوی داخل کارت پروفایل */
.panel-profile-menu {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.panel-profile-menu a {
  text-decoration: none;
  opacity: 0.8;
}

.panel-profile-menu a:hover {
  opacity: 1;
}

/* دکمه خروج */
.panel-profile .btn-logout {
  width: 100%;
  margin-top: 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* روی موبایل ستون‌ها زیر هم بیان */
@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}
/* ===== Dashboard / Panel ===== */

.dashboard {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 1.5rem 3rem;
}

/* کارت بالای پنل */
.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(80, 200, 255, 0.25), transparent 55%),
              radial-gradient(circle at bottom right, rgba(120, 80, 255, 0.25), transparent 55%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.dashboard-title {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.dashboard-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
}

.dashboard-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(80, 200, 255, 0.12);
  border: 1px solid rgba(80, 200, 255, 0.6);
}

.badge-soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

/* چیدمان دو ستونه: سایدبار + محتوا */
.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1.7rem;
}

/* ===== Sidebar ===== */

.dashboard-sidebar {
  padding: 1.4rem 1.3rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, rgba(80, 200, 255, 0.22), transparent 55%),
              radial-gradient(circle at bottom, rgba(130, 80, 255, 0.28), transparent 55%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.sidebar-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(80, 200, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-user-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar-username {
  font-weight: 600;
  font-size: 0.95rem;
}

.sidebar-email {
  font-size: 0.8rem;
  opacity: 0.7;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-link {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 0.7rem;
  font-size: 0.88rem;
  text-decoration: none;
  opacity: 1;
  transition: background 0.15s ease, opacity 0.15s ease, transform 0.1s ease;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.018);
  opacity: 1;
  transform: translateX(-2px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, #3f46ff, #35c1ff);
  opacity: 1;
}

.sidebar-logout {
  width: 100%;
  margin-top: 1.3rem;
  font-size: 0.85rem;
}

/* ===== Content (ستون راست) ===== */

.dashboard-content .panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 0;
}

.panel-card {
  padding: 1.1rem 1.2rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, rgba(80, 200, 255, 0.16), transparent 60%),
              radial-gradient(circle at bottom right, rgba(130, 80, 255, 0.22), transparent 60%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  text-align: right;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.panel-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.panel-card p {
  font-size: 0.85rem;
  opacity: 0.82;
}

.panel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
  border-color: rgba(80, 200, 255, 0.7);
}

.panel-card-cta {
  border-style: dashed;
  border-color: rgba(80, 200, 255, 0.7);
}

/* ریسپانسیو */
@media (max-width: 900px) {
  .dashboard {
    padding: 0 1rem 2.5rem;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .dashboard-hero-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}
/* مهم: لایه‌های تزئینی روی کارت‌ها کلیک را نباید بگیرند */
.cyber-card::before,
.cyber-card::after,
.panel-card::before,
.panel-card::after {
  pointer-events: none;
}

/* مطمئن شو خود کارت کلیک‌پذیر است */
.panel-card,
.cyber-card {
  position: relative;
  pointer-events: auto;
}


/* حالت پیش‌فرض: دارک (همین الان سایتت) */

/* حالت روشن */
body.light-mode {
  background: #f3f4f6;
  color: #0f172a;
}

/* کارت‌ها در حالت روشن */
body.light-mode .cyber-card,
body.light-mode .dashboard,
body.light-mode .dashboard-hero,
body.light-mode .dashboard-content,
body.light-mode .dashboard-sidebar {
  background: #ffffff !important;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
}

/* هدر روشن */
body.light-mode .header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

body.light-mode .nav-link {
  color: #0f172a;
}

body.light-mode .nav-link:hover {
  color: #2563eb;
}

/* دکمه‌ها در حالت روشن */
body.light-mode .btn-primary {
  background: #111827;
  color: #f9fafb;
}

body.light-mode .btn-primary:hover {
  background: #0f172a;
}

body.light-mode .btn-ghost {
  border-color: rgba(148, 163, 184, 0.8);
  color: #111827;
}

/* ورودی‌ها در حالت روشن */
body.light-mode input[type="text"],
body.light-mode input[type="email"],
body.light-mode input[type="password"],
body.light-mode textarea,
body.light-mode select {
  background: #f9fafb;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.7);
}
/* --- لندینگ فروشگاه --- */
.store-landing {
  padding-top: 3rem;
}

.store-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.store-title-block {
  flex: 1;
  min-width: 260px;
}

/* رَپر اسلایدر */
.offers-wrapper {
  flex: 1.2;
  min-width: 280px;
}

/* خود اسلایدر */
.offers-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, #1c2440, #050816);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 150px;
  padding: 1.5rem;
}

.offers-loading,
.offers-empty {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* اسلایدها */
.offer-slide {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.offer-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.offer-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.offer-discount-badge {
  display: inline-block;
  background: rgba(32, 226, 150, 0.1);
  border: 1px solid rgba(32, 226, 150, 0.6);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.offer-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.offer-link {
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

/* دات‌های اسلایدر */
.offers-dots {
  display: flex;
  justify-content: center;
  margin-top: 0.6rem;
  gap: 0.3rem;
}

.offers-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0.4;
  cursor: pointer;
}

.offers-dot.active {
  opacity: 1;
}

/* سه کارت اصلی فروشگاه */
.store-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.store-card {
  background: rgba(10, 15, 35, 0.95);
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
  border-color: rgba(32, 226, 150, 0.5);
}

.store-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.store-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.store-card-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.store-card-cta {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ریسپانسیو */
@media (max-width: 900px) {
  .store-top {
    flex-direction: column;
  }

  .store-sections {
    grid-template-columns: 1fr;
  }
}
/* هیرو جدید */
.hero-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.hero-visual {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.hero-text {
  flex: 1.1;
}

/* مترک‌ها */
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-metric {
  padding: 0.6rem 0.9rem;
  border-radius: 0.8rem;
  background: rgba(9, 13, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 140px;
}

.hero-metric-label {
  font-size: 0.75rem;
  opacity: 0.6;
  display: block;
}

.hero-metric-value {
  font-size: 0.9rem;
}

/* کارت هیرو */
.hero-card-main {
  max-width: 360px;
}

.hero-card-badge {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.8rem;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.hero-card-pill {
  font-size: 0.75rem;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  background: rgba(32, 226, 150, 0.1);
}

.hero-card-foot {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* چیپ‌های شناور */
.hero-floating-card {
  position: absolute;
  left: -10px;
  bottom: -10px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-floating-chip {
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* سه دسته اصلی خانه */
.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.home-category-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  border-color: rgba(32, 226, 150, 0.6);
}

.home-category-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.home-category-cta {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.how-item {
  position: relative;
  padding-top: 1.5rem;
}

.how-step {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* اعتماد */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

/* ریسپانسیو */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
  }

  .home-categories-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* ====== HERO LANDING ====== */

.hero-landing {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* پس‌زمینه نئونی */
.hero-bg-circle {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-circle-1 {
  width: 280px;
  height: 280px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle at center, #3b82f6, #050816);
}

.hero-bg-circle-2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle at center, #22c55e, #050816);
}

.hero-bg-grid {
  position: absolute;
  inset: 10%;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* محتوای هیرو */
.hero-landing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
  align-items: center;
}

.hero-landing-text {
  flex: 1.05;
  min-width: 260px;
}

.hero-landing-text h1 {
  font-size: 2.1rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.hero-highlight {
  color: #22c55e;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.hero-landing-text p {
  max-width: 420px;
  opacity: 0.82;
}

/* دکمه‌ها */
.hero-main-cta {
  font-size: 0.95rem;
}

.hero-secondary-cta {
  font-size: 0.9rem;
}

/* ردیف اعتماد زیر دکمه‌ها */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-trust-item {
  padding: 0.5rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(9, 13, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-trust-label {
  display: block;
  font-size: 0.7rem;
  opacity: 0.6;
}

.hero-trust-value {
  font-size: 0.85rem;
}

/* سمت چپ: صحنه انیمیشنی */
.hero-landing-visual {
  flex: 1;
  min-width: 260px;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

/* کارت سبد خرید */
.hero-card-main {
  width: 340px;
  animation: floatY 6s ease-in-out infinite;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.hero-card-status {
  font-size: 0.75rem;
  opacity: 0.7;
}

.hero-card-line {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.hero-card-tag {
  justify-self: start;
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
}

.hero-card-price {
  font-size: 0.78rem;
  opacity: 0.8;
}

.hero-card-footer {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* کارت پرداخت */
.hero-paycard {
  position: absolute;
  top: 12%;
  left: -15%;
  width: 210px;
  height: 130px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1f2937, #0f172a);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.9rem;
  color: #e5e7eb;
  animation: floatYSmall 5s ease-in-out infinite;
}

.hero-paycard-chip {
  width: 34px;
  height: 24px;
  border-radius: 0.4rem;
  background: radial-gradient(circle at 30% 30%, #fbbf24, #b45309);
  margin-bottom: 0.7rem;
}

.hero-paycard-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.hero-paycard-row-num {
  margin-top: 0.7rem;
  font-size: 0.8rem;
}

/* لوگوهای شناور */
.hero-floating-badge {
  position: absolute;
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  backdrop-filter: blur(6px);
}

.hero-badge-1 {
  top: 8%;
  right: 5%;
  animation: floatOrbit1 9s ease-in-out infinite;
}

.hero-badge-2 {
  bottom: 10%;
  right: 8%;
  animation: floatOrbit2 10s ease-in-out infinite;
}

.hero-badge-3 {
  bottom: 18%;
  left: 5%;
  animation: floatOrbit3 8s ease-in-out infinite;
}

.hero-badge-4 {
  top: 18%;
  left: 10%;
  animation: floatOrbit4 11s ease-in-out infinite;
}

/* انیمیشن‌ها */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatYSmall {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes floatOrbit1 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-8px, 6px); }
  100% { transform: translate(0, 0); }
}
@keyframes floatOrbit2 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(10px, -4px); }
  100% { transform: translate(0, 0); }
}
@keyframes floatOrbit3 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-6px, -6px); }
  100% { transform: translate(0, 0); }
}
@keyframes floatOrbit4 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(6px, 8px); }
  100% { transform: translate(0, 0); }
}

/* ریسپانسیو هیرو */
@media (max-width: 900px) {
  .hero-landing-inner {
    flex-direction: column;
  }

  .hero-landing-text h1 {
    font-size: 1.6rem;
  }

  .hero-paycard {
    left: 5%;
  }
}
/* ===== HERO LANDING ===== */
.hero-landing {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(56,189,248,0.18), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(45,212,191,0.2), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.hero-col {
  min-width: 260px;
}

.hero-col-text {
  flex: 1.1;
}

}
.hero-col-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* کارت‌ها از سمت راست چیده بشن */
  gap: 1rem;                 /* فاصله بین کارت اصلی و کارت بانکی */
}

.hero-pill {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}

.hero-col-text h1 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  max-width: 420px;
  opacity: 0.85;
  margin-bottom: 1.1rem;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.hero-badge {
  padding: 0.45rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(8,12,30,0.9);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-badge-label {
  display: block;
  font-size: 0.7rem;
  opacity: 0.6;
}

.hero-badge-value {
  font-size: 0.85rem;
}

/* کارت اصلی هیرو */
.hero-main-card {
  width: 340px;
  animation: floatY 6s ease-in-out infinite;
}

.hero-main-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.hero-main-card-status {
  font-size: 0.75rem;
  opacity: 0.7;
}

.hero-main-card-line {
  display: grid;
  grid-template-columns: 1.5fr auto auto;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.hero-main-card-tag {
  justify-self: start;
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(59,130,246,0.18);
}

.hero-main-card-price {
  font-size: 0.78rem;
  opacity: 0.8;
}

.hero-main-card-footer {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  opacity: 0.85;
}

/* کارت شبیه کارت بانکی */
.hero-pay-card {
  position: relative; /* دیگه روی بقیه چیزها شناور نباشه */
  width: 260px;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  margin-right: 0.3rem;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.85);
  color: #e5e7eb;
  animation: floatYSmall 5s ease-in-out infinite;
  overflow: hidden;
}


.hero-pay-chip {
  width: 34px;
  height: 24px;
  border-radius: 0.4rem;
  background: radial-gradient(circle at 30% 30%, #fbbf24, #b45309);
  margin-bottom: 0.7rem;
}

.hero-pay-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.hero-pay-row-num {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

/* لوگوهای شناور */
.hero-floating-logo {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 6px;
}

.hero-floating-logo img {
  max-width: 100%;
  max-height: 100%;
}

.hero-logo-1 { top: 6%; right: 4%; animation: floatOrbit1 9s ease-in-out infinite; }
.hero-logo-2 { bottom: 10%; right: 8%; animation: floatOrbit2 10s ease-in-out infinite; }
.hero-logo-3 { bottom: 18%; left: 4%; animation: floatOrbit3 8s ease-in-out infinite; }
.hero-logo-4 { top: 22%; left: 10%; animation: floatOrbit4 11s ease-in-out infinite; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatYSmall {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes floatOrbit1 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-8px,4px); }
}
@keyframes floatOrbit2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(10px,-4px); }
}
@keyframes floatOrbit3 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-6px,-6px); }
}
@keyframes floatOrbit4 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(6px,8px); }
}

/* ===== محصولات پیشنهادی با لوگو ===== */
.section-products {
  padding-top: 2.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}


.product-card {
  text-align: center;
}

.product-logo-wrap {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.7rem;
}

.product-logo {
  max-height: 50px;
  max-width: 80%;
}

.product-btn {
  margin-top: 0.8rem;
  width: 100%;
}

/* ===== چرا گلیچ (اسلایدر) ===== */
.section-why {
  padding-top: 2.5rem;
}

.why-slider {
  margin-top: 1.4rem;
  padding: 1.4rem 1.6rem;
}

.why-slide h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.why-slide p {
  opacity: 0.85;
  font-size: 0.9rem;
}

.why-icon {
  font-size: 1.4rem;
}

.why-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  opacity: 0.4;
}

.why-dot.active {
  opacity: 1;
}

/* ===== FAQ کشویی ===== */
.section-faq .faq-list {
  margin-top: 1.4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-radius: 0.9rem;
  background: rgba(10,15,35,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.8rem 1rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  cursor: pointer;
  color: inherit;
}

.faq-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.9rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 0.6rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
/* ===== ریسپانسیو ===== */
@media (max-width: 1000px) {
  .hero-layout {
    flex-direction: column;
  }
  .hero-col-text h1 {
    font-size: 1.7rem;
  }
}

/* ===== چرا گلیچ (استایل اسلایدر) ===== */
.section-why .why-slider {
  background: radial-gradient(circle at top left, rgba(56,189,248,0.25), rgba(15,23,42,0.95));
  border: 1px solid rgba(148,163,184,0.4);
}

.section-why .why-slide h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}

.section-why .why-icon {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}
/* ===== HERO VIRTUAL NUMBERS ===== */

.hero-col-text.cyber-card {
  padding: 1.4rem 1.6rem;
  border-radius: 1.5rem;
}

.hero-col-text h1 {
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.hero-virtual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.hero-virtual-pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.45);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-virtual-label {
  opacity: 0.6;
}

.hero-virtual-value {
  font-size: 0.85rem;
}

/* ستون کارت شماره مجازی */
.hero-col-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

/* کارت اصلی شماره مجازی */
.hero-virtual-card {
  width: 360px;
  padding: 1.2rem 1.3rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top, rgba(56,189,248,0.35), rgba(15,23,42,0.98));
  border: 1px solid rgba(56,189,248,0.5);
  box-shadow: 0 22px 50px rgba(15,23,42,0.9);
}

.hero-virtual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.hero-virtual-badge {
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.7);
  font-size: 0.75rem;
}

.hero-virtual-service {
  opacity: 0.8;
  font-size: 0.85rem;
}

/* ردیف شماره */
.hero-virtual-number {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.9rem;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.55);
  margin-bottom: 0.8rem;
}

.hero-virtual-prefix {
  font-weight: 600;
}

.hero-virtual-digits {
  font-family: monospace;
  font-size: 0.95rem;
}

.hero-virtual-country {
  margin-right: auto;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* لیست کشورها */
.hero-virtual-rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.hero-virtual-row {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr auto;
  gap: 0.4rem;
  font-size: 0.82rem;
  align-items: center;
}

.hero-virtual-row-note {
  opacity: 0.7;
  font-size: 0.78rem;
}

.hero-virtual-price {
  font-size: 0.8rem;
  text-align: left;
  opacity: 0.9;
}

/* فوتر کارت */
.hero-virtual-footer {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(148,163,184,0.5);
  font-size: 0.78rem;
  opacity: 0.85;
}

/* چیپ‌های زیر کارت */
.hero-virtual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.hero-virtual-tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.45);
}

/* ریسپانسیو هیرو جدید */
@media (max-width: 1000px) {
  .hero-layout {
    flex-direction: column;
  }

  .hero-virtual-card {
    width: 100%;
  }

  .hero-col-text.cyber-card {
    padding: 1.2rem 1.1rem;
  }
}
