:root {
  --primary: #0b1a2e;
  --primary-light: #0d2137;
  --secondary: #1a3a5c;
  --accent: #d4a853;
  --accent-light: #e8c66a;
  --accent-dark: #b8923a;
  --text-light: #f0f0f0;
  --text-muted: #a0b0c0;
  --text-dark: #1a1a2e;
  --bg-light: #f8f6f1;
  --bg-card: #ffffff;
  --bg-section: #ffffff;
  --glass: rgba(11, 26, 46, 0.85);
  --glass-border: rgba(212, 168, 83, 0.15);
  --shadow: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-hover: 0 30px 80px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --border-color: #e0e0e0;
  --text-secondary: #666;
  --text-tertiary: #777;
  --input-bg: #fafafa;
  --text: #1a1a2e;
  --border: #e0e0e0;
  --card: #ffffff;
  --background: #ffffff;
  --foreground: #1a1a2e;
  --muted-foreground: #666666;
  --primary-foreground: #ffffff;
  --card-foreground: #1a1a2e;
  --accent-foreground: #0b1a2e;
}

[data-theme="dark"] {
  --primary: #0b1a2e;
  --primary-light: #0d2137;
  --secondary: #1a3a5c;
  --text-light: #f0f0f0;
  --text-muted: #8899aa;
  --text-dark: #e8e8e8;
  --bg-light: #0a0f1a;
  --bg-card: #111827;
  --bg-section: #0d1421;
  --glass: rgba(8, 16, 30, 0.92);
  --glass-border: rgba(212, 168, 83, 0.1);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-hover: 0 30px 80px rgba(0,0,0,0.4);
  --border-color: #1e293b;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  --input-bg: #1e293b;
  --text: #e8e8e8;
  --border: #1e293b;
  --card: #111827;
  --background: #0a0f1a;
  --foreground: #e8e8e8;
  --muted-foreground: #94a3b8;
  --primary-foreground: #ffffff;
  --card-foreground: #e8e8e8;
  --accent-foreground: #0b1a2e;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

::selection { background: var(--accent); color: var(--primary); }

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary, #0b1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.preloader-logo-wrap {
  background: #fff;
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 12px 50px rgba(0,0,0,0.2);
  opacity: 0;
  transform: scale(0.7);
  animation: prelogoIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}
.preloader-logo {
  width: 180px;
  height: auto;
  display: block;
  will-change: transform;
  animation: logoSpin 3s linear infinite;
}
@keyframes prelogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes logoSpin {
  to { transform: rotate(360deg); }
}
.preloader-bar {
  width: 140px;
  height: 2px;
  background: rgba(212,168,83,0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent, #d4a853);
  border-radius: 2px;
  animation: preloaderBar 0.8s ease 0.3s forwards;
  transform: scaleX(0);
  transform-origin: left;
}
@keyframes preloaderBar {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 4px 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.header.scrolled .logo img { height: 36px; }
.logo-text {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}
.logo-text span { color: var(--accent); }

/* ===== HEADER CONTROLS (THEME + LANG + CURRENCY) ===== */
.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
}
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(30deg);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  position: absolute;
  transition: var(--transition);
}
[data-theme="dark"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg); }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0); }

.lang-switcher {
  display: flex;
  gap: 2px;
}
.lang-btn {
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn:first-child { border-radius: 6px 0 0 6px; }
.lang-btn:last-child { border-radius: 0 6px 6px 0; }
.lang-btn.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.lang-btn:hover:not(.active) {
  color: var(--text-light);
  border-color: rgba(255,255,255,0.2);
}

.currency-selector {
  position: relative;
}
.currency-btn {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.currency-btn:hover {
  color: var(--accent);
  border-color: rgba(212,168,83,0.3);
}
.currency-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
  min-width: 100px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.currency-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.currency-option {
  padding: 10px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}
.currency-option:hover { background: rgba(212,168,83,0.08); color: var(--accent); }
.currency-option.active { background: rgba(212,168,83,0.12); color: var(--accent); font-weight: 700; }

/* ===== NAV ===== */
.nav-wrapper {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--accent); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }
.nav-arrow { font-size: 0.6rem; transition: var(--transition); }
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: rgba(212,168,83,0.1);
  color: var(--accent);
}
.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dropdown-text {
  display: flex;
  flex-direction: column;
}
.dropdown-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}
.dropdown-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,83,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,58,92,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212,168,83,0.05) 0%, transparent 50%);
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero .container { position: relative; z-index: 1; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero-content {
  padding: 120px 0 80px;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-2deg);
  transition: var(--transition);
}
.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), transparent 50%);
  opacity: 0.15;
  pointer-events: none;
}
.hero-image-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(11,26,46,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212,168,83,0.12);
  padding: 14px 22px;
  border-radius: 12px;
  color: var(--text-light);
}
.hero-image-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-image-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-image-card span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  color: var(--accent);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.6s ease forwards;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
  pointer-events: none;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(212,168,83,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,168,83,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--text-light);
  color: var(--primary);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}
