/* ═══════════════════════════════════════════════════════════════
   GiftCard Shop — Clean Light Theme
   از فونت سایت وردپرس استفاده می‌کند
   ═══════════════════════════════════════════════════════════════ */

:root {
  --c-bg:       #ffffff;
  --c-surface:  #f8f9fa;
  --c-card:     #ffffff;
  --c-border:   #e5e7eb;
  --c-border2:  #d1d5db;
  --c-accent:   #2563eb;
  --c-accent-h: #1d4ed8;
  --c-accent-l: #eff6ff;
  --c-green:    #16a34a;
  --c-green-l:  #f0fdf4;
  --c-red:      #dc2626;
  --c-red-l:    #fef2f2;
  --c-yellow:   #d97706;
  --c-yellow-l: #fffbeb;
  --c-text:     #111827;
  --c-text2:    #374151;
  --c-muted:    #6b7280;
  --c-muted2:   #9ca3af;
  --radius:     12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.05);
}

/* ─── Base ─────────────────────────────────────────────────── */
.gcs-wrap {
  font-family: inherit;
  direction: rtl;
  color: var(--c-text);
  background: var(--c-bg);
  min-height: 100vh;
  padding: 0 0 60px;
  margin-top: -30px; /* کشش به بالا — فاصله سفید بیخود بین header قالب و کارت هیرو رو کم می‌کند */
  position: relative;
  z-index: 1;
}
.gcs-wrap * { box-sizing: border-box; }

/* در صفحه فروشگاه پایین آوردن فاصله بالای محتوا — مفید روی موبایل و قالب‌هایی که padding اضافه دارند */
body .gcs-wrap {
  padding-top: 0 !important;
}

/* ─── Header ───────────────────────────────────────────────── */
.gcs-header {
  text-align: center;
  padding: 44px 20px 28px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
}
.gcs-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-green-l);
  border: 1px solid #bbf7d0;
  color: var(--c-green);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.gcs-header-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.gcs-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--c-text);
  letter-spacing: -.5px;
}
.gcs-title span { color: var(--c-accent); }
.gcs-subtitle {
  color: var(--c-muted);
  font-size: 14px;
  margin: 0;
}

