/* ==========================================================================
   FC Coin Store - Premium Dark Gaming RTL Design System (Production-Ready)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Core Backgrounds */
  --bg-base: #06080e;
  --bg-primary: #090c14;
  --bg-surface: #0f1422;
  --bg-card: #141b2d;
  --bg-card-hover: #1b243b;
  --bg-card-active: #202b45;
  --bg-glass: rgba(15, 20, 34, 0.75);
  --bg-glass-heavy: rgba(10, 14, 24, 0.88);
  --bg-glass-light: rgba(255, 255, 255, 0.04);
  --bg-input: #0b0f19;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-glow-cyan: rgba(0, 240, 255, 0.45);
  --border-glow-gold: rgba(255, 183, 3, 0.45);
  --border-glow-emerald: rgba(0, 230, 118, 0.45);

  /* Primary Brand Accents */
  --accent-cyan: #00f0ff;
  --accent-cyan-light: #6df4ff;
  --accent-cyan-dark: #00b4d8;
  --accent-cyan-bg: rgba(0, 240, 255, 0.12);
  --accent-cyan-border: rgba(0, 240, 255, 0.3);

  /* Secondary Accents */
  --accent-gold: #ffb703;
  --accent-gold-light: #ffd166;
  --accent-gold-dark: #fb8500;
  --accent-gold-bg: rgba(255, 183, 3, 0.12);
  --accent-gold-border: rgba(255, 183, 3, 0.35);

  --accent-emerald: #00e676;
  --accent-emerald-bg: rgba(0, 230, 118, 0.12);
  --accent-emerald-border: rgba(0, 230, 118, 0.3);

  --accent-purple: #9d4edd;
  --accent-purple-light: #c77dff;
  --accent-purple-bg: rgba(157, 78, 221, 0.12);

  --accent-danger: #ff3366;
  --accent-danger-bg: rgba(255, 51, 102, 0.12);
  --accent-danger-border: rgba(255, 51, 102, 0.3);

  /* Typography Colors */
  --text-main: #f3f6fc;
  --text-primary: #ffffff;
  --text-secondary: #9aa8bd;
  --text-muted: #6b7a94;
  --text-subtle: #48546a;

  /* Typography Scale */
  --font-main: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-numeric: 'Vazirmatn', 'Segoe UI', sans-serif;

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow-cyan: 0 0 25px rgba(0, 240, 255, 0.25);
  --shadow-glow-gold: 0 0 25px rgba(255, 183, 3, 0.25);
  --shadow-glow-btn: 0 8px 20px rgba(0, 240, 255, 0.35);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   CSS Reset & Base Rules
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  direction: rtl;
  text-align: right;
  background-color: var(--bg-base);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 240, 255, 0.08), transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(157, 78, 221, 0.05), transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(255, 183, 3, 0.04), transparent 40%),
    linear-gradient(180deg, #090c14 0%, #06080e 100%);
  background-attachment: fixed;
  line-height: 1.75;
  overflow-x: hidden;
}

::selection {
  background: rgba(0, 240, 255, 0.25);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: #1e2638;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan-dark);
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.main-content {
  flex: 1;
  padding-top: 32px;
  padding-bottom: 70px;
}

/* Top Announcement Trust Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.08) 0%, rgba(255, 183, 3, 0.08) 50%, rgba(157, 78, 221, 0.08) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-size: 12.5px;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.top-announcement-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.45), rgba(255, 183, 3, 0.45), transparent);
}

.top-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: var(--transition);
}

.announcement-item:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(6, 8, 14, 0.95);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(157, 78, 221, 0.2));
  border: 1px solid var(--accent-cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  overflow: hidden;
  padding: 3px;
}

.brand-icon-box img,
.brand-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-badge {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
  color: #050811;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-item a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-item a:hover {
  color: #fff;
  background: var(--bg-glass-light);
}

.nav-item.active a {
  color: var(--accent-cyan);
  background: var(--accent-cyan-bg);
  border: 1px solid var(--accent-cyan-border);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header Cart Badge Button */
.cart-header-btn {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #050811;
  font-size: 11px;
  font-weight: 900;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.5);
}

