/* ========================================
   GCC Sell Machines — E-commerce Store
   Theme: Bold Modern Gaming Equipment
   ======================================== */

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

:root {
  --primary: #1a1a2e;
  --primary-dark: #0f0f1e;
  --primary-light: #2d2d4a;
  --accent: #e94560;
  --accent-dark: #c73a52;
  --accent-light: #ff6b81;
  --gold: #f5a623;
  --gold-dark: #d4900a;
  --teal: #0abde3;
  --bg: #0d0d1a;
  --bg-2: #141428;
  --bg-3: #1a1a35;
  --card: #1e1e38;
  --card-2: #252550;
  --text: #f0f0f5;
  --text-muted: #a0a0b8;
  --text-light: #c0c0d0;
  --border: #2a2a4a;
  --border-light: #3a3a5a;
  --success: #2ecc71;
  --warning: #f39c12;
  --shadow: rgba(0,0,0,0.4);
  --font: 'Outfit', 'Noto Sans Arabic', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.nav-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-brand-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-right: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--card);
}

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

.lang-toggle {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.lang-toggle:hover { background: var(--card-2); border-color: var(--accent); }

.cart-btn {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.cart-btn:hover { background: var(--card-2); border-color: var(--gold); }

.cart-count {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.cart-count.hidden { display: none; }

.mobile-menu-btn {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-menu a:hover { background: var(--card); color: var(--text); }

.mobile-menu-actions {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,26,0.92) 0%, rgba(26,26,58,0.75) 50%, rgba(13,13,26,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(233,69,96,0.15);
  border: 1px solid rgba(233,69,96,0.3);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,69,96,0.3); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-secondary:hover { background: var(--card); border-color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.trust-badge svg { width: 14px; height: 14px; color: var(--teal); }

/* ===== SECTION COMMON ===== */
.section {
  padding: 72px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-tag {
  display: inline-block;
  background: rgba(233,69,96,0.1);
  border: 1px solid rgba(233,69,96,0.2);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

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

/* ===== FILTERS ===== */
.filters-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 16px;
  margin-bottom: 32px;
  scrollbar-width: none;
}

.filters-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.filter-btn:hover { border-color: var(--accent); color: var(--text); }

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.product-card[data-hidden="true"] { display: none; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(233,69,96,0.85);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}

.product-fav:hover { background: var(--accent); }

.product-body { padding: 20px; }

.product-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }

.rating-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 4px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}

.product-price span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.product-add-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.product-add-btn:hover { background: var(--accent-dark); transform: scale(1.05); }

/* ===== GUIDES ===== */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.guide-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.guide-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.guide-body { padding: 24px; }

.guide-tag {
  display: inline-block;
  background: rgba(10,189,227,0.1);
  border: 1px solid rgba(10,189,227,0.2);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.guide-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.guide-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.guide-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.guide-detail {
  display: none;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.guide-detail.open { display: block; }

.guide-expand {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.guide-expand:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* ===== TRUST ===== */
.trust-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 24px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(233,69,96,0.1);
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.trust-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 72px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.newsletter-inner {
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: rgba(46,204,113,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  flex-shrink: 0;
}

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-input, .form-select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  width: 100%;
  transition: border-color 0.2s;
}

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

.form-input::placeholder { color: var(--text-muted); }

.form-select option { background: var(--bg-2); color: var(--text); }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.btn-submit:hover { background: var(--accent-dark); }

.security-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

.newsletter-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.newsletter-success.show { display: block; }

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(46,204,113,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--success);
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.success-desc { font-size: 14px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { padding: 72px 24px; max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s;
}

.faq-question:hover { color: var(--accent-light); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border);
  padding: 56px 24px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover { background: var(--accent); border-color: var(--accent); color: white; }

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-light); }

.footer-base {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
}

.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open { transform: translateX(0); }

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

.cart-drawer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--card);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  align-self: flex-start;
}

.cart-item-remove:hover { color: var(--accent); }

.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
}

.cart-empty-icon { font-size: 48px; margin-bottom: 12px; }

.cart-empty-text { font-size: 14px; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.cart-total-label { color: var(--text-muted); }

.cart-total-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}

.cart-checkout-btn {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
  margin-bottom: 8px;
}

.cart-checkout-btn:hover { background: var(--accent-dark); }

.paypal-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #FFC439;
  color: #003087;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
  margin-bottom: 8px;
}

.paypal-checkout-btn:hover { background: #e6b030; }

/* ===== CHECKOUT MODAL ===== */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.checkout-modal.open { display: flex; }

.checkout-modal-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.checkout-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.checkout-modal-close:hover { background: var(--accent); color: white; }

.checkout-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

.checkout-form { display: flex; flex-direction: column; gap: 14px; }

.checkout-form .form-input, .checkout-form .form-select {
  background: var(--card);
}

.checkout-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.paypal-divider {
  text-align: center;
  position: relative;
  margin: 4px 0;
  color: var(--text-muted);
  font-size: 12px;
}

.paypal-divider::before, .paypal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--border);
}

.paypal-divider::before { left: 0; }
.paypal-divider::after  { right: 0; }

.checkout-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.checkout-success.show { display: block; }

/* ===== COOKIE CONSENT ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 1500;
  display: none;
}

.cookie-bar.show { display: block; }

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

.cookie-text a { color: var(--accent-light); }

.cookie-actions { display: flex; gap: 8px; }

.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  border: none;
  transition: all 0.2s;
}

.cookie-accept { background: var(--accent); color: white; }
.cookie-accept:hover { background: var(--accent-dark); }

.cookie-decline { background: var(--card); color: var(--text-muted); border: 1px solid var(--border); }
.cookie-decline:hover { border-color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-title { font-size: 28px; }
  .hero-stats { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-base { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}

@media (max-width: 480px) {
  .header { padding: 0 16px; }
  .section { padding: 48px 16px; }
  .hero-content { padding: 60px 16px; }
}

/* ===== RTL ===== */
[dir="rtl"] .nav-brand { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { margin-right: 0; margin-left: auto; flex-direction: row-reverse; }
[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
[dir="rtl"] .hero-trust { flex-direction: row-reverse; }
[dir="rtl"] .product-footer { flex-direction: row-reverse; }
[dir="rtl"] .product-cat-badge { left: auto; right: 12px; }
[dir="rtl"] .product-fav { right: auto; left: 12px; }
[dir="rtl"] .filters-bar { flex-direction: row-reverse; }
[dir="rtl"] .newsletter-inner { direction: rtl; }
[dir="rtl"] .newsletter-benefits li { flex-direction: row-reverse; }
[dir="rtl"] .cart-drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .cart-drawer.open { transform: translateX(0); }
[dir="rtl"] .cart-item-remove { margin-left: 0; margin-right: auto; }
[dir="rtl"] .footer-base { flex-direction: row-reverse; }
[dir="rtl"] .cookie-inner { flex-direction: row-reverse; }
[dir="rtl"] .checkout-modal-inner { direction: rtl; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}