/*
Theme Name: GT SCENT
Theme URI: https://gtscent.com
Author: Provision Studio
Author URI: https://provisionstudio.net
Description: Premium Arabic RTL WooCommerce theme for GT SCENT — شركة التجارة الذهبية. Autonomous fragrance diffusers for homes, offices, hotels, and cars.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Private
Text Domain: gtscent
Tags: rtl-language, e-commerce, dark, arabic, woocommerce
*/

/* ============================================================
   DESIGN SYSTEM — CSS VARIABLES
============================================================ */
:root {
  /* Light Mode */
  --bg:        #F8F6F2;
  --surface:   #FFFFFF;
  --surface2:  #F0EDE7;
  --text:      #1A1A1A;
  --text2:     #666666;
  --gold:      #C8A96A;
  --gold2:     #A8843E;
  --gold-rgb:  200, 169, 106;
  --green:     #2E7D32;
  --red:       #C62828;
  --border:    rgba(0,0,0,0.08);
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --nav-bg:    rgba(248,246,242,0.95);
  --overlay:   rgba(248,246,242,0.6);
  --gradient-gold: linear-gradient(135deg, #C8A96A 0%, #A8843E 50%, #C8A96A 100%);
  --header-h: 108px;
  --nav-h: 70px;
  --radius: 12px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
  --bg:        #0F1115;
  --surface:   #1E222A;
  --surface2:  #252A34;
  --text:      #FFFFFF;
  --text2:     #A0A0A0;
  --gold:      #D4AF37;
  --gold2:     #B8960C;
  --gold-rgb:  212, 175, 55;
  --green:     #4CAF50;
  --red:       #EF5350;
  --border:    rgba(255,255,255,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --nav-bg:    rgba(15,17,21,0.97);
  --overlay:   rgba(15,17,21,0.6);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { color: var(--text2); }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(var(--gold-rgb), 0.12);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text2); max-width: 540px; margin: 0 auto; }

.gold-text { color: var(--gold); }
.gold-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  vertical-align: middle;
  margin: 0 8px;
}

/* ============================================================
   GRID SYSTEMS
============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--gold-rgb), 0.5);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-ghost {
  color: var(--text);
  padding: 10px 20px;
}
.btn-ghost:hover { color: var(--gold); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   CARDS
============================================================ */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   FORM ELEMENTS
============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.12);
}
.form-control::placeholder { color: var(--text2); }

input[type="email"].form-control,
input[type="tel"].form-control,
input[type="password"].form-control {
  direction: ltr;
  text-align: right;
}