/* Mobile Hamburger & Drawer */
.nav-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-toggle-btn:hover {
  background: var(--bg-card);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.mobile-close-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  padding: 6px 8px;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.mobile-nav-item a:hover,
.mobile-nav-item.active a {
  background: var(--accent-cyan-bg);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan-border);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  user-select: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-cyan-dark) 100%);
  color: #040810;
  box-shadow: 0 4px 18px rgba(0, 240, 255, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-cyan-light) 0%, var(--accent-cyan) 100%);
  box-shadow: 0 6px 24px rgba(0, 240, 255, 0.55);
  transform: translateY(-2px);
  color: #040810;
}

.btn-gold {
  background: linear-gradient(135deg, #ffd166 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  color: #080a10;
  box-shadow: 0 4px 18px rgba(255, 183, 3, 0.32);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffe08a 0%, #ffd166 50%, var(--accent-gold) 100%);
  box-shadow: 0 6px 24px rgba(255, 183, 3, 0.55);
  transform: translateY(-2px);
  color: #080a10;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-color);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.15);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--bg-glass-light);
  color: var(--text-main);
}

.btn-danger {
  background: linear-gradient(135deg, #ff4d79, var(--accent-danger));
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-danger:hover {
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.5);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 7px 15px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-icon-only {
  padding: 8px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Glassmorphism Cards & Containers
   ========================================================================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.glass-card:hover {
  border-color: var(--border-hover);
}

.glass-card-interactive:hover {
  border-color: var(--border-glow-cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-3px);
}

.glass-card-gold {
  border-color: var(--border-glow-gold);
  box-shadow: var(--shadow-glow-gold);
}

.glass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 22px;
}

.glass-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 100px;
  left: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--accent-cyan-border);
  color: var(--accent-cyan);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 26px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.15); }
  100% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.35); }
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 30%, #b8e2f2 70%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 38px;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-color);
  flex-shrink: 0;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-content {
  display: flex;
  flex-direction: column;
}

.hero-stat-val {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.hero-stat-lbl {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 2px;
}

/* ==========================================================================
   Grids & Layout Helpers
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Badges & Tags
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.badge-info {
  background: var(--accent-cyan-bg);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan-border);
}

.badge-gold, .badge-warning {
  background: var(--accent-gold-bg);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
}

.badge-success {
  background: var(--accent-emerald-bg);
  color: var(--accent-emerald);
  border: 1px solid var(--accent-emerald-border);
}

.badge-danger {
  background: var(--accent-danger-bg);
  color: var(--accent-danger);
  border: 1px solid var(--accent-danger-border);
}

.badge-purple {
  background: var(--accent-purple-bg);
  color: var(--accent-purple-light);
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.badge-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   Forms, Inputs & Validation
   ========================================================================== */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-label .required-star {
  color: var(--accent-danger);
  margin-right: 4px;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

/* Password Input & Toggle Button Component */
.password-input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-input-group .form-control {
  padding-left: 48px !important;
}

.password-toggle-btn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted, #7e8b9b);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm, 6px);
  transition: all 0.2s ease;
  z-index: 3;
  user-select: none;
  line-height: 1;
}

.password-toggle-btn:hover {
  color: var(--accent-cyan, #00f0ff);
  background: rgba(255, 255, 255, 0.08);
}

.password-toggle-btn:focus-visible {
  outline: 2px solid var(--accent-cyan, #00f0ff);
  outline-offset: 2px;
}

.password-toggle-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  pointer-events: none;
  vertical-align: middle;
}

.password-toggle-btn .icon-eye-off {
  display: none;
}

.password-toggle-btn.is-visible {
  color: var(--accent-cyan, #00f0ff);
}

.password-toggle-btn.is-visible .icon-eye {
  display: none !important;
}

.password-toggle-btn.is-visible .icon-eye-off {
  display: inline-block !important;
}


.form-control::placeholder {
  color: var(--text-subtle);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: var(--bg-surface);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.form-control:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #080a12;
}

.form-control-error {
  border-color: var(--accent-danger) !important;
  background: rgba(255, 51, 102, 0.04);
}

.form-control-error:focus {
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
}

.form-error {
  font-size: 12px;
  color: var(--accent-danger);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Checkbox & Radio Customization */
.custom-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input[type="checkbox"],
.custom-checkbox input[type="radio"] {
  accent-color: var(--accent-cyan);
  width: 17px;
  height: 17px;
  margin-top: 3px;
  cursor: pointer;
}

/* ==========================================================================
   Alerts & Toast Notifications
   ========================================================================== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  backdrop-filter: blur(12px);
  animation: slide-down 0.3s ease;
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.alert-success {
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid var(--accent-emerald-border);
  color: var(--accent-emerald);
}

.alert-error, .alert-danger {
  background: rgba(255, 51, 102, 0.12);
  border: 1px solid var(--accent-danger-border);
  color: var(--accent-danger);
}

.alert-warning {
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold);
}

.alert-close-btn {
  background: transparent;
  border: none;
  color: inherit;
  opacity: 0.7;
  cursor: pointer;
  padding: 4px;
  display: flex;
}

.alert-close-btn:hover {
  opacity: 1;
}

/* ==========================================================================
   Order Tracking & Stepper
   ========================================================================== */
.tracking-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 40px 0 36px;
}

.tracking-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 40px;
  left: 40px;
  height: 3px;
  background: var(--border-color);
  z-index: 1;
}

.tracking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.tracking-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tracking-step.active .tracking-dot {
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
  color: #000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
  animation: pulse-step 2s infinite;
}

@keyframes pulse-step {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 240, 255, 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 0 25px rgba(0, 240, 255, 0.9); }
  100% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 240, 255, 0.5); }
}