/* ─── Trust Badges ─────────────────────────────────────────── */
.gcs-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px auto;
  padding: 0 16px;
  max-width: 760px;
}
.gcs-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.gcs-badge-blue   { background: #eff6ff; color: #1d4ed8; border: 1.5px solid #bfdbfe; }
.gcs-badge-green  { background: #f0fdf4; color: #15803d; border: 1.5px solid #bbf7d0; }
.gcs-badge-orange { background: #fff7ed; color: #c2410c; border: 1.5px solid #fed7aa; }
.gcs-badge-purple { background: #faf5ff; color: #7e22ce; border: 1.5px solid #e9d5ff; }

/* ─── Products Grid ────────────────────────────────────────── */
.gcs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 0;
}

/* ─── Product Card ─────────────────────────────────────────── */
.gcs-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px 18px 16px;
  position: relative;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.gcs-card:hover {
  border-color: var(--c-border2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gcs-card.gcs-sold-out {
  opacity: .55;
}

/* کارت ویژه */
.gcs-card.gcs-featured {
  border-color: #bfdbfe;
  background: linear-gradient(160deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: var(--shadow-sm), 0 0 0 1px #bfdbfe;
}


.gcs-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.gcs-card-icon {
  width: 44px; height: 44px;
  background: var(--c-accent-l);
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.gcs-card-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.gcs-badge-ok  { background: var(--c-green-l);  color: var(--c-green);  border: 1px solid #bbf7d0; }
.gcs-badge-low { background: var(--c-yellow-l); color: var(--c-yellow); border: 1px solid #fde68a; }
.gcs-badge-out { background: var(--c-red-l);    color: var(--c-red);    border: 1px solid #fecaca; }

.gcs-card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--c-text);
}
.gcs-card-desc {
  font-size: 12px;
  color: var(--c-muted);
  margin: 0 0 12px;
  line-height: 1.7;
}

/* ویژگی‌های پلن */
.gcs-card-features {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gcs-card-features li {
  font-size: 12px;
  color: var(--c-text2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.gcs-card-features li::before {
  content: '✓';
  color: var(--c-green);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.gcs-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-border);
  padding-top: 12px;
  margin-top: 4px;
}
.gcs-card-price {
  font-size: 19px;
  font-weight: 800;
  color: var(--c-text);
}
.gcs-card-price small {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 400;
  margin-right: 3px;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.gcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s;
  font-family: inherit;
  text-decoration: none;
}
.gcs-btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 1px 3px rgba(37,99,235,.3);
}
.gcs-btn-primary:hover {
  background: var(--c-accent-h);
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
  transform: translateY(-1px);
}
.gcs-btn-primary:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.gcs-btn-outline {
  background: transparent;
  color: var(--c-accent);
  border: 1px solid #bfdbfe;
}
.gcs-btn-outline:hover {
  background: var(--c-accent-l);
  border-color: #93c5fd;
}
.gcs-btn-full { width: 100%; justify-content: center; }
.gcs-btn-sm   { padding: 6px 12px; font-size: 12px; }
.gcs-btn-buy  { padding: 8px 16px; font-size: 13px; }

/* ─── OTP buttons (احراز هویت پیامکی) ──────────────────────── */
.gcs-btn-otp-send,
.gcs-btn-otp-verify {
  white-space: nowrap;
  padding: 0 16px;
  min-height: 42px;
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .18s;
  font-family: inherit;
}
.gcs-btn-otp-send {
  background: #2563eb !important;
  box-shadow: 0 2px 6px rgba(37,99,235,.35);
}
.gcs-btn-otp-send:hover:not(:disabled) {
  background: #1d4ed8 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.45);
}
.gcs-btn-otp-send:disabled {
  background: #93c5fd !important;
  color: #fff !important;
  cursor: not-allowed;
  opacity: 1;
}
.gcs-btn-otp-verify {
  background: #10b981 !important;
  box-shadow: 0 2px 6px rgba(16,185,129,.35);
}
.gcs-btn-otp-verify:hover:not(:disabled) {
  background: #059669 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16,185,129,.45);
}
.gcs-btn-otp-verify:disabled {
  background: #6ee7b7 !important;
  color: #fff !important;
  cursor: not-allowed;
  opacity: 1;
}
.gcs-btn-otp-verify.verified {
  background: #047857 !important;
  cursor: default;
}
.gcs-btn-otp-verify.verified:hover {
  transform: none;
}

/* ─── هدر مودال تست رایگان (کارت متمایز) ──────────────────── */
.gcs-trial-modal-header {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #10b981;
  border-radius: 14px;
  padding: 22px 18px 18px;
  text-align: center;
  margin: -4px -4px 22px;
  box-shadow: 0 4px 14px rgba(16,185,129,.12);
  position: relative;
  overflow: hidden;
}
.gcs-trial-modal-header::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(16,185,129,.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gcs-trial-modal-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(5,150,105,.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gcs-trial-modal-header .gcs-modal-icon {
  font-size: 38px;
  margin-bottom: 6px;
  position: relative;
}
.gcs-trial-modal-header .gcs-modal-title {
  font-size: 17px;
  font-weight: 800;
  color: #064e3b;
  margin: 0 0 8px;
  position: relative;
}
.gcs-trial-modal-header .gcs-trial-badge-free {
  display: inline-block;
  background: #10b981;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(16,185,129,.35);
  position: relative;
  letter-spacing: .2px;
}

/* ─── Modal ────────────────────────────────────────────────── */
.gcs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.gcs-modal {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.gcs-modal-close {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  width: 30px; height: 30px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.gcs-modal-close:hover {
  background: var(--c-red-l);
  border-color: #fecaca;
  color: var(--c-red);
}

.gcs-modal-header {
  text-align: center;
  margin-bottom: 20px;
}
.gcs-modal-icon { font-size: 34px; margin-bottom: 10px; }
.gcs-modal-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--c-text);
}
.gcs-modal-price {
  font-size: 21px;
  font-weight: 800;
  color: var(--c-accent);
  margin: 0;
}

/* ─── Tabs ─────────────────────────────────────────────────── */
.gcs-tabs {
  display: flex;
  gap: 4px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 9px;
  padding: 4px;
  margin-bottom: 16px;
}
.gcs-tab {
  flex: 1;
  padding: 7px;
  border: none;
  background: transparent;
  color: var(--c-muted);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  transition: all .18s;
}
.gcs-tab.active {
  background: #fff;
  color: var(--c-accent);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ─── Form ─────────────────────────────────────────────────── */
.gcs-form { display: flex; flex-direction: column; gap: 12px; }
.gcs-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text2);
  margin-bottom: 5px;
}
.gcs-field input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--c-border2);
  color: var(--c-text);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.gcs-field input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.gcs-field input::placeholder { color: var(--c-muted2); }
.gcs-form-note {
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
  background: var(--c-surface);
  border-radius: 7px;
  padding: 8px 12px;
  border: 1px solid var(--c-border);
}

/* ─── Message ──────────────────────────────────────────────── */
.gcs-msg {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}
.gcs-msg.error   { background: var(--c-red-l);    color: var(--c-red);    border: 1px solid #fecaca; }
.gcs-msg.success { background: var(--c-green-l);  color: var(--c-green);  border: 1px solid #bbf7d0; }

/* ─── Confirm / Delivery Page ──────────────────────────────── */
.gcs-confirm-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}
.gcs-confirm-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 36px 28px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.gcs-confirm-card.success {
  border-top: 4px solid var(--c-green);
}
.gcs-confirm-card.failed {
  border-top: 4px solid var(--c-red);
}
.gcs-confirm-icon {
  font-size: 52px;
  margin-bottom: 12px;
  display: block;
}
.gcs-confirm-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--c-text);
}
.gcs-confirm-card.success .gcs-confirm-title { color: var(--c-green); }
.gcs-confirm-card.failed  .gcs-confirm-title { color: var(--c-red); }
.gcs-confirm-sub {
  color: var(--c-muted);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* باکس کد گیفت‌کارت */
.gcs-code-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #93c5fd;
  border-radius: 16px;
  padding: 22px 20px;
  margin-bottom: 22px;
  text-align: right;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
  position: relative;
  overflow: hidden;
}
.gcs-code-box::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gcs-code-label {
  font-size: 13px;
  color: #1e40af;
  font-weight: 800;
  letter-spacing: .3px;
  display: block;
  margin-bottom: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gcs-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #bfdbfe;
  position: relative;
  z-index: 1;
}
.gcs-code-text {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 15px;
  color: #1e40af;
  word-break: break-all;
  text-align: right;
  font-weight: 700;
  background: none;
  border: none;
  outline: none;
  letter-spacing: .5px;
}
.gcs-btn-copy {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  color: #fff;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.35);
}
.gcs-btn-copy:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(59, 130, 246, 0.45); }
.gcs-btn-copy.copied {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
}

/* ردیف نام کاربری / رمز عبور */
.gcs-credentials-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.gcs-credential-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  text-align: right;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.06);
  transition: all .2s;
}
.gcs-credential-row:hover {
  border-color: #60a5fa;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.gcs-cred-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  width: auto;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gcs-cred-label::before {
  content: "🔹";
  font-size: 10px;
}
.gcs-cred-row-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}
.gcs-cred-value {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: 800;
  color: #1e40af;
  letter-spacing: .5px;
  direction: ltr;
  width: auto;
  text-align: left;
  background: #eff6ff;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px dashed #93c5fd;
}
.gcs-btn-copy-sm {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}
.gcs-btn-copy-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4); }
.gcs-btn-copy-sm.copied {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

@media (max-width: 480px) {
  .gcs-credential-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 8px;
  }
  .gcs-cred-label {
    justify-content: center;
  }
  .gcs-cred-row-inline {
    justify-content: center;
  }
  .gcs-cred-value {
    font-size: 15px;
  }
}

/* جدول اطلاعات سفارش */
.gcs-meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  text-align: right;
  background: var(--c-surface);
  border-radius: 10px;
  overflow: hidden;
}
.gcs-meta-table td {
  padding: 11px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--c-border);
}
.gcs-meta-table tr:last-child td { border-bottom: none; }
.gcs-meta-table td:first-child { color: var(--c-muted); }
.gcs-meta-table td:last-child  { color: var(--c-text); font-weight: 600; text-align: left; }