/* ============================================================
   BADGE / TAG
============================================================ */
.badge-new, .badge-sale, .badge-hot {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-new { background: var(--green); color: #fff; }
.badge-sale { background: var(--red); color: #fff; }
.badge-hot { background: var(--gold); color: #fff; }

/* ============================================================
   STARS
============================================================ */
.stars { color: #F5A623; display: flex; gap: 2px; }
.stars .fa-star { font-size: 0.85rem; }
.stars .fa-star-half-stroke { font-size: 0.85rem; }

/* ============================================================
   TOAST NOTIFICATIONS
============================================================ */
#toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast {
  background: var(--surface);
  color: var(--text);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  animation: toastIn 0.3s ease;
  border-right: 4px solid var(--gold);
}
.toast.success { border-right-color: var(--green); }
.toast.error   { border-right-color: var(--red); }
.toast i       { color: var(--gold); }
.toast.success i { color: var(--green); }
.toast.error i   { color: var(--red); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BREADCRUMBS
============================================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb a { color: var(--text2); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--gold); font-weight: 600; }

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-num, .page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: all var(--transition);
  background: var(--surface);
  color: var(--text2);
  border: 1px solid var(--border);
}
.page-num:hover { border-color: var(--gold); color: var(--gold); }
.page-num.active { background: var(--gradient-gold); color: #fff; border-color: transparent; }

/* ============================================================
   LOADER SCREEN
============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.loader-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.loader-name {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gold);
}
.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ============================================================
   PROMO BANNER
============================================================ */
#promo-banner {
  background: var(--gradient-gold);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 100;
}
#promo-banner a { color: #fff; text-decoration: underline; }
#promo-close {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
}
#promo-close:hover { opacity: 1; }

/* ============================================================
   NAVIGATION
============================================================ */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.nav-logo-text {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(var(--gold-rgb),0.08); }
.nav-links a i { font-size: 0.9rem; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-action-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  background: var(--surface2);
  transition: all var(--transition);
  position: relative;
}
.nav-action-btn:hover { background: rgba(var(--gold-rgb),0.12); color: var(--gold); }
.cart-count {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
#theme-toggle i { transition: transform 0.4s ease; }

#hamburger { display: none; }
.hamburger-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger-icon span:not(:last-child) { margin-bottom: 5px; }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu-links a:hover { color: var(--gold); }

/* Search Overlay */
#search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--overlay);
  backdrop-filter: blur(12px);
  z-index: 1100;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
#search-overlay.open { display: flex; }
.search-box {
  width: 100%;
  max-width: 600px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.search-box-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 4px 16px;
}
.search-box-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: var(--text);
  padding: 12px 0;
  direction: rtl;
}
.search-box-inner i { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   FOOTER
============================================================ */
#main-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: var(--text2);
  font-size: 0.95rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { width: 16px; color: var(--gold); opacity: 0.7; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: #fff; }

.footer-payment {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.payment-badge {
  background: var(--surface2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
}
.payment-badge i { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
#wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 500;
  animation: waPulse 2s infinite;
  transition: transform var(--transition);
}
#wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================================================
   CURSOR GLOW (Desktop)
============================================================ */
#cursor-glow {
  display: none;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.06) 0%, transparent 70%);
  position: fixed;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h, 108px));
  display: flex;
  align-items: center;
  overflow: hidden;
}
#smoke-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(var(--gold-rgb),0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(var(--gold-rgb),0.1);
  border: 1px solid rgba(var(--gold-rgb),0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text2);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.hero-stat-label { font-size: 0.85rem; color: var(--text2); }
.hero-visual {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 480px;
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 20px)); }
}
.hero-visual-inner {
  background: var(--gradient-gold);
  border-radius: 40% 60% 50% 50% / 40% 50% 60% 50%;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-size: 5rem;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   FEATURES STRIP
============================================================ */
.features-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
}
.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(var(--gold-rgb),0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.feature-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.feature-text span { font-size: 0.85rem; color: var(--text2); }

/* ============================================================
   CATEGORIES
============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-card:hover .category-icon { background: var(--gold); color: #fff; }
.category-card-span2 { grid-column: span 2; }
@media (max-width: 768px) { .category-card-span2 { grid-column: span 1; } }
.category-visual {
  height: 200px;
  background: linear-gradient(135deg, var(--surface2) 0%, rgba(var(--gold-rgb),0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.category-body { padding: 20px; }
.category-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--gold-rgb),0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.category-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.category-body p { font-size: 0.9rem; color: var(--text2); }

/* ============================================================
   PRODUCT CARD
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface2);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.07); }
.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface2) 0%, rgba(var(--gold-rgb),0.08) 100%);
  font-size: 3.5rem;
  color: var(--gold);
}
.product-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-wishlist {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
}
.product-wishlist:hover, .product-wishlist.active { color: #E53935; }
.product-quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--gold-rgb),0.9);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform var(--transition);
  cursor: pointer;
}
.product-card:hover .product-quick-view { transform: translateY(0); }
.product-info { padding: 16px; }
.product-category-tag { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.product-name { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.product-name a { color: var(--text); transition: color var(--transition); }
.product-name a:hover { color: var(--gold); }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-rating span { font-size: 0.85rem; color: var(--text2); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Tajawal', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--gold); }
.product-price del { font-size: 0.85rem; color: var(--text2); font-weight: 400; font-family: 'Cairo', sans-serif; }
.add-to-cart-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--gradient-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.add-to-cart-btn:hover { transform: scale(1.1); }

/* ============================================================
   COUNTER SECTION
============================================================ */
.counters-section {
  background: var(--gradient-gold);
  padding: 64px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.counter-item { color: #fff; }
.counter-num {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  display: block;
}
.counter-label { font-size: 0.95rem; opacity: 0.9; }

/* ============================================================
   BLOG CARD
============================================================ */
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-image {
  aspect-ratio: 16/9;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
}
.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.83rem; color: var(--text2); margin-bottom: 12px; }
.blog-meta i { color: var(--gold); margin-left: 4px; }
.blog-title a { color: var(--text); font-weight: 700; transition: color var(--transition); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: 0.9rem; color: var(--text2); margin: 10px 0 16px; }
.blog-read-more { color: var(--gold); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--surface2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-quote {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.4;
}
.testimonial-text { font-size: 0.95rem; color: var(--text2); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; display: block; font-size: 0.95rem; }
.testimonial-company { font-size: 0.83rem; color: var(--gold); }

/* Partners */
.partners-section { padding: 48px 0; }
.partners-title { text-align: center; color: var(--text2); font-size: 0.9rem; margin-bottom: 24px; }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.partner-pill {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text2);
  font-weight: 600;
  transition: all var(--transition);
}
.partner-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text2);
}
.trust-item i { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(var(--gold-rgb),0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 28px auto 0;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  direction: ltr;
  text-align: right;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   WHATSAPP CTA
============================================================ */
.wa-cta {
  background: linear-gradient(135deg, #1a3c27 0%, #25D366 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.wa-cta h2 { color: #fff; margin-bottom: 12px; }
.wa-cta p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.wa-cta .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #25D366;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.wa-cta .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ============================================================
   SHOP PAGE
============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: var(--header-h, 108px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.shop-sidebar h3 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-section { margin-bottom: 28px; }
.sidebar-section h4 { font-size: 0.95rem; margin-bottom: 14px; color: var(--text); }
.sidebar-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text2);
}
.sidebar-filter-item input[type="checkbox"] { accent-color: var(--gold); }
.price-range-inputs { display: flex; gap: 10px; }
.price-range-inputs input {
  flex: 1;
  padding: 10px 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-results { font-size: 0.9rem; color: var(--text2); }
.shop-sort select {
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
}
.shop-view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.view-btn.active { background: var(--gold); color: #fff; border-color: transparent; }

/* ============================================================
   SINGLE PRODUCT
============================================================ */
.product-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery { position: sticky; top: var(--header-h, 108px); }
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 16px;
  cursor: zoom-in;
  position: relative;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 12px; }
.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}
.product-thumb.active { border-color: var(--gold); }

.product-info-area { }
.product-category-link { color: var(--gold); font-size: 0.9rem; font-weight: 600; }
.product-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 12px 0; }
.product-subtitle { color: var(--text2); margin-bottom: 16px; }
.product-price-area { margin: 20px 0; }
.product-price-main { font-family: 'Tajawal', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--gold); }
.product-price-old { font-size: 1rem; color: var(--text2); text-decoration: line-through; margin-right: 8px; }
.product-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.product-variants { margin-bottom: 24px; }
.product-variants h4 { font-size: 0.95rem; margin-bottom: 12px; }
.variant-options { display: flex; gap: 10px; flex-wrap: wrap; }
.variant-btn {
  padding: 8px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  background: var(--surface);
}
.variant-btn.active, .variant-btn:hover { border-color: var(--gold); color: var(--gold); }
.product-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
  transition: background var(--transition);
}
.qty-btn:hover { background: rgba(var(--gold-rgb),0.1); }
.qty-input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: none;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.product-action-btns { display: flex; gap: 12px; margin-bottom: 24px; }
.product-action-btns .btn-primary { flex: 1; }
.wishlist-btn-large {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--surface);
}
.wishlist-btn-large:hover, .wishlist-btn-large.active { color: #E53935; border-color: #E53935; }

.product-metas { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.product-meta-item { display: flex; gap: 8px; }
.product-meta-item strong { color: var(--text); min-width: 90px; }
.product-meta-item span { color: var(--text2); }

/* Product Tabs */
.product-tabs { margin-top: 64px; }
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.tab-btn {
  padding: 12px 24px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text2);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Specs Table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: var(--surface2); }
.specs-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.specs-table td:first-child { font-weight: 600; color: var(--text); width: 40%; }
.specs-table td:last-child { color: var(--text2); }

/* Mobile Sticky CTA */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  z-index: 100;
  gap: 12px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-sticky-price { font-family: 'Tajawal', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--gold); }