.tracking-step.completed .tracking-dot {
  border-color: var(--accent-emerald);
  background: var(--accent-emerald);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.4);
}

.tracking-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.tracking-step.active .tracking-label {
  color: var(--accent-cyan);
  font-weight: 800;
}

.tracking-step.completed .tracking-label {
  color: var(--text-main);
}

/* ==========================================================================
   Checkout Progress Bar (3-Steps)
   ========================================================================== */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.checkout-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.checkout-step-item.active {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan-bg);
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.2);
}

.checkout-step-item.completed {
  border-color: var(--accent-emerald-border);
  color: var(--accent-emerald);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.checkout-step-item.active .step-num {
  background: var(--accent-cyan);
  color: #000;
}

.checkout-step-item.completed .step-num {
  background: var(--accent-emerald);
  color: #000;
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: right;
}

.table th, .table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Coin Presets & Interactive Calculators
   ========================================================================== */
.coin-preset-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.coin-preset-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.coin-preset-btn:hover {
  border-color: var(--accent-cyan);
  color: #fff;
  background: var(--bg-card-hover);
}

.coin-preset-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.05));
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 35px;
  margin-top: auto;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(-4px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Trust Bar & Standardized Certificate Tiles Section */
.footer-trust-section {
  background: linear-gradient(135deg, rgba(14, 20, 36, 0.82) 0%, rgba(8, 12, 22, 0.94) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md, 16px);
  padding: 26px 30px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.footer-trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.footer-trust-info {
  flex: 1;
  min-width: 0;
}

.footer-trust-badge-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.trust-badge-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.15);
}

.footer-trust-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}

.footer-trust-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0;
}

.footer-trust-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.trust-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-cyan-border);
  color: #fff;
  transform: translateY(-1px);
}

