/*
Theme Name: بطاقات هدايا السعودية | Saudi Gift Cards
Theme URI: https://saudigiftcards.store
Author: Saudi Gift Cards
Description: قالب متجر البطاقات الرقمية
Version: 1.2.2
Text Domain: saudi-giftcards
*/

/* ============================================================
   SAUDI GIFT CARDS - COMPLETE PRODUCTION CSS
   ============================================================ */

/* CSS Variables & Tokens */
:root {
  --color-primary: #0f172a;
  --color-primary-light: #1e293b;
  --color-primary-dark: #020617;
  --color-accent: #2563eb;
  --color-accent-light: #60a5fa;
  --color-accent-glow: rgba(37, 99, 235, 0.35);
  --color-gold: #f59e0b;
  --color-gold-glow: rgba(245, 158, 11, 0.3);
  --color-emerald: #10b981;
  --color-danger: #ef4444;

  --bg-body: #0b0f19;
  --bg-surface: #111827;
  --bg-card: #111827;
  --bg-card-hover: #1f2937;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --gradient-brand: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

body.ltr-mode,
body.lang-en {
  font-family: 'Inter', sans-serif;
  direction: ltr;
  text-align: left;
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #93c5fd;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Flex Utilities */
.d-flex { display: flex; }
.d-grid { display: grid; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }
.text-center { text-align: center; }
.py-4 { padding-top: 30px; padding-bottom: 30px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 36px; }
.mb-4 { margin-bottom: 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--color-accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-accent-glow);
  color: #ffffff;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--color-gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-gold-glow);
  color: #ffffff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-sale {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--gradient-brand);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}
.announcement-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  font-weight: 700;
}
.announcement-action {
  color: #fef08a;
  font-weight: 700;
  text-decoration: underline;
}
.announcement-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Top Utility Bar */
.top-bar {
  background: var(--color-primary-dark);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.top-bar-whatsapp {
  color: #34d399;
  font-weight: 600;
}
.wa-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}
.lang-toggle-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Site Header */
.site-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  padding-top: 15px;
}
.brand-text-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  font-size: 2rem;
}
.brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: block;
}

/* Search Bar */
.header-search-wrap {
  flex: 1;
  max-width: 460px;
}
.header-search-form {
  display: flex;
  position: relative;
  width: 100%;
}
.header-search-input {
  width: 100%;
  background: var(--color-primary-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 10px 20px 10px 45px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.header-search-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 15px var(--color-accent-glow);
}
.header-search-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Header Actions */
.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.cart-icon-wrap {
  position: relative;
}
.cart-badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-danger);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

/* Main Navigation & Dropdown */
.main-navigation {
  border-top: 1px solid var(--border-subtle);
  margin-top: 15px;
  padding: 10px 0;
}

.category-nav-dropdown {
  position: relative;
  display: inline-block;
}

.cat-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 300px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  backdrop-filter: blur(16px);
}

body.ltr-mode .cat-dropdown-menu,
body.lang-en .cat-dropdown-menu {
  right: auto;
  left: 0;
}

.cat-dropdown-menu.active,
.category-nav-dropdown:hover .cat-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cat-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: #f8fafc;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cat-list li:last-child a { border-bottom: none; }
.cat-list li a:hover {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  padding-right: 22px;
}

.cat-nav-btn {
  background: var(--gradient-brand);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-nav-btn .chevron-icon {
  transition: transform 0.25s ease;
}
.category-nav-dropdown:hover .cat-nav-btn .chevron-icon,
.cat-dropdown-menu.active ~ .cat-nav-btn .chevron-icon {
  transform: rotate(180deg);
}

.nav-menu-list a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all 0.15s ease;
}
.nav-menu-list a:hover {
  color: var(--color-accent-light);
}
.offers-link {
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.mobile-nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .mobile-nav-toggle { display: flex; }
  .primary-nav-links { display: none; }
}