.hero-stat h3 {
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.section-label::before, .section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.4;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-header h2 span { color: var(--accent); }
.section-header p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
.section-services { background: var(--bg-section); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  border-radius: 12px;
}
.service-card .service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  transition: var(--transition);
}
.service-card:hover .service-icon svg { color: var(--primary); }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== ABOUT PREVIEW (HOME) ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0.1;
}
.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 26, 46, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 83, 0.15);
  padding: 18px 28px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
}
.about-image-badge h4 { font-size: 1.6rem; color: var(--accent); font-weight: 800; }
.about-image-badge p { font-size: 0.85rem; opacity: 0.7; }
.about-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.about-text h3 span { color: var(--accent); }
.about-text p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}
.about-feature svg { flex-shrink: 0; color: var(--accent); }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.product-body {
  padding: 18px;
}
.product-body .category {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.product-body h3 {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.product-body p {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}
.product-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 50px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.btn-sm:hover { background: var(--secondary); }

/* ===== PRODUCT FILTERS ===== */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: #666;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.testimonials .section-header h2 { color: var(--text-light); }
.testimonials .section-header p { color: rgba(255,255,255,0.5); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: serif;
  pointer-events: none;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,168,83,0.15);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.testimonial-author h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
}
.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212,168,83,0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(212,168,83,0.05) 0%, transparent 60%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.cta h2 span { color: var(--accent); }
.cta p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo img { height: 50px; }
.footer-brand .logo-text {
  font-size: 1.1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer h4 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact a.footer-phone {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a.footer-phone:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--primary);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,168,83,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(26,58,92,0.3) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-light);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.team-card h4 { color: var(--primary); font-size: 1.05rem; }
.team-card span {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}
.team-card p {
  color: #777;
  font-size: 0.88rem;
  margin-top: 8px;
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--text-light);
}
.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-info-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.contact-social { transition: background 0.3s ease, transform 0.3s ease; }
.contact-social:hover { background: rgba(212,168,83,0.2) !important; transform: translateY(-3px); }
.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: #fafafa;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--primary);
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  font-weight: 800;
}
.page-header h1 span { color: var(--accent); }
.page-header p {
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-size: 1.2rem; color: var(--primary); }
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
}
.modal-close:hover { color: var(--primary); transform: rotate(90deg); }
.modal-body { padding: 32px; }
.modal-body img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.modal-body h4 { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.modal-body h2 { font-size: 1.6rem; color: var(--primary); margin-bottom: 16px; }
.modal-body p { color: #666; line-height: 1.8; margin-bottom: 16px; }
.modal-body ul { padding-left: 20px; }
.modal-body li { color: #666; margin-bottom: 8px; list-style: disc; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(212,168,83,0.25);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,168,83,0.4);
}

/* ===== ULTRA-MODERN EFFECTS ===== */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(212,168,83,0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
  border: 1px solid var(--primary);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* 3D Tilt Cards */
.tilt-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-3d .tilt-content {
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}
.tilt-3d:hover .tilt-content {
  transform: rotateX(var(--rotX)) rotateY(var(--rotY));
}

/* Reveal Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger Children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.9s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RTL SUPPORT ===== */
body.rtl { direction: rtl; }
body.rtl .nav-links { direction: rtl; }
body.rtl .dropdown-menu { left: auto; right: 0; }
body.rtl .dropdown-menu li a { flex-direction: row-reverse; }
body.rtl .header-controls { margin-left: 0; margin-right: 24px; }
body.rtl .hero-content { margin-left: auto; }
body.rtl .hero p { margin-left: auto; }
body.rtl .about-feature { flex-direction: row-reverse; }
body.rtl .about-image-badge { left: auto; right: 24px; }
body.rtl .product-footer { flex-direction: row-reverse; }
body.rtl .product-price span { margin-left: 0; margin-right: 8px; }
body.rtl .footer h4::after { left: auto; right: 0; }
body.rtl .footer-links a:hover { padding-left: 0; padding-right: 4px; }
body.rtl .contact-item { flex-direction: row-reverse; }
body.rtl .section-label::before, body.rtl .section-label::after { display: none; }
body.rtl .scroll-top { right: auto; left: 30px; }
body.rtl .hero-stats { direction: rtl; }
body.rtl .currency-dropdown { right: auto; left: 0; }
body.rtl .currency-option { text-align: right; }
body.rtl .lang-btn:first-child { border-radius: 0 6px 6px 0; }
body.rtl .lang-btn:last-child { border-radius: 6px 0 0 6px; }
body.rtl .product-badge { left: auto; right: 16px; }

body.rtl .form-group label { text-align: right; }
body.rtl .modal-header { flex-direction: row-reverse; }
body.rtl .modal-body ul { padding-left: 0; padding-right: 20px; }
body.rtl .service-card::before { transform-origin: right; }
body.rtl .service-card {
  text-align: right;
}
body.rtl .service-icon { margin-left: 0; margin-right: 0; }
body.rtl .testimonial-card { text-align: right; }
body.rtl .testimonial-author { flex-direction: row-reverse; }
body.rtl .team-card { text-align: center; }
body.rtl .hero-badge { direction: ltr; }
[data-theme="dark"] .section-header p,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .about-text p,
[data-theme="dark"] .product-body p { color: var(--text-secondary); }
[data-theme="dark"] .section-header h2 { color: var(--text-light); }
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .about-text h3,
[data-theme="dark"] .product-body h3,
[data-theme="dark"] .team-card h4 { color: var(--text-light); }
[data-theme="dark"] .team-card p { color: var(--text-secondary); }
[data-theme="dark"] .about-feature { color: var(--text-muted); }
[data-theme="dark"] .contact-form h3 { color: var(--text-light); }
[data-theme="dark"] .form-group label { color: var(--text-secondary); }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
  background: var(--input-bg);
  border-color: var(--border-color);
  color: var(--text-light);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
  background: var(--bg-card);
}
[data-theme="dark"] .product-price { color: var(--text-light); }
[data-theme="dark"] .modal-header { border-color: var(--border-color); }
[data-theme="dark"] .modal-header h3 { color: var(--text-light); }
[data-theme="dark"] .modal-body h2 { color: var(--text-light); }
[data-theme="dark"] .modal-body p { color: var(--text-secondary); }
[data-theme="dark"] .modal-body li { color: var(--text-secondary); }
[data-theme="dark"] .modal-close:hover { color: var(--text-light); }
[data-theme="dark"] .filter-btn { border-color: var(--border-color); color: var(--text-secondary); }
[data-theme="dark"] .section[style*="background: #fff"] { background: var(--bg-section) !important; }

/* ===== CATALOG HERO ===== */
.catalog-hero {
  position: relative;
  padding: 160px 0 60px;
  overflow: hidden;
}
.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 0;
}
.catalog-hero .container { position: relative; z-index: 1; }
.catalog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-light);
  font-weight: 800;
  margin-bottom: 12px;
}
.catalog-hero h1 span { color: var(--accent); }
.catalog-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
}