/* Trust Badges Container */
.footer-trust-badges {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Standardized Trust Certificate Tiles */
.trust-badge-tile {
  display: inline-flex;
}

.trust-tile-card {
  width: 134px;
  min-height: 162px;
  border-radius: var(--radius-sm, 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  text-decoration: none;
  box-sizing: border-box;
}

/* Placeholder Tile State */
.trust-tile-card.is-placeholder {
  background: linear-gradient(180deg, rgba(16, 24, 42, 0.9) 0%, rgba(9, 14, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.enamad-tile .trust-tile-card.is-placeholder {
  border-color: rgba(0, 240, 255, 0.22);
}
.enamad-tile .trust-tile-card.is-placeholder:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.2), inset 0 0 16px rgba(0, 240, 255, 0.05);
  transform: translateY(-3px);
}

.zibal-tile .trust-tile-card.is-placeholder {
  border-color: rgba(0, 230, 118, 0.22);
}
.zibal-tile .trust-tile-card.is-placeholder:hover {
  border-color: var(--accent-emerald);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.2), inset 0 0 16px rgba(0, 230, 118, 0.05);
  transform: translateY(-3px);
}

.ssl-tile .trust-tile-card.is-placeholder {
  border-color: rgba(255, 183, 3, 0.22);
}
.ssl-tile .trust-tile-card.is-placeholder:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(255, 183, 3, 0.2), inset 0 0 16px rgba(255, 183, 3, 0.05);
  transform: translateY(-3px);
}

/* Active Tile State */
.trust-tile-card.is-active {
  background: linear-gradient(180deg, rgba(16, 24, 42, 0.95) 0%, rgba(9, 14, 24, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.enamad-tile .trust-tile-card.is-active {
  border-color: rgba(0, 240, 255, 0.35);
}
.enamad-tile .trust-tile-card.is-active:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 28px rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
}

.zibal-tile .trust-tile-card.is-active {
  border-color: rgba(0, 230, 118, 0.35);
}
.zibal-tile .trust-tile-card.is-active:hover {
  border-color: var(--accent-emerald);
  box-shadow: 0 8px 28px rgba(0, 230, 118, 0.3);
  transform: translateY(-3px);
}

/* Active Inner White Canvas for Injected Badge/Script */
.trust-tile-active-frame {
  background: #ffffff;
  border-radius: 9px;
  width: 100%;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.trust-tile-active-frame img,
.trust-tile-active-frame iframe,
.trust-tile-active-frame a {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Tile Icon Wrap */
.trust-tile-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
  transition: transform 0.3s ease;
}

.trust-tile-card:hover .trust-tile-icon-wrap {
  transform: scale(1.06);
}

/* Tile Status Badge */
.trust-tile-badge-status {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9.5px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  line-height: 1.4;
  white-space: nowrap;
}

.status-cyan {
  background: var(--accent-cyan-bg);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan-border);
}

.status-emerald {
  background: var(--accent-emerald-bg);
  color: var(--accent-emerald);
  border: 1px solid var(--accent-emerald-border);
}

.status-gold {
  background: var(--accent-gold-bg);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
}

/* Tile Typography */
.trust-tile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  width: 100%;
}

.trust-tile-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.trust-tile-sub {
  font-size: 9.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-tile-sub.status-verified {
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
}

.trust-tile-sub.status-verified.status-emerald {
  color: var(--accent-emerald);
}

@media (max-width: 992px) {
  .footer-trust-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 24px;
  }
  .footer-trust-badges {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .trust-tile-card {
    width: 108px;
    min-height: 145px;
    padding: 10px 6px 8px;
  }
  .trust-tile-icon-wrap svg {
    width: 38px;
    height: 38px;
  }
  .trust-tile-name {
    font-size: 10px;
  }
  .trust-tile-sub {
    font-size: 8.5px;
  }
  .trust-badge-header-icon {
    width: 38px;
    height: 38px;
  }
  .footer-trust-title {
    font-size: 14px;
  }
}

/* ==========================================================================
   Breadcrumbs & Pagination
   ========================================================================== */
.breadcrumbs-container {
  margin-bottom: 28px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumbs-list a {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs-list a:hover {
  color: var(--accent-cyan);
}

.breadcrumbs-separator {
  color: var(--text-subtle);
  font-size: 11px;
}

.breadcrumbs-current {
  color: var(--text-main);
  font-weight: 700;
}

/* Pagination */
.pagination {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.page-item .page-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.page-item.active .page-link {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #000;
  font-weight: 800;
}

.page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================================
   Accordion (FAQ & Help)
   ========================================================================== */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--border-hover);
}

.accordion-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--accent-cyan);
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.accordion-body {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.85;
  display: none;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title { font-size: 38px; }
  .coin-preset-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Advertisement / Ads System Styles (Zero-Space Architecture)
   ========================================================================== */

/* Main Multi-Column Layout Wrapper */
.site-layout-columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.site-main-column {
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
}

/* Placement Containers */
.ad-placement-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.ad-placement-top {
  margin-bottom: 24px;
  width: 100%;
}

.ad-placement-bottom {
  margin-top: 36px;
  width: 100%;
}

.ad-placement-left-sidebar,
.ad-placement-right-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}

.ad-placement-article-sidebar,
.ad-placement-product-sidebar {
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
}

.ad-placement-between-content {
  margin: 30px 0;
  width: 100%;
}

/* Ad Card Components */
.ad-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ad-card-item:hover {
  border-color: var(--border-glow-cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-2px);
}

.ad-card-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 8px;
}

.ad-label-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Image Ad */
.ad-image-link {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.ad-image-element {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.ad-card-item:hover .ad-image-element {
  transform: scale(1.02);
}

.ad-fallback-box {
  background: rgba(0, 240, 255, 0.05);
  border: 1px dashed var(--accent-cyan-border);
  padding: 24px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Banner Ad */
.ad-banner-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.ad-banner-image-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ad-banner-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.ad-banner-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ad-banner-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}

.ad-banner-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ad-banner-btn {
  margin-top: 4px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
  color: #050811;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  text-align: center;
  transition: var(--transition);
}

.ad-card-item:hover .ad-banner-btn {
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.4);
}

/* Text Ad */
.ad-text-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ad-text-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ad-text-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.4;
}

.ad-text-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ad-text-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-top: 4px;
}

/* HTML Ad */
.ad-html-container {
  overflow: hidden;
  max-width: 100%;
}

/* Responsive Rules for Ads */
@media (max-width: 1200px) {
  .ad-placement-left-sidebar,
  .ad-placement-right-sidebar {
    width: 180px;
  }
}

@media (max-width: 992px) {
  .site-layout-columns {
    flex-direction: column;
  }
  .ad-placement-left-sidebar,
  .ad-placement-right-sidebar {
    width: 100%;
    position: static;
    order: 2;
  }
}

/* ==========================================================================
   Multi-Product Catalog & Store Component Styles
   ========================================================================== */

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.15);
}