.gcs-confirm-note {
  font-size: 12px;
  color: var(--c-yellow);
  background: var(--c-yellow-l);
  border: 1px solid #fde68a;
  border-radius: 7px;
  padding: 8px 12px;
  margin: 0 0 20px;
  display: block;
}

/* ─── Profile Page — Compact Expandable Design ───────────── */
.gcs-profile-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 14px;
}

/* ─── هدر پروفایل ─── */
.gcs-profile-header {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.gcs-profile-avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--c-accent) 0%, #6366f1 100%);
  color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,.28);
}
.gcs-profile-info { flex: 1; min-width: 0; }
.gcs-profile-name { font-size: 15px; font-weight: 700; margin: 0 0 2px; color: var(--c-text); }
.gcs-profile-email { font-size: 13px; color: var(--c-muted); margin: 0; word-break: break-all; }
.gcs-profile-logout {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  padding: 7px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all .18s;
  flex-shrink: 0;
}
.gcs-profile-logout:hover {
  background: var(--c-red-l);
  color: var(--c-red);
  border-color: #fecaca;
}

/* ─── نوار آمار ─── */
.gcs-stats-bar {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.gcs-stat-box { text-align: center; padding: 6px 4px; position: relative; }
.gcs-stat-box + .gcs-stat-box::before {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--c-border);
}
.gcs-stat-v { font-size: 19px; font-weight: 800; color: var(--c-text); line-height: 1.2; }
.gcs-stat-v.green { color: var(--c-green); }
.gcs-stat-v.blue  { color: var(--c-accent); }
.gcs-stat-v.cyan  { color: #0891b2; }
.gcs-stat-l { font-size: 11px; color: var(--c-muted); margin-top: 3px; }

/* ─── فیلترها ─── */
.gcs-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.gcs-filters::-webkit-scrollbar { display: none; }
.gcs-filter {
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: all .18s;
}
.gcs-filter:hover { background: var(--c-accent-l); border-color: #bfdbfe; }
.gcs-filter.active {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
  box-shadow: 0 2px 6px rgba(37,99,235,.3);
}
.gcs-filter-count {
  display: inline-block;
  background: rgba(0,0,0,.08);
  padding: 1px 7px;
  border-radius: 999px;
  margin-right: 4px;
  font-size: 11px;
  font-weight: 700;
}
.gcs-filter.active .gcs-filter-count { background: rgba(255,255,255,.25); }

/* ─── عنوان بخش ─── */
.gcs-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text2);
  margin: 0 0 12px;
  letter-spacing: 1px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-accent);
  display: inline-block;
}