/* Hero Section */
.hero-section {
  padding: 60px 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
.hero-eyebrow {
  display: inline-flex;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #93c5fd;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}
.hero-stats-row {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 35px;
  background: var(--border-subtle);
}

/* Floating 3D Cards */
.floating-cards-stack {
  position: relative;
  height: 320px;
}
.floating-card {
  position: absolute;
  width: 280px;
  height: 170px;
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.card-psn {
  background: linear-gradient(135deg, #003791 0%, #0070d1 100%);
  top: 0;
  right: 20px;
  z-index: 3;
}
.card-razer {
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
  border-color: #00ff00;
  top: 60px;
  right: 80px;
  z-index: 2;
}
.card-steam {
  background: linear-gradient(135deg, #171a21 0%, #2a475e 100%);
  top: 120px;
  right: 140px;
  z-index: 1;
}
.card-brand {
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 10px;
}
.card-amount {
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 15px;
}
.card-tag {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Categories Grid */
.section-categories {
  padding: 60px 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s ease;
}
.cat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px var(--color-accent-glow);
}
.cat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cat-thumb-wrap {
  width: 76px;
  height: 76px;
  margin: 0 auto 12px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cat-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cat-card:hover .cat-thumb-img {
  transform: scale(1.08);
}
.cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.cat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Section Headers */
.section-header {
  margin-bottom: 35px;
}
.section-header.text-center {
  text-align: center;
}
.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* WooCommerce Products Grid & Cards */
.woocommerce ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 30px 0 0 0 !important;
}

@media (max-width: 1024px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: 1fr !important;
  }
}

.woocommerce ul.products li.product,
ul.products li.product {
  background: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  margin: 0 !important;
  width: 100% !important;
}

.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
  border-color: #2563eb !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45) !important;
}

.woocommerce ul.products li.product a img,
ul.products li.product a img,
.woocommerce ul.products li.product img.woocommerce-placeholder,
ul.products li.product img.woocommerce-placeholder {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  margin-bottom: 14px !important;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: #f8fafc !important;
  margin-bottom: 10px !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 2.8em !important;
}

.woocommerce ul.products li.product .price,
ul.products li.product .price {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #f59e0b !important;
  margin-bottom: 14px !important;
  display: block !important;
}

.woocommerce ul.products li.product .price del,
ul.products li.product .price del {
  color: #64748b !important;
  font-size: 0.85rem !important;
  margin-left: 8px !important;
  font-weight: 400 !important;
}

.woocommerce ul.products li.product .price ins,
ul.products li.product .price ins {
  text-decoration: none !important;
  color: #f59e0b !important;
}

.woocommerce ul.products li.product .button,
ul.products li.product .button {
  margin-top: auto !important;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  border: none !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  display: block !important;
}

.woocommerce ul.products li.product .button:hover,
ul.products li.product .button:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-2px) !important;
}

.woocommerce ul.products li.product .onsale,
ul.products li.product .onsale {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  min-height: auto !important;
  line-height: 1 !important;
  margin: 0 !important;
}

body.ltr-mode .woocommerce ul.products li.product .onsale,
body.lang-en .woocommerce ul.products li.product .onsale {
  right: auto !important;
  left: 10px !important;
}

/* 1. How It Works (3 Steps) */
.section-how-it-works {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}
@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.step-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px 22px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.step-card:hover::before {
  opacity: 1;
}
.step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}
body.ltr-mode .step-num,
body.lang-en .step-num {
  right: auto;
  left: 20px;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.25);
  transition: transform 0.3s ease;
}
.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(37, 99, 235, 0.25);
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* 2. FAQ Accordion Section */
.section-faq {
  padding: 70px 0;
  background: #0b0f19;
}
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 35px;
}
.faq-item {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item:hover,
.faq-item.active {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: #f8fafc;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: color 0.2s ease;
}
body.ltr-mode .faq-question-btn,
body.lang-en .faq-question-btn {
  text-align: left;
}
.faq-question-btn:hover,
.faq-item.active .faq-question-btn {
  color: #60a5fa;
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #94a3b8;
  width: 32px;
  height: 32px;
  line-height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.faq-item.active .faq-icon {
  background: #2563eb;
  color: #ffffff;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.18);
}
.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 24px 22px 24px;
}

/* 3. Promo Banner */
.section-promo-banner {
  padding: 50px 0;
}
.promo-banner-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.promo-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.promo-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.promo-desc {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}

/* Trust Pillars */
.trust-pillars-section {
  padding: 50px 0;
  background: var(--color-primary-light);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: var(--radius-md);
}
.trust-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.trust-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  padding: 60px 0 30px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}
.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links-list li {
  margin-bottom: 10px;
}
.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.15s ease;
}
.footer-links-list a:hover {
  color: var(--color-accent-light);
  padding-right: 4px;
}
.footer-payment-methods {
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 25px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-bottom {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 99;
}


/* ============================================================
   STRICT CATEGORY DROPDOWN MENU OVERRIDES
   ============================================================ */
.category-nav-dropdown {
  position: relative !important;
  display: inline-block !important;
  z-index: 9999 !important;
}

.cat-nav-btn {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%) !important;
  color: #ffffff !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
}

.cat-nav-btn .chevron-icon {
  display: inline-block !important;
  transition: transform 0.25s ease !important;
  font-size: 0.8rem !important;
}

.category-nav-dropdown.active .cat-nav-btn .chevron-icon,
.category-nav-dropdown:hover .cat-nav-btn .chevron-icon {
  transform: rotate(180deg) !important;
}

.cat-dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 6px) !important;
  right: 0 !important;
  width: 300px !important;
  background: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8) !important;
  padding: 8px 0 !important;
  margin: 0 !important;
  z-index: 999999 !important;
  backdrop-filter: blur(20px) !important;
}

body.ltr-mode .cat-dropdown-menu,
body.lang-en .cat-dropdown-menu {
  right: auto !important;
  left: 0 !important;
}

.category-nav-dropdown:hover .cat-dropdown-menu,
.cat-dropdown-menu.show-menu,
.cat-dropdown-menu.open,
.category-nav-dropdown.active .cat-dropdown-menu {
  display: block !important;
}