.product-card-image-wrap:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-image-wrap:hover .btn-quick-view {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.btn-wishlist-toggle:hover {
  transform: scale(1.15);
  border-color: var(--accent-cyan);
}

.product-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--accent-cyan-border);
  border-radius: 4px;
}

.product-tabs-nav .tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.product-tabs-nav .tab-btn:hover {
  color: #fff;
}

.product-tabs-nav .tab-btn.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

.variant-pill-box:hover {
  border-color: var(--accent-cyan-border);
  background: rgba(0, 240, 255, 0.05);
}

.variant-pill-box.selected {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

/* ==========================================================================
   Comprehensive Mobile-First & Responsive Architecture (320px - 1440px+)
   ========================================================================== */

/* Safe Area Inset Support */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --touch-target-min: 44px;
}

/* Zero Horizontal Overflow & Base Resets */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* Fluid Typography */
h1 { font-size: clamp(22px, 5vw, 34px); }
h2 { font-size: clamp(19px, 4.2vw, 28px); }
h3 { font-size: clamp(16px, 3.5vw, 22px); }

/* Responsive Table Container */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

/* Mobile Sticky Purchase Bar */
.mobile-sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--accent-cyan-border);
  padding: 10px 16px;
  padding-bottom: calc(10px + var(--safe-bottom));
  z-index: 990;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-buy-bar.visible {
  transform: translateY(0);
}

.sticky-buy-info {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  flex: 1;
}

.sticky-buy-thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  background: #000;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.sticky-buy-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sticky-buy-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--accent-cyan);
}

.sticky-buy-btn {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
}

/* Mobile Filter Drawer (Bottom Sheet) */
#mobile-filter-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.mobile-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.mobile-filter-sheet {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(340px, 88vw);
  background: #0f1422;
  border-left: 1px solid var(--border-color);
  padding: 20px 18px calc(24px + var(--safe-bottom));
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

/* Customer Account Navigation Chips */
.account-nav-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.account-nav-chips::-webkit-scrollbar {
  display: none;
}