/* ===== CATALOG CONTROLS ===== */
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.catalog-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 360px;
}
.catalog-search input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  background: var(--input-bg);
  color: var(--text-dark);
  transition: var(--transition);
}
.catalog-search input:focus {
  outline: none;
  border-color: var(--accent);
}
.catalog-sort {
  padding: 10px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  background: var(--input-bg);
  color: var(--text-dark);
  cursor: pointer;
}

/* ===== ENHANCED PRODUCT CARD (CATALOG) ===== */
.product-card.catalog-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card.catalog-card .product-image { height: 200px; }
.product-card.catalog-card .product-body { padding: 20px; }
.product-card.catalog-card .product-body h3 { font-size: 1rem; margin-bottom: 4px; }
.product-card.catalog-card .product-body .rating {
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.product-card.catalog-card .product-body p { font-size: 0.82rem; margin-bottom: 12px; }
.product-card.catalog-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}
.price-old {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}
.price-discount {
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
}
.price-original {
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-add-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-add-cart:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.1);
}
[data-theme="dark"] .price-current { color: var(--text-light); }
[data-theme="dark"] .catalog-controls { background: var(--bg-card); }
[data-theme="dark"] .catalog-search input,
[data-theme="dark"] .catalog-sort { background: var(--input-bg); border-color: var(--border-color); color: var(--text-light); }