/* ─── لیست سفارشات ─── */
.gcs-orders {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gcs-order-row {
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background .15s;
}
.gcs-order-row:last-child { border-bottom: none; }
.gcs-order-row:hover { background: #fafbfc; }
.gcs-order-row.open { background: #fafbfc; }

.gcs-row-main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.gcs-row-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid;
}
.gcs-row-icon.paid    { background: #dcfce7; color: #15803d; border-color: #86efac; }
.gcs-row-icon.pending { background: #fef3c7; color: #b45309; border-color: #fcd34d; }
.gcs-row-icon.failed  { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }
.gcs-row-icon.trial   { background: #cffafe; color: #0e7490; border-color: #67e8f9; }

.gcs-row-info { flex: 1; min-width: 0; }
.gcs-row-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gcs-row-meta {
  font-size: 12px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gcs-row-meta .gcs-dot { color: var(--c-border2); }
.gcs-row-status-text { font-weight: 600; }
.gcs-row-status-text.pending { color: #b45309; }
.gcs-row-status-text.failed  { color: #b91c1c; }

.gcs-row-right {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gcs-row-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
}
.gcs-row-amount.free { color: #0891b2; }
.gcs-row-amount.muted { color: var(--c-muted2); }
.gcs-row-arrow {
  color: var(--c-muted2);
  font-size: 20px;
  transition: transform .25s;
  line-height: 1;
}
.gcs-order-row.open .gcs-row-arrow { transform: rotate(-90deg); color: var(--c-accent); }

/* ─── بدنه باز‌شو ─── */
.gcs-row-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  background: #fff;
}
.gcs-order-row.open .gcs-row-body {
  max-height: 600px;
  padding: 0 16px 16px;
}
.gcs-row-body-inner {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 14px;
}
.gcs-body-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gcs-body-label.trial { color: #0891b2; }

/* اطلاعات اشتراک */
.gcs-cred-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
}
.gcs-cred-row + .gcs-cred-row { border-top: 1px dashed var(--c-border); }
.gcs-cred-k {
  font-size: 12px;
  color: var(--c-muted);
  min-width: 75px;
  font-weight: 500;
}
.gcs-cred-v {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  direction: ltr;
  text-align: left;
  word-break: break-all;
}
.gcs-cred-copy {
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-accent);
  padding: 5px 11px;
  border-radius: 7px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: all .18s;
  flex-shrink: 0;
}
.gcs-cred-copy:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.gcs-cred-copy.copied { background: var(--c-green); color: #fff; border-color: var(--c-green); }

/* جدول جزئیات */
.gcs-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}
.gcs-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.gcs-detail-k { color: var(--c-muted); }
.gcs-detail-v {
  color: var(--c-text);
  font-weight: 600;
  text-align: left;
  direction: ltr;
}

/* پیام‌های هشدار */
.gcs-alert-note {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}
.gcs-alert-pending { background: #fef3c7; color: #92400e; border: 1px dashed #fcd34d; }
.gcs-alert-failed  { background: #fee2e2; color: #991b1b; border: 1px dashed #fca5a5; }

/* خالی */
.gcs-empty {
  text-align: center;
  color: var(--c-muted);
  padding: 60px 20px;
  font-size: 15px;
  background: #fff;
  border: 1px dashed var(--c-border2);
  border-radius: 14px;
}

/* responsive */
@media (max-width: 480px) {
  .gcs-stats-bar { grid-template-columns: repeat(4, 1fr); padding: 12px 8px; }
  .gcs-stat-v { font-size: 16px; }
  .gcs-stat-l { font-size: 10px; }
  .gcs-row-main { padding: 12px 14px; }
  .gcs-row-icon { width: 36px; height: 36px; font-size: 16px; }
  .gcs-row-title { font-size: 13px; }
  .gcs-row-amount { font-size: 13px; }
  .gcs-detail-grid { grid-template-columns: 1fr; }
  .gcs-cred-k { min-width: 65px; font-size: 11px; }
  .gcs-cred-v { font-size: 13px; }
}

/* ─── Scrollbar ────────────────────────────────────────────── */
.gcs-modal::-webkit-scrollbar { width: 5px; }
.gcs-modal::-webkit-scrollbar-track { background: var(--c-surface); }
.gcs-modal::-webkit-scrollbar-thumb { background: var(--c-border2); border-radius: 4px; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .gcs-modal { padding: 22px 16px 18px; }

  .gcs-code-text { font-size: 13px; }
  .gcs-confirm-card { padding: 24px 16px; }
}

/* ─── Footer ───────────────────────────────────────────────── */


/* ─── Services Nav ─────────────────────────────────────────── */
.gcs-services {
  max-width: 960px;
  margin: 32px auto 0;
  padding: 0 16px;
  text-align: center;
}
.gcs-services-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 4px;
}
.gcs-services-sub {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0 0 16px;
}
.gcs-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gcs-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.gcs-service-item:hover {
  border-color: #bfdbfe;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--c-accent);
}
.gcs-service-icon {
  font-size: 28px;
  width: 52px; height: 52px;
  background: var(--c-accent-l);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.gcs-service-item strong {
  font-size: 13px;
  font-weight: 700;
  color: inherit;
}
.gcs-service-item span {
  font-size: 11px;
  color: var(--c-muted);
}

@media (max-width: 480px) {
  .gcs-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Card Tiers ───────────────────────────────────────────── */
.gcs-tier-bronze { border-top: 3px solid #cd7f32; }
.gcs-tier-silver { border-top: 3px solid #94a3b8; }
.gcs-tier-gold   { border-top: 3px solid #f59e0b; }
.gcs-tier-bronze .gcs-card-icon { background:#fdf3e7; border-color:#f5cfa0; }
.gcs-tier-silver .gcs-card-icon { background:#f1f5f9; border-color:#cbd5e1; }
.gcs-tier-gold   .gcs-card-icon { background:#fffbeb; border-color:#fde68a; }

/* ─── Protocol Badges ──────────────────────────────────────── */
.gcs-card-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.gcs-proto {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  color: var(--c-text2);
  letter-spacing: .3px;
}

/* ─── Timer ────────────────────────────────────────────────── */
.gcs-card-timer {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 7px;
  padding: 6px 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #ea580c;
}
.gcs-timer-icon  { font-size: 13px; }
.gcs-timer-label { color: #9a3412; font-weight: 600; }
.gcs-timer-count { font-family: 'Courier New', monospace; font-weight: 700; font-size: 13px; margin-right: auto; letter-spacing: 1px; }

/* ─── Buyers Count ─────────────────────────────────────────── */
.gcs-card-buyers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.gcs-buyers-dot {
  width: 7px; height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  animation: blink 2s infinite;
  flex-shrink: 0;
}

/* ─── How It Works (compact) ───────────────────────────────── */
.gcs-howto {
  max-width: 760px;
  margin: 10px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 30px;
  padding: 5px 14px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.gcs-howto-step {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.gcs-howto-num {
  width: 14px; height: 14px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gcs-howto-icon { font-size: 12px; line-height: 1; }
.gcs-howto-step strong { font-size: 10px; font-weight: 600; color: var(--c-text2); white-space: nowrap; }
.gcs-howto-arrow { font-size: 10px; color: var(--c-muted2); flex-shrink: 0; }

/* ─── FAQ ──────────────────────────────────────────────────── */
.gcs-faq {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 0 16px;
}
.gcs-faq-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 16px;
  text-align: center;
  letter-spacing: -.2px;
}
.gcs-faq-list { display: flex; flex-direction: column; gap: 8px; }

/* ── آیتم پایه ── */
.gcs-faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid;
  transition: box-shadow .2s, transform .2s;
}
.gcs-faq-item:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.08); }

/* ── رنگ‌ها ── */
.gcs-faq-item.faq-blue   { background: #eff6ff; border-color: #bfdbfe; }
.gcs-faq-item.faq-amber  { background: #fffbeb; border-color: #fcd34d; }
.gcs-faq-item.faq-purple { background: #faf5ff; border-color: #d8b4fe; }
.gcs-faq-item.faq-teal   { background: #f0fdfa; border-color: #99f6e4; }
.gcs-faq-item.faq-green  { background: #f0fdf4; border-color: #86efac; }

/* باز شده */
.gcs-faq-item.faq-blue.open   { background: #dbeafe; border-color: #93c5fd; }
.gcs-faq-item.faq-amber.open  { background: #fef3c7; border-color: #f59e0b; }
.gcs-faq-item.faq-purple.open { background: #f3e8ff; border-color: #c084fc; }
.gcs-faq-item.faq-teal.open   { background: #ccfbf1; border-color: #2dd4bf; }
.gcs-faq-item.faq-green.open  { background: #dcfce7; border-color: #4ade80; }

/* ── دکمه سوال ── */
.gcs-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 14px 14px 12px;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: inherit;
  line-height: 1.5;
  direction: rtl;
}
.gcs-faq-q:hover { filter: brightness(.97); }

/* آیکون رنگی کنار سوال */
.gcs-faq-icon {
  font-size: 17px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.7);
}

/* رنگ عنوان سوال بر اساس تم */
.faq-blue   .gcs-faq-q { color: #1e40af; }
.faq-amber  .gcs-faq-q { color: #92400e; }
.faq-purple .gcs-faq-q { color: #6b21a8; }
.faq-teal   .gcs-faq-q { color: #0f766e; }
.faq-green  .gcs-faq-q { color: #15803d; }

.gcs-faq-arrow {
  font-size: 16px;
  flex-shrink: 0;
  opacity: .6;
  transition: transform .25s;
}
.gcs-faq-item.open .gcs-faq-arrow { transform: rotate(180deg); opacity: 1; }

/* ── متن پاسخ ── */
.gcs-faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.8;
  padding: 0 14px;
  transition: max-height .3s ease, padding .3s ease;
  border-top: 0px solid transparent;
  direction: rtl;
}
.faq-blue   .gcs-faq-a { color: #1e3a8a; }
.faq-amber  .gcs-faq-a { color: #78350f; }
.faq-purple .gcs-faq-a { color: #581c87; }
.faq-teal   .gcs-faq-a { color: #134e4a; }
.faq-green  .gcs-faq-a { color: #14532d; }

.gcs-faq-item.open .gcs-faq-a {
  max-height: 300px;
  padding: 10px 14px 16px;
  border-top-width: 1px;
}
.faq-blue.open   .gcs-faq-a { border-top-color: #93c5fd; }
.faq-amber.open  .gcs-faq-a { border-top-color: #fcd34d; }
.faq-purple.open .gcs-faq-a { border-top-color: #c084fc; }
.faq-teal.open   .gcs-faq-a { border-top-color: #2dd4bf; }
.faq-green.open  .gcs-faq-a { border-top-color: #4ade80; }

@media (max-width: 560px) {

}

/* ─── App Download Box — Glassmorphism ────────────────────────────── */
.gcs-app-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 20px 18px 18px;
  margin: 18px 0 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 28px rgba(102,126,234,0.35);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.gcs-app-box::before {
  content: '◉';
  position: absolute;
  bottom: -24px;
  left: -12px;
  font-size: 90px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}
.gcs-app-note {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  margin: 0 0 16px;
  line-height: 1.8;
  font-family: Tahoma, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.gcs-app-note strong {
  color: #fff;
  font-weight: 700;
}
.gcs-btn-download {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background .2s, transform .2s, box-shadow .2s;
  font-family: Tahoma, sans-serif;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
  word-wrap: break-word;
}
.gcs-btn-download .gcs-dl-arrow,
.gcs-btn-download .gcs-dl-text {
  display: inline;
  vertical-align: middle;
}
.gcs-btn-download .gcs-dl-arrow {
  margin-left: 6px;
  font-size: 14px;
}
.gcs-btn-download:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.35);
}
.gcs-dl-arrow {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.gcs-dl-text { font-size: 13px; }

/* ─── کادر دانلود اپ (بازنویسی شده — ساده و مطمئن) ─── */
.gcs-dlbox {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 14px;
  padding: 18px 16px;
  margin: 18px 0 14px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.3);
}
.gcs-dlbox-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}
.gcs-dlbox-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
  font-family: Tahoma, sans-serif;
}
.gcs-dlbox-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  font-family: Tahoma, sans-serif;
}
.gcs-dlbox-btn {
  display: block;
  background: #fff;
  color: #667eea !important;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none !important;
  font-family: Tahoma, sans-serif;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.gcs-dlbox-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  color: #667eea !important;
  text-decoration: none !important;
}
.gcs-dlbox-btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .gcs-dlbox { padding: 16px 12px; margin: 14px 0 10px; }
  .gcs-dlbox-icon { font-size: 32px; }
  .gcs-dlbox-title { font-size: 13px; }
  .gcs-dlbox-sub { font-size: 11px; margin-bottom: 12px; }
  .gcs-dlbox-btn { font-size: 13px; padding: 11px 12px; }
}

/* ─── بخش کانفیگ تست رایگان ─────────────────────────────────── */
.gcs-trial-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: 20px;
  padding: 36px 28px;
  margin: 32px auto;
  max-width: 560px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gcs-trial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.gcs-trial-header { margin-bottom: 20px; }
.gcs-trial-badge {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.gcs-trial-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0;
  font-family: Tahoma, sans-serif;
}
.gcs-trial-sub {
  color: #94a3b8;
  font-size: 13px;
  margin: 0;
}
.gcs-trial-info-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
}
.gcs-trial-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #e2e8f0;
}
.gcs-trial-info-item span { font-size: 22px; }
.gcs-trial-info-item strong { font-size: 14px; font-weight: 700; }
.gcs-trial-info-item small { font-size: 11px; color: #64748b; }
.gcs-btn-trial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: Tahoma, sans-serif;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}
.gcs-btn-trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99,102,241,0.55);
}
.gcs-trial-unavailable {
  color: #94a3b8;
  padding: 20px 0;
}
.gcs-trial-unavailable p { margin: 8px 0 0; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   ─── طراحی جدید Landing Page (نسخه ۲.۱۲.۰) ─────────────────
   ═══════════════════════════════════════════════════════════════ */

/* ─── کارت تست رایگان (هیرو سبز تیره) ─── */
.gcs-hero-trial {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #0a3d2e 100%);
  border-radius: 22px;
  padding: 22px 20px 20px;
  margin-bottom: 22px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(4, 120, 87, .25);
}
.gcs-hero-trial::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(16, 185, 129, .25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gcs-hero-trial::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(5, 150, 105, .2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gcs-hero-trial-badge {
  display: inline-block;
  background: rgba(16, 185, 129, .2);
  border: 1px solid rgba(16, 185, 129, .4);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.gcs-hero-trial-title {
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.gcs-hero-trial-title span {
  color: #10b981;
  font-size: 36px;
}
.gcs-hero-trial-sub {
  color: #a7f3d0;
  font-size: 14px;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}
.gcs-hero-features {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.gcs-hero-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #d1fae5;
  font-size: 12px;
  font-weight: 500;
}
.gcs-hero-feat-icon {
  font-size: 24px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, .15);
  border-radius: 12px;
}
.gcs-hero-trial-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, .4);
  transition: all .2s;
  position: relative;
  z-index: 1;
}
.gcs-hero-trial-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, .5);
}
.gcs-hero-trial-btn:disabled {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  box-shadow: none;
  cursor: not-allowed;
}
.gcs-hero-trial-btn.used {
  background: rgba(16, 185, 129, .2);
  color: #6ee7b7;
}
.gcs-hero-trial-note {
  color: #6ee7b7;
  font-size: 12px;
  margin: 12px 0 0;
  position: relative;
  z-index: 1;
  opacity: .85;
}

/* ─── شبکه محصولات (۲ ستونه — کارت‌های سفید) ─── */
.gcs-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.gcs-prod {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px 14px 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all .2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.gcs-prod:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  border-color: #fde68a;
}
.gcs-prod.sold-out {
  opacity: .55;
  filter: grayscale(.4);
}
.gcs-prod-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px;
  line-height: 1.4;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcs-prod-price {
  font-size: 22px;
  font-weight: 900;
  color: #f59e0b;
  margin-bottom: 6px;
  line-height: 1;
}
.gcs-prod-price small {
  font-size: 12px;
  font-weight: 600;
  color: #fbbf24;
  margin-right: 4px;
}
.gcs-prod-desc {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 14px;
  flex: 1;
}
.gcs-prod-stock {
  font-size: 11px;
  color: #16a34a;
  margin: -8px 0 10px;
  font-weight: 600;
}
.gcs-prod-stock-low {
  font-size: 11px;
  color: #dc2626;
  margin: -8px 0 10px;
  font-weight: 600;
}
.gcs-prod-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  padding: 11px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 12px rgba(245, 158, 11, .35);
  transition: all .2s;
}
.gcs-prod-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, .45);
}
.gcs-prod-btn:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  box-shadow: none;
  cursor: not-allowed;
}

/* ─── نوار آمار کاربران (زرد روشن) ─── */
.gcs-stats-row {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
}
.gcs-stats-users {
  color: #78350f;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gcs-stats-users strong {
  color: #b45309;
  font-weight: 800;
  font-size: 14px;
}
.gcs-stats-avatars {
  font-size: 16px;
  letter-spacing: -4px;
  margin-left: 4px;
}
.gcs-stats-online {
  color: #15803d;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gcs-online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .25);
  animation: gcs-pulse 2s ease-in-out infinite;
}
@keyframes gcs-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ─── کادر پیشنهاد ویژه با شمارش معکوس ─── */
.gcs-promo {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  border: 1px solid #fdba74;
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(251, 146, 60, .15);
}
.gcs-promo-title {
  color: #9a3412;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
}
.gcs-promo-sub {
  color: #c2410c;
  font-size: 13px;
  margin: 0 0 14px;
  font-weight: 500;
}
.gcs-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.gcs-cd-box {
  background: #fff;
  border: 1px solid #fdba74;
  border-radius: 12px;
  padding: 8px 14px;
  min-width: 58px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.gcs-cd-num {
  font-size: 22px;
  font-weight: 900;
  color: #c2410c;
  font-family: 'Courier New', monospace;
  line-height: 1;
}
.gcs-cd-lbl {
  font-size: 10px;
  color: #9a3412;
  margin-top: 3px;
}
.gcs-cd-sep {
  font-size: 22px;
  font-weight: 800;
  color: #c2410c;
}
.gcs-promo-link {
  display: inline-block;
  background: #fff;
  color: #c2410c;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #fdba74;
  transition: all .2s;
}
.gcs-promo-link:hover {
  background: #c2410c;
  color: #fff;
  border-color: #c2410c;
}

/* ─── ضمانت بازگشت وجه ─── */
.gcs-guarantee {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.gcs-guarantee-icon {
  font-size: 28px;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: 12px;
  flex-shrink: 0;
}
.gcs-guarantee-text { flex: 1; }
.gcs-guarantee-text strong {
  display: block;
  color: #1e293b;
  font-size: 14px;
  margin-bottom: 4px;
}
.gcs-guarantee-text p {
  color: #475569;
  font-size: 12px;
  margin: 0;
  line-height: 1.6;
}
.gcs-guarantee-text strong + p strong { color: #2563eb; }

/* ─── نظرات کاربران ─── */
.gcs-reviews { margin-bottom: 22px; }
.gcs-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.gcs-reviews-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.gcs-reviews-rate {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gcs-reviews-rate strong {
  font-size: 22px;
  font-weight: 900;
  color: #1e293b;
}
.gcs-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}
.gcs-reviews-meta {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 14px;
  text-align: left;
}
.gcs-review {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.gcs-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.gcs-review-stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}
.gcs-review-user {
  flex: 1;
  text-align: right;
}
.gcs-review-user strong {
  display: block;
  font-size: 13px;
  color: #1e293b;
  font-weight: 700;
}
.gcs-review-date {
  font-size: 11px;
  color: #94a3b8;
}
.gcs-review-avatar {
  width: 36px; height: 36px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.gcs-review-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 10px;
}
.gcs-review-verified {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}
.gcs-reviews-more {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: #2563eb;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 12px;
  transition: all .15s;
  text-align: center;
}
.gcs-reviews-more:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.12);
}

/* ─── فرم ثبت نظر کاربر ──────────────────────────────────────── */
.gcs-review-form-wrap {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
}
.gcs-review-form-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}
.gcs-review-form-desc {
  margin: 0 0 14px;
  font-size: 12px;
  color: #64748b;
}
#gcs-review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gcs-review-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
#gcs-review-form input[type="text"],
#gcs-review-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}
#gcs-review-form input:focus,
#gcs-review-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.gcs-review-form-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.gcs-rv-star-label {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}
.gcs-rv-stars {
  display: inline-flex;
  gap: 2px;
  direction: ltr;
}
.gcs-rv-star {
  cursor: pointer;
  font-size: 22px;
  color: #e2e8f0;
  transition: color .15s, transform .12s;
  user-select: none;
  line-height: 1;
}
.gcs-rv-star.active,
.gcs-rv-star.hover {
  color: #f59e0b;
}
.gcs-rv-star:hover {
  transform: scale(1.15);
}
.gcs-review-form-submit {
  align-self: flex-start;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .12s, box-shadow .15s, opacity .15s;
}
.gcs-review-form-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(22,163,74,.3);
}
.gcs-review-form-submit:disabled {
  opacity: .55;
  cursor: wait;
}
.gcs-rv-msg {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.gcs-rv-msg.ok {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}
.gcs-rv-msg.err {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

/* نظر pending (در انتظار تأیید) */
.gcs-review-pending {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-right: 3px solid #f59e0b;
}

/* ─── پاسخ به نظر ────────────────────────────────────────── */
.gcs-reply-actions {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}
.gcs-reply-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .15s;
}
.gcs-reply-btn:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}

.gcs-replies-list {
  margin-top: 12px;
  padding-right: 16px;
  border-right: 2px solid #e0e7ff;
}
.gcs-reply {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 12px;
}
.gcs-reply-pending {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}
.gcs-reply-arrow {
  color: #6366f1;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.gcs-reply-body {
  flex: 1;
}
.gcs-reply-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.gcs-reply-head strong {
  color: #0f172a;
  font-size: 12px;
}
.gcs-reply-date {
  color: #94a3b8;
  font-size: 10px;
}
.gcs-reply-badge {
  background: #fef3c7;
  color: #92400e;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.gcs-reply-text {
  color: #334155;
  line-height: 1.6;
  margin: 0;
  font-size: 12px;
}

.gcs-reply-form-wrap {
  margin-top: 10px;
  padding: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
}
.gcs-reply-form-wrap input,
.gcs-reply-form-wrap textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 12px;
  font-family: inherit;
  background: #fff;
  margin-bottom: 8px;
  resize: vertical;
}
.gcs-reply-form-wrap input:focus,
.gcs-reply-form-wrap textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,.1);
}
.gcs-reply-form-buttons {
  display: flex;
  gap: 6px;
}
.gcs-reply-submit {
  background: #16a34a;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.gcs-reply-submit:hover:not(:disabled) {
  background: #15803d;
}
.gcs-reply-submit:disabled { opacity: .55; cursor: wait; }
.gcs-reply-cancel {
  background: #fff;
  color: #64748b;
  font-family: inherit;
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
}
.gcs-reply-cancel:hover { background: #f1f5f9; }
.gcs-reply-msg {
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.gcs-reply-msg.ok  { background: #dcfce7; color: #15803d; }
.gcs-reply-msg.err { background: #fee2e2; color: #b91c1c; }

@media (max-width: 600px) {
  .gcs-review-form-row {
    grid-template-columns: 1fr;
  }
  .gcs-review-form-stars {
    justify-content: flex-start;
  }
}

.gcs-review-reply {
  margin-right: 20px;
  background: #f8fafc;
  border-right: 3px solid #6366f1;
  border-radius: 8px;
  padding: 12px 14px 12px 12px;
}
.gcs-review-reply .gcs-review-avatar {
  background: #ede9fe;
}
.gcs-review-reply .gcs-review-user strong {
  color: #6366f1;
}

/* ─── فوتر سایت (نسخه روشن و تمیز) ──────────────────────── */
/* ═══════════════════════════════
   فوتر بخش ثبت سفارش — نسخه جدید
   ═══════════════════════════════ */
.gcs-footer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 18px 16px;
  margin-top: 24px;
  margin-bottom: 8px;
  direction: rtl;
  text-align: center;
}

/* ── خط تقسیم با عنوان ── */
.gcs-reseller-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #fed7aa;
  border-radius: 16px;
  padding: 20px 18px;
  margin: 24px 0;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
}
.gcs-reseller-icon {
  font-size: 42px;
  flex-shrink: 0;
  line-height: 1;
}
.gcs-reseller-content {
  flex: 1;
  min-width: 0;
}
.gcs-reseller-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #92400e;
}
.gcs-reseller-desc {
  margin: 0 0 12px;
  font-size: 12px;
  color: #78350f;
  line-height: 1.7;
}
.gcs-reseller-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
  font-family: Tahoma, sans-serif;
}
.gcs-reseller-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
  color: #fff !important;
  text-decoration: none !important;
}

@media (max-width: 600px) {
  .gcs-reseller-card {
    flex-direction: column;
    text-align: center;
    padding: 18px 14px;
  }
  .gcs-reseller-icon { font-size: 38px; }
  .gcs-reseller-title { font-size: 15px; }
  .gcs-reseller-desc { font-size: 12px; }
}

.gcs-footer-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.gcs-footer-divider::before,
.gcs-footer-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.gcs-footer-divider-text {
  font-size: 12px;
  color: #94a3b8;
  white-space: nowrap;
  font-weight: 600;
}

/* ─── بخش سه مرحله‌ای: بعد از خرید چطور کار می‌کنه (نمونه ۳ — ردیف عمودی فشرده) ─── */
.gcs-howto-list {
  background: linear-gradient(180deg, #f8fafc, #fff);
  border-radius: 14px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.gcs-howto-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.gcs-howto-row:last-child {
  border-bottom: none;
}
.gcs-howto-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.gcs-howto-row:last-child .gcs-howto-num {
  background: #dcfce7;
  color: #15803d;
}
.gcs-howto-body {
  flex: 1;
  min-width: 0;
}
.gcs-howto-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}
.gcs-howto-desc {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.6;
}
.gcs-howto-icon {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
}
.gcs-howto-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff !important;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
}
.gcs-howto-btn:hover {
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 600px) {
  .gcs-howto-row {
    flex-wrap: wrap;
  }
}

/* ── گرید اعتمادسازی ── */
.gcs-footer-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
  list-style: none !important;
  padding: 0 !important;
}
.gcs-footer-trust-item {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 14px 10px 12px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 5px !important;
  transition: transform .2s, box-shadow .2s;
  box-sizing: border-box !important;
  float: none !important;
  margin: 0 !important;
  width: auto !important;
}
.gcs-footer-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,.07);
}
.gcs-footer-trust-item strong {
  display: block !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gcs-footer-trust-item span {
  display: block !important;
  font-size: 10.5px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gcs-footer-trust-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  margin-bottom: 2px !important;
  flex-shrink: 0 !important;
}
.gcs-footer-trust-icon.icon-green  { background: #f0fdf4 !important; }
.gcs-footer-trust-icon.icon-blue   { background: #eff6ff !important; }
.gcs-footer-trust-icon.icon-amber  { background: #fffbeb !important; }
.gcs-footer-trust-icon.icon-purple { background: #faf5ff !important; }

/* ── روش‌های پرداخت ── */
.gcs-footer-payment {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.gcs-footer-payment-label {
  font-size: 13px;
  color: #475569;
  font-weight: 600;
}
.gcs-footer-payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gcs-footer-badge {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: .2px;
}
.gcs-footer-badge.badge-zarinpal {
  color: #5A2D82;
  background: #faf5ff;
  border-color: #d8b4fe;
}

/* ── کپی‌رایت ── */
.gcs-footer-copy {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  line-height: 1.7;
  text-align: center;
}
.gcs-footer-copy strong {
  color: #047857;
  font-weight: 700;
}

/* ── نوار امنیت ── */
.gcs-footer-secure-bar {
  text-align: center;
  font-size: 11.5px;
  color: #94a3b8;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #e2e8f0;
  font-weight: 500;
}

@media (max-width: 520px) {
  .gcs-footer-trust-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gcs-footer-trust-item { padding: 14px 8px 12px !important; }
  .gcs-footer-trust-item strong { font-size: 13px !important; }
  .gcs-footer-trust-item span { font-size: 11px !important; }
  .gcs-footer-trust-icon { width: 36px !important; height: 36px !important; font-size: 17px !important; }
}
@media (max-width: 380px) {
  .gcs-footer { padding: 16px 14px 12px; }
  .gcs-footer-trust-item { padding: 12px 6px 10px !important; }
  .gcs-footer-trust-item strong { font-size: 12px !important; }
  .gcs-footer-trust-item span { font-size: 10.5px !important; }
}

/* ─── واکنشگرا (موبایل) ─── */

@media (max-width: 380px) {
  .gcs-hero-trial-title { font-size: 26px; }
  .gcs-hero-trial-title span { font-size: 30px; }
  .gcs-hero-features { gap: 10px; }
  .gcs-hero-feat-icon { width: 38px; height: 38px; font-size: 20px; }
  .gcs-prod { padding: 14px 10px 12px; }
  .gcs-prod-title { font-size: 13px; min-height: 36px; }
  .gcs-prod-price { font-size: 19px; }
  .gcs-cd-box { padding: 6px 10px; min-width: 50px; }
  .gcs-cd-num { font-size: 18px; }
}

/* ─── دکمه نمایش نظرات بیشتر ─── */
#gcs-show-more-wrap {
  text-align: center !important;
  margin: 20px 0 10px !important;
}
.gcs-show-more-btn {
  display: inline-block !important;
  background: #ffffff !important;
  color: #4a6cf7 !important;
  border: 2px solid #4a6cf7 !important;
  border-radius: 24px !important;
  padding: 10px 32px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: background .2s, color .2s !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(74,108,247,.15) !important;
}
.gcs-show-more-btn:hover {
  background: #4a6cf7 !important;
  color: #ffffff !important;
}

/* ─── فرم ثبت نظر ─── */
.gcs-review-form-wrap {
  margin: 24px 0 8px !important;
  background: #f4f6ff !important;
  border-radius: 18px !important;
  padding: 20px 18px 18px !important;
  border: 1.5px solid #d8dff8 !important;
}
.gcs-review-form-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #1e2d6b !important;
  margin: 0 0 16px !important;
  text-align: right !important;
}
.gcs-review-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
/* ستاره‌های انتخابی */
.gcs-review-star-select {
  display: flex !important;
  gap: 2px !important;
  font-size: 30px !important;
  direction: rtl !important;
  cursor: pointer !important;
  justify-content: flex-end !important;
  line-height: 1 !important;
}
.gcs-review-star-select span {
  color: #d1d5e8 !important;
  transition: color .12s !important;
  user-select: none !important;
}
.gcs-review-star-select span.active,
.gcs-review-star-select span:hover {
  color: #f5a623 !important;
}
/* فیلدهای ورودی */
.gcs-review-input,
.gcs-review-textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  border: 1.5px solid #c8d0ef !important;
  border-radius: 12px !important;
  padding: 11px 14px !important;
  font-size: 13.5px !important;
  font-family: inherit !important;
  background: #ffffff !important;
  color: #1e293b !important;
  resize: vertical !important;
  transition: border-color .2s, box-shadow .2s !important;
  direction: rtl !important;
  outline: none !important;
}
.gcs-review-input::placeholder,
.gcs-review-textarea::placeholder { color: #a0aec0 !important; }
.gcs-review-input:focus,
.gcs-review-textarea:focus {
  border-color: #4a6cf7 !important;
  box-shadow: 0 0 0 3px rgba(74,108,247,.12) !important;
}
/* دکمه ثبت */
.gcs-review-submit-btn {
  background: linear-gradient(135deg, #4a6cf7 0%, #6a3de8 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 13px 0 !important;
  font-size: 15px !important;
  font-family: inherit !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: opacity .2s, transform .1s !important;
  width: 100% !important;
  box-shadow: 0 4px 14px rgba(74,108,247,.35) !important;
  letter-spacing: .3px !important;
}
.gcs-review-submit-btn:hover  { opacity: .88 !important; }
.gcs-review-submit-btn:active { transform: scale(.98) !important; }
/* نظر ثبت‌شده کاربر */
#gcs-user-reviews-container { margin-top: 14px; }
#gcs-user-reviews-container > div {
  background: #ffffff !important;
  border: 2px solid #4a6cf7 !important;
  border-radius: 14px !important;
  padding: 14px !important;
  margin-bottom: 10px !important;
}