.cat-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cat-list li {
  margin: 0 !important;
  padding: 0 !important;
}

.cat-list li a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 18px !important;
  color: #f8fafc !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  transition: all 0.15s ease !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.cat-list li:last-child a {
  border-bottom: none !important;
}

.cat-list li a:hover {
  background: rgba(37, 99, 235, 0.25) !important;
  color: #60a5fa !important;
  padding-right: 24px !important;
}

body.ltr-mode .cat-list li a:hover,
body.lang-en .cat-list li a:hover {
  padding-right: 18px !important;
  padding-left: 24px !important;
}


/* ============================================================
   CHECKOUT MANDATORY REGISTRATION & INVOICE GATE STYLES
   ============================================================ */
.checkout-login-gate-card {
  background: #111827;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 20px;
  padding: 50px 30px;
  max-width: 680px;
  margin: 40px auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
.gate-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.gate-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.gate-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.checkout-legal-notice {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  color: #93c5fd;
}
.notice-icon {
  font-size: 1.8rem;
}

.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  margin-top: 25px;
}
@media (max-width: 900px) {
  .checkout-layout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}
.checkout-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.step-num-badge {
  background: #2563eb;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.legal-acknowledgment-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 16px;
}
.legal-terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-terms-list li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.8rem;
  color: #94a3b8;
}


/* Custom Logo in Header */
.site-branding .custom-logo-link {
  display: flex !important;
  align-items: center !important;
}
.site-branding .custom-logo,
.custom-logo {
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.2s ease !important;
}
.site-branding .custom-logo:hover {
  transform: scale(1.02) !important;
}


/* ============================================================
   LEGAL, CONTACT, ABOUT, & REDEEM PAGES STYLING (HIGH-END)
   ============================================================ */
.legal-page-wrapper,
.contact-page-wrapper,
.about-page-wrapper,
.redeem-guide-wrapper {
  max-width: 900px;
  margin: 30px auto 60px auto;
  padding: 0 15px;
}

/* Legal Alert Banners */
.legal-alert-banner {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 14px;
  padding: 20px 24px;
  color: #93c5fd;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.6;
}
.alert-icon {
  font-size: 2rem;
  line-height: 1;
}

/* Legal Cards */
.legal-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.legal-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.title-num {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}
.legal-card p {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-card ul, .legal-card ol {
  padding-right: 25px;
  margin-bottom: 15px;
  color: #94a3b8;
  line-height: 1.8;
}
body.ltr-mode .legal-card ul, body.ltr-mode .legal-card ol {
  padding-right: 0;
  padding-left: 25px;
}

.legal-highlight-box {
  background: rgba(245, 158, 11, 0.1);
  border-right: 4px solid #f59e0b;
  padding: 16px 20px;
  border-radius: 8px;
  color: #fef08a;
  margin: 16px 0;
  font-size: 0.95rem;
}
body.ltr-mode .legal-highlight-box {
  border-right: none;
  border-left: 4px solid #f59e0b;
}

.legal-quote-box {
  background: rgba(239, 68, 68, 0.08);
  border-right: 4px solid #ef4444;
  padding: 16px 20px;
  border-radius: 8px;
  color: #fca5a5;
  margin: 16px 0;
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 1.7;
}
body.ltr-mode .legal-quote-box {
  border-right: none;
  border-left: 4px solid #ef4444;
}

/* Contact Channels Grid */
.contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 650px) {
  .contact-channels-grid { grid-template-columns: 1fr; }
}
.channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.channel-icon {
  font-size: 2.2rem;
}
.channel-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.channel-link {
  color: #60a5fa;
  font-weight: bold;
  font-size: 1.1rem;
}
.channel-badge {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: bold;
}

/* Delivery Steps Box */
.delivery-steps-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .delivery-steps-box { grid-template-columns: 1fr; }
}
.del-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.del-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* Payment Methods Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .payment-methods-grid { grid-template-columns: 1fr; }
}
.pm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 10px;
  font-weight: bold;
  color: #f8fafc;
}

/* Contact Page Cards */
.contact-hero-card {
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 80%);
  padding: 40px 20px;
  border-radius: 20px;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .contact-details-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.4);
}
.contact-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
}
.email-highlight {
  color: #60a5fa;
  font-size: 1.05rem;
  font-weight: bold;
  margin: 10px 0;
  display: inline-block;
  word-break: break-all;
}
.sub-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 8px;
}

/* About Pillars */
.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) {
  .about-pillars-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 24px;
}
.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.pillar-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.pillar-card p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Redeem Guides */
.redeem-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 25px;
}
.redeem-card h3 {
  font-size: 1.15rem;
  color: #60a5fa;
  margin-bottom: 16px;
}
.redeem-card ol {
  padding-right: 25px;
  color: #cbd5e1;
  line-height: 1.8;
}
body.ltr-mode .redeem-card ol {
  padding-right: 0;
  padding-left: 25px;
}