/* ===== CATALOG BANNER ===== */
.catalog-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.catalog-banner h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 700;
}
.catalog-banner h3 span { color: var(--accent); }
.catalog-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.catalog-banner .btn { flex-shrink: 0; }

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.blog-card-image {
  height: 200px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-body {
  padding: 24px;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}
.blog-card:hover .blog-card-body h3 { color: var(--accent); }
.blog-card-body p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }
[data-theme="dark"] .blog-card-body h3 { color: var(--text-light); }
[data-theme="dark"] .blog-card-body p { color: var(--text-muted); }

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 60px 24px;
  color: #999;
  display: none;
}
.no-results h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-dark); }
.no-results p { color: var(--text-secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { transform: none; }
  .hero-image img { height: 360px; }
  .hero-content { padding: 100px 0 60px; }
  .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-image img { height: 360px; }
  .page-hero { padding: 150px 0 60px; }
  .page-header { padding: 120px 0 50px; }
  .catalog-hero { padding: 140px 0 50px; }
}

@media (max-width: 768px) {
  /* — HEADER / NAV — */
  .header { padding: 12px 0; }
  .header.scrolled { padding: 8px 0; }
  .logo img { height: 36px; }
  .header.scrolled .logo img { height: 32px; }
  .nav-wrapper {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 16, 30, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 90px 24px 24px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
    align-items: stretch;
    z-index: 999;
  }
  body.rtl .nav-wrapper {
    right: auto;
    left: -100%;
    border-left: none;
    border-right: 1px solid var(--glass-border);
  }
  .nav-wrapper.active { right: 0; }
  body.rtl .nav-wrapper.active { right: auto; left: 0; }
  .nav-links {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  .nav-links > li > a { padding: 10px 0; font-size: 0.95rem; }
  .nav-links > li > a::after { display: none; }
  .nav-arrow { display: none; }
  .has-dropdown > a { pointer-events: auto; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
    margin-bottom: 8px;
    display: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 4px;
    border-radius: 10px;
    min-width: 0;
    pointer-events: auto;
  }
  .dropdown-menu.open { display: block; }
  .dropdown-menu li a { padding: 10px 12px; font-size: 0.82rem; }
  .dropdown-icon { width: 30px; height: 30px; font-size: 0.85rem; }
  .dropdown-text strong { font-size: 0.82rem; }
  .dropdown-text span { font-size: 0.68rem; }
  .header-controls {
    margin-left: 0;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  body.rtl .header-controls { margin-right: 0; }
  .lang-btn { padding: 4px 8px; font-size: 0.65rem; }
  .currency-btn { padding: 4px 8px; font-size: 0.7rem; }
  .theme-toggle { width: 34px; height: 34px; font-size: 0.85rem; }
  .currency-selector { order: 3; }
  .hamburger { display: flex; z-index: 1000; }

  /* — HERO — */
  .hero { min-height: auto; }
  .hero-content { padding: 100px 0 40px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero p { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; margin-top: 40px; padding-top: 24px; }
  .hero-stat { flex: 1; min-width: 100px; }
  .hero-stat h3 { font-size: 1.6rem; }
  .hero-stat p { font-size: 0.75rem; }
  .hero-image img { height: 240px; }
  .hero-image-card { bottom: 12px; left: 12px; right: 12px; padding: 10px 16px; }
  body.rtl .hero-image-card { left: 12px; right: 12px; }
  .hero-image-icon { width: 36px; height: 36px; }
  .hero-image-card strong { font-size: 0.8rem; }
  .hero-image-card span { font-size: 0.7rem; }

  /* — SECTIONS — */
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section-header p { font-size: 0.9rem; }
  .container { padding: 0 12px; }

  /* — ABOUT — */
  .about-preview { gap: 24px; }
  .about-image img { height: 260px; }
  .about-image-badge { bottom: 12px; left: 12px; right: 12px; padding: 12px 18px; }
  body.rtl .about-image-badge { left: 12px; right: 12px; }
  .about-image-badge h4 { font-size: 1.2rem; }
  .about-text h3 { font-size: 1.3rem; }
  .about-text p { font-size: 0.88rem; }
  .about-features { grid-template-columns: 1fr; gap: 8px; }

  /* — SERVICES — */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 1.05rem; }

  /* — PRODUCTS — */
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .product-card .product-image { height: 180px; }
  .product-card.catalog-card .product-image { height: 160px; }
  .product-body { padding: 16px; }
  .product-body h3 { font-size: 0.95rem; }
  .product-body p { font-size: 0.8rem; }
  .product-filters { gap: 8px; margin-bottom: 24px; }
  .filter-btn { padding: 8px 18px; font-size: 0.8rem; }

  /* — CATALOG — */
  .catalog-controls { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .catalog-search { max-width: 100%; }
  .catalog-sort { width: 100%; }
  .catalog-banner { flex-direction: column; text-align: center; padding: 24px; gap: 16px; }
  .catalog-banner h3 { font-size: 1.1rem; }
  .catalog-banner .btn { width: 100%; justify-content: center; }

  /* — PAGE HEADERS — */
  .page-hero { padding: 110px 0 50px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero p { font-size: 0.9rem; }
  .page-header { padding: 100px 0 40px; }
  .page-header h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .catalog-hero { padding: 110px 0 40px; }
  .catalog-hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .catalog-hero p { font-size: 0.9rem; }

  /* — BLOG — */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-image { height: 180px; }
  .blog-card-body { padding: 18px; }

  /* — TEAM — */
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .team-card { padding: 24px 16px; }

  /* — TESTIMONIALS — */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }

  /* — CONTACT — */
  .contact-grid { gap: 24px; }
  .contact-info-card { padding: 24px; }
  .contact-form { padding: 24px; }
  .contact-form h3 { font-size: 1.15rem; }

  /* — FOOTER — */
  .footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .logo img { height: 40px; }
  .footer h4 { font-size: 0.9rem; margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* — MODAL — */
  .modal-overlay { padding: 12px; align-items: flex-end; }
  .modal-content { border-radius: 16px 16px 0 0; max-height: 85vh; }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .modal-header { padding: 16px 20px; }
  .modal-header h3 { font-size: 1rem; }
  .modal-body { padding: 20px; }
  .modal-body img { height: 200px; }
  .modal-body h2 { font-size: 1.2rem; }
  .modal-body p { font-size: 0.88rem; }

  /* — CTA — */
  .cta { padding: 60px 0; }
  .cta h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .cta p { font-size: 0.9rem; }

  /* — MISC — */
  .wave-divider { height: 30px; }
  .blob { display: none; }
  .scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }
  body.rtl .scroll-top { right: auto; left: 16px; }
  .hero-badge { font-size: 0.7rem; padding: 6px 16px; margin-bottom: 20px; }
  .btn { padding: 12px 24px; font-size: 0.82rem; }
  .no-results { padding: 40px 16px; }
  .no-results h3 { font-size: 1.1rem; }
  .marquee-track { gap: 24px; }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .container { padding: 0 8px; }
  .logo { gap: 8px; }
  .logo-text { display: none; }
  .logo img { height: 32px; }
  .header.scrolled .logo img { height: 28px; }
  .nav-wrapper { width: 100%; }
  .hero-content { padding: 90px 0 30px; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero p { font-size: 0.88rem; margin-bottom: 28px; }
  .hero-actions .btn { padding: 10px 20px; font-size: 0.8rem; }
  .hero-image img { height: 200px; }
  .hero-stats { gap: 12px; }
  .hero-stat h3 { font-size: 1.3rem; }
  .hero-stat { min-width: 80px; }
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 1.2rem; }
  .about-image img { height: 200px; }
  .about-image-badge { padding: 10px 14px; }
  .about-image-badge h4 { font-size: 1rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card .product-image { height: 140px; }
  .product-card.catalog-card .product-image { height: 130px; }
  .product-body { padding: 12px; }
  .product-body h3 { font-size: 0.85rem; }
  .product-body p { font-size: 0.75rem; margin-bottom: 8px; }
  .product-body .category { font-size: 0.65rem; }
  .product-filters { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: 0.72rem; }
  .product-price { font-size: 1rem; }
  .price-current { font-size: 0.95rem; }
  .btn-add-cart { width: 30px; height: 30px; font-size: 0.85rem; }
  .page-hero { padding: 90px 0 40px; }
  .page-hero h1 { font-size: 1.4rem; }
  .catalog-hero { padding: 90px 0 30px; }
  .catalog-hero h1 { font-size: 1.3rem; }
  .page-header { padding: 80px 0 30px; }
  .catalog-controls { padding: 12px; }
  .catalog-banner { padding: 20px; }
  .catalog-banner h3 { font-size: 1rem; }
  .contact-info-card { padding: 18px; }
  .contact-form { padding: 18px; }
  .contact-item { gap: 12px; }
  .contact-icon { width: 40px; height: 40px; }
  .footer-grid { gap: 24px; }
  .modal-body img { height: 160px; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-card-image { height: 160px; }
  .cta { padding: 40px 0; }
  .hero-badge { font-size: 0.65rem; padding: 4px 12px; margin-bottom: 16px; }
  .marquee-track { gap: 16px; }
  .marquee-item { font-size: 0.78rem; }
  .testimonial-card { padding: 20px; }
  .section-label::before, .section-label::after { width: 20px; margin: 0 8px; }
}

/* ===== RTL MOBILE REFINEMENTS ===== */
/* ===== CALCULATOR ===== */
.calc-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  background: white;
  font-size: 0.9rem;
  color: #333;
  outline: none;
  transition: border 0.3s ease;
}
.calc-select:focus { border-color: var(--accent); }
[data-theme="dark"] .calc-select { background: #1a2236; border-color: #333; color: #ddd; }
.calc-mode-btn { cursor: pointer; transition: all 0.3s ease; }
.calc-mode-btn.active { background: var(--accent) !important; color: var(--primary) !important; border-color: var(--accent) !important; }
[data-theme="dark"] .calc-mode-btn:not(.active) { background: transparent; border-color: #333; color: #aaa; }

@keyframes dashFlow { to { stroke-dashoffset: -21; } }
.animate-dash-flow { animation: dashFlow 1.2s linear infinite; will-change: stroke-dashoffset; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.5); opacity: 0; } }
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }

.pin { position:absolute; transform:translate(-50%,-50%); z-index:2; will-change:transform; }
.pin:hover .pin-dot { transform:scale(1.3); }
.pin-dot {
  display:block; width:11px; height:11px; border-radius:50%;
  background:var(--accent); margin:0 auto;
  box-shadow:0 0 0 4px rgba(212,168,83,0.2), 0 0 0 8px rgba(212,168,83,0.1),
    inset 0 -2px 3px rgba(0,0,0,0.3);
  animation:pinPulse 2.4s ease-out infinite;
  transition:transform 0.3s ease;
}
@keyframes pinPulse {
  0% { box-shadow:0 0 0 4px rgba(212,168,83,0.25), 0 0 0 10px rgba(212,168,83,0.12); }
  50% { box-shadow:0 0 0 7px rgba(212,168,83,0.18), 0 0 0 14px rgba(212,168,83,0.06); }
  100% { box-shadow:0 0 0 4px rgba(212,168,83,0.25), 0 0 0 10px rgba(212,168,83,0.12); }
}
.pin-label {
  display:block; text-align:center; margin-top:7px;
  font-size:11px; font-weight:700; color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,0.9), 0 0 4px rgba(0,0,0,0.5);
  letter-spacing:0.5px; white-space:nowrap;
}

body.rtl .catalog-banner { text-align: center; }
body.rtl .product-filters { flex-direction: row-reverse; }
@media (max-width: 768px) {
  body.rtl .hero-actions .btn { flex-direction: row-reverse; }
  body.rtl .catalog-controls .catalog-search input { text-align: right; }
}
@media (max-width: 480px) {
  body.rtl .logo-text { display: none; }
}