.account-chip {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.account-chip.active, .account-chip:hover {
  background: var(--accent-cyan-bg);
  border-color: var(--accent-cyan-border);
  color: var(--accent-cyan);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization (Pixel 7, Galaxy, iPhone & All Phones)
   ========================================================================== */

/* 1. Global Touch & Viewport Safeguards */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* 2. Prevent iOS auto-zoom on form inputs by ensuring 16px font-size on mobile */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-search-toggle-btn {
  display: none;
}

/* Tablet Landscape / Medium Devices (<= 992px) */
@media (max-width: 992px) {
  .site-header {
    padding: 10px 0;
  }
  .nav-links {
    display: none !important;
  }
  .nav-toggle-btn {
    display: inline-flex !important;
    min-width: 44px;
    min-height: 44px;
  }
  .brand-title {
    font-size: 16px;
  }
  .brand-icon-box {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .catalog-layout {
    grid-template-columns: 1fr !important;
  }
  .catalog-sidebar-desktop {
    display: none !important;
  }
  .mobile-filter-btn {
    display: inline-flex !important;
    min-height: 40px;
    align-items: center;
  }
  .product-detail-grid {
    grid-template-columns: 1fr !important;
  }
  .site-layout-columns {
    flex-direction: column !important;
  }
  .checkout-layout-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Standard Mobile Phones & Tablets (<= 768px) - Pixel 7, Galaxy S, iPhone */
@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-content {
    padding-top: 14px;
    padding-bottom: 95px; /* Space for mobile sticky buy bar or footer nav */
  }

  /* Header Mobile Optimizations */
  .site-header {
    padding: 8px 0 !important;
  }
  .header-inner {
    gap: 8px !important;
  }
  .brand-logo {
    gap: 8px !important;
  }
  .brand-icon-box {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }
  .brand-title {
    font-size: 15px !important;
    gap: 4px !important;
  }
  .brand-en-tag {
    font-size: 11px !important;
  }
  .brand-badge {
    display: none !important; /* Hide 'ULTIMATE' badge on mobile to save valuable header space */
  }
  .header-actions {
    gap: 6px !important;
  }
  .header-search-wrap {
    display: none !important; /* Replaced by mobile search toggle */
  }
  .header-search-toggle-btn {
    display: inline-flex !important;
    width: 36px;
    height: 36px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    color: var(--text-secondary);
  }
  .cart-header-btn {
    padding: 6px 10px !important;
    min-width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .header-login-btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
  .header-login-btn span {
    display: none !important; /* Show only icon on mobile header */
  }

  /* Expandable Mobile Search Bar */
  .mobile-search-expandable {
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--accent-cyan-border);
    padding: 8px 0;
    animation: fadeInDown 0.25s ease forwards;
  }

  /* Grids: Form and multi-column grids become 1-column */
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  
  /* Shop game/platform cards on mobile: 1 clean spacious column */
  .shop-platforms-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* General grid-3 on mobile (reviews, blog, why us): 1 column */
  .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Step cards (01, 02, 03, 04): 2 columns on mobile */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Product Grids: Exactly 2 Columns on Mobile Devices */
  #products-grid,
  .products-grid,
  .grid-products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Product Card Mobile Architecture */
  .product-card {
    padding: 10px !important;
    border-radius: var(--radius-sm) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .product-card-top-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    left: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 5;
    pointer-events: none;
  }
  .product-card-badge-wrap {
    pointer-events: auto;
    max-width: 62%;
  }
  .product-card-badge-wrap .badge {
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    border-radius: var(--radius-xs) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    max-width: 100% !important;
  }
  .btn-wishlist-toggle {
    pointer-events: auto !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    border-radius: 50% !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .btn-wishlist-toggle svg {
    width: 15px !important;
    height: 15px !important;
  }
  .product-card-image-wrap {
    height: 135px !important;
    margin-bottom: 8px !important;
    border-radius: var(--radius-xs) !important;
  }
  .product-card .btn-quick-view {
    display: none !important;
  }
  .product-card-category-row {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }
  .product-card-title {
    font-size: 12.5px !important;
    height: 36px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }
  .product-card-meta-row {
    font-size: 10.5px !important;
    margin-bottom: 8px !important;
  }
  .product-card-bottom {
    padding-top: 8px !important;
  }
  .product-card-main-price {
    font-size: 15px !important;
  }
  .product-card-btn {
    height: 35px !important;
    min-height: 35px !important;
    font-size: 11px !important;
    padding: 0 6px !important;
  }

  /* Catalog Toolbar */
  .catalog-toolbar {
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  .catalog-toolbar-row-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .catalog-toolbar-row-2 {
    width: 100%;
  }
  .catalog-toolbar-row-2 select {
    width: 100% !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 30px 0 40px !important;
  }
  .hero-badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    max-width: 100% !important;
  }
  .hero-title {
    font-size: 24px !important;
    line-height: 1.4 !important;
  }
  .hero-subtitle {
    font-size: 13.5px !important;
    margin-bottom: 20px !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero-stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 14px !important;
    border-radius: var(--radius-md) !important;
    background: rgba(16, 21, 36, 0.75) !important;
    border: 1px solid var(--border-color) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 10px !important;
  }
  .hero-stat-divider,
  .d-none-sm {
    display: none !important;
  }
  .hero-stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: var(--radius-sm) !important;
  }
  .hero-stat-item svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
  }
  .hero-stat-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .hero-stat-val {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.25 !important;
  }
  .hero-stat-lbl {
    font-size: 11px !important;
    color: var(--text-muted) !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
  }

  /* Coin Presets Grid (Shop & Calculator) */
  .coin-preset-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .coin-preset-btn {
    min-height: 44px !important;
    font-size: 13px !important;
    padding: 6px 4px !important;
  }

  /* Sticky Buy Bar */
  .mobile-sticky-buy-bar {
    display: flex !important;
    padding: 8px 12px !important;
    padding-bottom: calc(8px + var(--safe-bottom)) !important;
    gap: 8px !important;
  }
  .sticky-buy-thumb {
    width: 36px !important;
    height: 36px !important;
  }
  .sticky-buy-title {
    font-size: 11px !important;
    max-width: 160px !important;
  }
  .sticky-buy-price {
    font-size: 13.5px !important;
  }
  .sticky-buy-btn {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  /* Cart & Checkout */
  .cart-qty-btn {
    min-width: 36px !important;
    min-height: 36px !important;
  }
  .checkout-progress {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .checkout-step-item {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}

/* Small Phones & Foldables (<= 360px) */
@media (max-width: 360px) {
  .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .brand-title span:last-child {
    display: none !important;
  }
  #products-grid,
  .products-grid,
  .grid-products {
    grid-template-columns: 1fr !important; /* Clean 1-column on ultra-narrow phones */
  }
  .product-card-image-wrap {
    height: 165px !important;
  }
  .coin-preset-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 10px 8px !important;
  }
  .hero-stat-item {
    padding: 8px 6px !important;
    gap: 6px !important;
  }
  .hero-stat-val {
    font-size: 13.5px !important;
  }
  .hero-stat-lbl {
    font-size: 10px !important;
  }
}

/* ==========================================================================
   Icon Design System & Header Cart Styles
   ========================================================================== */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }
.icon-2xl { width: 48px; height: 48px; }

.icon-rtl-flip {
  transform: scaleX(-1);
}

/* Header Cart Button & Floating Badge */
.cart-header-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-header-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.cart-header-btn:hover svg {
  transform: scale(1.1);
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-gold);
  color: #0c101c;
  font-size: 11px;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--bg-surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1;
  z-index: 10;
  animation: badge-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badge-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Header Wishlist Button */
.header-wishlist-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.header-wishlist-btn:hover {
  color: #ff3b30;
  background: rgba(255, 59, 48, 0.1);
}

/* Account Navigation Chips Icon Styling */
.account-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.account-chip:hover svg,
.account-chip.active svg {
  transform: scale(1.15);
}

/* Admin Sidebar Icons */
.admin-nav-item a svg {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.admin-nav-item:hover a svg,
.admin-nav-item.active a svg {
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================================
   FC Coin Store - Modern Dark RTL Pagination Component & SVG Fixes
   ========================================================================== */

/* Universal SVG icon size constraints for all pagination layouts */
nav[role="navigation"] svg,
.pagination svg,
.fc-pagination svg,
svg.w-5,
svg.h-5,
.w-5,
.h-5 {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

/* Fallback for unstyled Tailwind pagination links */
nav[role="navigation"] a,
nav[role="navigation"] span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* FC Custom Pagination Wrapper */
.fc-pagination-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 24px 0 12px 0;
  font-family: inherit;
  direction: rtl;
}

@media (min-width: 768px) {
  .fc-pagination-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.fc-pagination-info {
  font-size: 13px;
  color: var(--text-secondary, #8e9bb0);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fc-pagination-highlight {
  color: var(--accent-cyan, #00f0ff);
  font-weight: 700;
}

.fc-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.fc-page-item {
  display: inline-flex;
}

.fc-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-sm, 10px);
  background: var(--card-bg, #101626);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  color: var(--text-primary, #f3f6fc);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  cursor: pointer;
}

.fc-page-link:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.35);
  color: var(--accent-cyan, #00f0ff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.15);
}

.fc-page-item.active .fc-page-link {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(0, 240, 255, 0.1));
  border-color: var(--accent-cyan, #00f0ff);
  color: var(--accent-cyan, #00f0ff);
  font-weight: 800;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  cursor: default;
}

.fc-page-item.disabled .fc-page-link {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.04);
  color: var(--text-muted, #5a667a);
  transform: none !important;
  box-shadow: none !important;
}

.fc-page-link.dots {
  border: none;
  background: transparent;
  cursor: default;
  min-width: 24px;
  padding: 0 4px;
}

.fc-page-icon {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor;
  flex-shrink: 0;
}