.mobile-sticky-price small { font-size: 0.75rem; font-family: 'Cairo', sans-serif; color: var(--text2); display: block; font-weight: 400; }
#mobile-sticky-cta .btn-primary { flex: 1; }

/* ============================================================
   CART PAGE
============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-items { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 700; margin-bottom: 6px; }
.cart-item-category { font-size: 0.85rem; color: var(--gold); margin-bottom: 8px; }
.cart-item-price { font-weight: 700; color: var(--text2); font-size: 0.9rem; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item-total { font-family: 'Tajawal', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--gold); }
.cart-remove { color: var(--text2); font-size: 0.85rem; cursor: pointer; transition: color var(--transition); }
.cart-remove:hover { color: var(--red); }

.coupon-row {
  display: flex;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.coupon-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
}
.coupon-input:focus { outline: none; border-color: var(--gold); }

.order-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: sticky;
  top: var(--header-h, 108px);
}
.order-summary h3 { margin-bottom: 20px; font-size: 1.2rem; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.95rem; }
.summary-row span:first-child { color: var(--text2); }
.summary-row.total { font-weight: 800; font-size: 1.15rem; padding-top: 14px; border-top: 2px solid var(--border); }
.summary-row.total span:last-child { color: var(--gold); }
.order-benefits { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.order-benefit { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text2); }
.order-benefit i { color: var(--green); }

/* ============================================================
   CHECKOUT
============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.checkout-steps { display: flex; gap: 0; margin-bottom: 32px; }
.checkout-step {
  flex: 1;
  text-align: center;
  padding: 16px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text2);
  font-weight: 600;
}
.checkout-step::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.checkout-step.active { color: var(--gold); }
.checkout-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.checkout-step.active .checkout-step-num { background: var(--gradient-gold); color: #fff; border-color: transparent; }
.checkout-step.done .checkout-step-num { background: var(--green); color: #fff; border-color: transparent; }

.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-method.selected { border-color: var(--gold); background: rgba(var(--gold-rgb),0.05); }
.payment-method-icon {
  width: 44px;
  height: 44px;
  background: var(--surface2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.payment-method-info strong { display: block; font-size: 0.95rem; }
.payment-method-info span { font-size: 0.83rem; color: var(--text2); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-hero {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(var(--gold-rgb),0.05) 100%);
}
.about-story { max-width: 800px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(var(--gold-rgb),0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.branch-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.branch-card h4 { margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.branch-card h4 i { color: var(--gold); }
.branch-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; font-size: 0.9rem; color: var(--text2); }
.branch-info-row i { color: var(--gold); margin-top: 3px; width: 16px; }
.map-placeholder {
  height: 200px;
  background: var(--surface2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  color: var(--text2);
  font-size: 0.9rem;
  gap: 8px;
}

/* ============================================================
   AUTH PAGES
============================================================ */
.auth-page {
  min-height: calc(100svh - var(--header-h, 108px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header i { font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; display: block; }
.social-login { display: flex; gap: 12px; margin-bottom: 24px; }
.social-login-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.social-login-btn:hover { border-color: var(--gold); color: var(--gold); }
.auth-divider { text-align: center; position: relative; margin: 20px 0; color: var(--text2); font-size: 0.85rem; }
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.auth-divider::before { right: 0; }
.auth-divider::after { left: 0; }

/* ============================================================
   404 PAGE
============================================================ */
.notfound-page {
  text-align: center;
  padding: 100px 24px;
  min-height: calc(100svh - var(--header-h, 108px));
  display: flex;
  align-items: center;
  justify-content: center;
}
.notfound-page h1 { font-size: 8rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.notfound-page h2 { font-size: 1.8rem; margin-bottom: 12px; }
.notfound-page p { color: var(--text2); margin-bottom: 32px; }

/* ============================================================
   SINGLE POST (Blog)
============================================================ */
.post-hero { background: var(--surface2); padding: 64px 0; }
.post-content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.post-content { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.post-content h2, .post-content h3 { margin: 28px 0 12px; }
.post-content p { margin-bottom: 16px; }
.post-content img { border-radius: var(--radius); margin: 20px 0; }
.post-sidebar { position: sticky; top: var(--header-h, 108px); }
.post-sidebar-card { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); margin-bottom: 24px; }
.post-sidebar-card h4 { margin-bottom: 16px; font-size: 1rem; }

/* ============================================================
   SEARCH RESULTS
============================================================ */
.search-hero { padding: 48px 0; background: var(--surface2); text-align: center; }
.search-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-single-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .post-content-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  #hamburger { display: flex; }
  .hero-visual { display: none; }
  .hero { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values-grid, .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-layout .order-summary { order: -1; }
  .checkout-layout { grid-template-columns: 1fr; }
  .product-single-grid { grid-template-columns: 1fr; }
  #mobile-sticky-cta { display: flex; }
  .social-login { flex-direction: column; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .auth-card { padding: 24px; }
  .contact-form-card { padding: 24px; }
}
