:root {
  --navy-950: #09090b;
  --navy-900: #18181b;
  --navy-800: #27272a;
  --navy-700: #3f3f46;
  --blue-600: #585761;
  --blue-500: #66656f;
  --blue-50: #f4f4f5;
  --coral-500: #18181b;
  --coral-400: #27272a;
  --coral-50: #f4f4f5;
  --emerald-500: #10b981;
  --emerald-50: #ecfdf5;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(24,24,27,0.04);
  --shadow-sm: 0 1px 3px rgba(24,24,27,0.06), 0 1px 2px rgba(24,24,27,0.04);
  --shadow-md: 0 4px 6px -1px rgba(24,24,27,0.06), 0 2px 4px -2px rgba(24,24,27,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(24,24,27,0.06), 0 4px 6px -4px rgba(24,24,27,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(24,24,27,0.08), 0 8px 10px -6px rgba(24,24,27,0.04);
  --shadow-glow: 0 0 20px rgba(24,24,27,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { margin:0; padding:0; box-sizing:border-box; }
a { text-decoration:none !important; }

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

h1,h2,h3,h4,h5,h6 { font-family:'El Messiri',sans-serif; font-weight:700; }

/* ─── NAVBAR ─── */
.navbar-wrap {
  background: rgba(11,17,32,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 64px;
  position: relative;
}
.brand-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo {
  width: 36px; height: 36px;
  object-fit: cover;
  border-radius: 10px;
}
.brand-name {
  font-family: 'El Messiri', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-inline: auto;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nav-links a.active { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-signin {
  background: var(--coral-500);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  min-width: 96px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-signin:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.btn-track {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  min-width: 96px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-track:hover,
.btn-track:focus,
.btn-track.active {
  border-color: var(--blue-500);
  color: #fff !important;
  background: var(--blue-500);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

/* ─── FLOATING LANGUAGE CORNER SWITCHER (NO ICONS, ABBREVIATION ONLY) ─── */
.floating-lang-corner {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 1060;
  animation: heroFadeUp 0.6s ease-out;
}
.floating-lang-btn {
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 9px 20px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
}
.floating-lang-btn:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ─── HAMBURGER ─── */
.ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  margin-inline-start: auto;
  transition: all 0.2s;
  z-index: 1001;
}
.ham:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}
.ham.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO SECTION (ANIMATED & RTL/LTR) ─── */
.hero-section {
  background: radial-gradient(circle at 85% 15%, rgba(39, 39, 42, 0.45) 0%, rgba(9, 9, 11, 0) 55%),
              radial-gradient(circle at 15% 85%, rgba(24, 24, 27, 0.35) 0%, rgba(9, 9, 11, 0) 50%),
              linear-gradient(175deg, #050507 0%, #09090b 45%, #18181b 100%);
  padding: 85px 0 115px;
  position: relative;
  overflow: hidden;
}

html[dir="rtl"] .hero-section {
  direction: rtl;
  text-align: right;
}
html[dir="ltr"] .hero-section {
  direction: ltr;
  text-align: left;
}

.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  animation: ambientFloat 12s ease-in-out infinite alternate;
}
@keyframes ambientFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.08); }
  100% { transform: translate(15px, -20px) scale(0.95); }
}
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-ambient-glow.glow-1 {
  width: 550px;
  height: 550px;
  top: -150px;
  right: -100px;
  background: rgba(255, 255, 255, 0.08);
}
.hero-ambient-glow.glow-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -120px;
  background: rgba(39, 39, 42, 0.25);
}
.hero-ambient-glow.glow-3 {
  width: 350px;
  height: 350px;
  top: 30%;
  right: 40%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* ─── Hero Text Column ─── */
.hero-text-col {
  text-align: inherit;
  direction: inherit;
  animation: heroFadeUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.badge-pulse {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
}
.badge-dot {
  width: 10px;
  height: 10px;
  background-color: var(--emerald-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-500);
  animation: pulseBeacon 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f4f4f5;
  letter-spacing: -0.2px;
}

.hero-title {
  font-family: 'El Messiri', sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 18px;
  text-align: inherit;
  direction: inherit;
}
.hero-title-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #e4e4e7 60%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 1.05rem;
  color: #a1a1aa;
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 30px;
  text-align: inherit;
  direction: inherit;
}

/* ─── Hero Search Box ─── */
.hero-search-box {
  max-width: 580px;
  margin-bottom: 24px;
}
.search-field-wrap {
  display: flex;
  align-items: center;
  background: rgba(24, 24, 27, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 8px 6px 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}
.search-field-wrap:focus-within {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12), 0 12px 35px rgba(0, 0, 0, 0.4);
  background: rgba(24, 24, 27, 0.95);
}
.search-field-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  margin-inline-start: 16px;
  margin-inline-end: 10px;
}
.search-field-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: 'Cairo', sans-serif;
  text-align: inherit;
  direction: inherit;
  outline: none;
  padding: 8px 0;
}
.search-field-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.search-action-btn {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #18181b;
  padding: 10px 24px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.search-action-btn:hover {
  background: #f4f4f5;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

/* ─── Hero Quick Tags ─── */
.hero-tags-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.tags-label {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.tags-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.hero-tag-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* ─── Hero Trust Pillars ─── */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: inherit;
  direction: inherit;
}
.trust-item i {
  font-size: 1.3rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-item strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}
.trust-item small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ─── Hero Visual Showcase Column ─── */
.hero-visual-col {
  position: relative;
  animation: heroFadeUp 1s ease-out;
}
.hero-visual-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* Floating Pills */
.hero-float-card {
  position: absolute;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 12px;
  direction: inherit;
  text-align: inherit;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-top {
  top: -24px;
  inset-inline-end: -24px;
  animation-delay: 0s;
}
.hero-float-card.card-bottom {
  bottom: -24px;
  inset-inline-start: -20px;
  animation-delay: 2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.float-icon.star-icon {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.float-icon.check-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.float-content {
  display: flex;
  flex-direction: column;
}
.float-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
}
.rating-num {
  font-weight: 800;
  color: #ffffff;
  margin-inline-start: 4px;
}
.float-title {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 700;
}
.float-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}

/* Featured Card */
.hero-featured-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: heroCardFloat 6s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.hero-featured-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.featured-card-media {
  position: relative;
  width: 100%;
  height: 280px;
  background: radial-gradient(circle at center, rgba(39, 39, 42, 0.8) 0%, rgba(9, 9, 11, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-featured-card:hover .featured-img {
  transform: scale(1.05);
}
.featured-img-placeholder {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
}
.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(24, 24, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f4f4f5;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.featured-card-details {
  padding: 24px;
  text-align: right;
  direction: rtl;
}
.featured-cat {
  font-size: 0.82rem;
  color: #a1a1aa;
  font-weight: 600;
  margin-bottom: 6px;
}
.featured-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.featured-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}
.price-curr {
  font-size: 0.9rem;
  color: #d4d4d8;
  font-weight: 700;
}
.featured-btn {
  background: #ffffff;
  color: #18181b !important;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.featured-btn:hover {
  background: #f4f4f5;
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
}



/* ─── BRAND STRIP ─── */
.brand-strip {
  margin-top: -60px;
  position: relative; z-index: 10;
}
.brand-strip-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-xl);
}
.brand-strip .item { text-align:center; padding:4px; }
.brand-strip .item .ico {
  width: 50px; height: 50px;
  background: var(--blue-50);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 10px;
  font-size:1.2rem;
  color: var(--blue-600);
}
.brand-strip .item h6 {
  font-family:'Cairo',sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 1px;
}
.brand-strip .item p {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin:0;
}

/* ─── SECTION ─── */
.section { padding: 70px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy-900); }
.section-title {
  text-align:center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.section-title p {
  color: var(--gray-500);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto;
}
.section-title .bar {
  width: 44px; height: 3px;
  background: var(--coral-500);
  border-radius: 4px;
  margin: 14px auto 0;
}
.section-dark .section-title h2 { color: var(--white); }
.section-dark .section-title p { color: var(--gray-400); }

/* ─── FEATURE ─── */
.feat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.feat-card:hover {
  border-color: var(--coral-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.feat-card .ico {
  width: 58px; height: 58px;
  background: var(--coral-50);
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px;
  font-size: 1.4rem;
  color: var(--coral-500);
  transition: all 0.3s;
}
.feat-card:hover .ico {
  background: var(--coral-500);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.feat-card h5 {
  font-family:'Cairo',sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.feat-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin:0;
  line-height: 1.7;
}

/* ─── PRODUCT ─── */
.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display:flex;
  flex-direction:column;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.prod-img {
  height: 210px;
  overflow:hidden;
  background: var(--gray-100);
  position:relative;
}
.prod-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.5s;
}
.prod-card:hover .prod-img img { transform:scale(1.07); }
.prod-img .tag {
  position:absolute;
  top:12px; left:12px;
  background: var(--navy-800);
  color:#fff;
  padding:3px 12px;
  border-radius:100px;
  font-size:0.68rem;
  font-weight:700;
}
.prod-body {
  padding:18px 20px 20px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.prod-body h5 {
  font-family:'Cairo',sans-serif;
  font-size:0.92rem;
  font-weight:800;
  color:var(--navy-800);
  margin-bottom:4px;
}
.prod-body .desc {
  font-size:0.78rem;
  color:var(--gray-400);
  flex:1;
  margin-bottom:10px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.prod-body .price {
  font-size:1.1rem;
  font-weight:800;
  color:var(--blue-600);
  margin-bottom:12px;
}
.prod-body .price small { font-size:0.72rem; font-weight:600; color:var(--gray-400); }
.btn-prod {
  background:var(--navy-900);
  border:none;
  border-radius:100px;
  padding:8px 16px;
  font-size:0.8rem;
  font-weight:700;
  color:#fff;
  transition:all 0.2s;
  width:100%;
  text-align:center;
}
.btn-prod:hover { background:var(--navy-800); color:#fff; }
.btn-prod-outline {
  background:transparent;
  border:2px solid var(--navy-800);
  border-radius:100px;
  padding:10px 36px;
  font-size:0.88rem;
  font-weight:700;
  color:var(--navy-800);
  transition:all 0.2s;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-prod-outline:hover { background:var(--navy-800); color:#fff; }

/* ─── CATEGORY ─── */
.cat-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align:center;
  transition:all 0.3s;
  height:100%;
  display:block;
  color:inherit;
}
.cat-item:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color:inherit;
}
.cat-item .ico {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 10px;
  font-size:1.2rem;
  color:var(--blue-600);
  transition:all 0.3s;
}
.cat-item:hover .ico {
  background: var(--blue-600);
  color:#fff;
}
.cat-item h6 {
  font-family:'Cairo',sans-serif;
  font-size:0.85rem;
  font-weight:800;
  color:var(--navy-800);
  margin-bottom:1px;
}
.cat-item p { font-size:0.74rem; color:var(--gray-400); margin:0; }

/* ─── STEPS ─── */
.step-box { text-align:center; }
.step-box .circle {
  width: 48px; height: 48px;
  background: var(--coral-500);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px;
  font-size:1.1rem;
  font-weight:900;
  color:#fff;
  box-shadow: 0 6px 14px rgba(249,115,22,0.25);
}
.step-box h6 {
  font-family:'Cairo',sans-serif;
  font-size:0.92rem;
  font-weight:800;
  color:var(--white);
  margin-bottom:6px;
}
.step-box p {
  font-size:0.82rem;
  color:var(--gray-400);
  margin:0;
  line-height:1.7;
  max-width:260px;
  margin:0 auto;
}

/* ─── ABOUT ─── */
.about-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.about-wrap img {
  width:100%; height:100%;
  object-fit:cover;
}
.about-body {
  padding: 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.about-body h3 {
  font-size:1.5rem;
  color:var(--navy-800);
  margin-bottom:10px;
}
.about-body p {
  color:var(--gray-500);
  line-height:1.9;
  font-size:0.92rem;
  margin-bottom:20px;
}
.social-btn {
  width:42px; height:42px;
  background: var(--navy-900);
  border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.6);
  transition:all 0.2s;
}
.social-btn:hover { background:var(--coral-500); color:#fff; }

/* ─── CONTACT ─── */
.contact-section { background: var(--white); }
.contact-form .form-control {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size:0.88rem;
}
.contact-form .form-control:focus {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.06);
}
.contact-form textarea { min-height:120px; resize:vertical; }
.contact-side {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 34px;
  height:100%;
  color:#fff;
}
.contact-side .ci {
  display:flex; align-items:center; gap:14px;
  margin-bottom:18px;
}
.contact-side .ci:last-child { margin-bottom:0; }
.contact-side .ci .dot {
  width:38px; height:38px;
  background: rgba(255,255,255,0.06);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem;
  flex-shrink:0;
}
.contact-side .ci .tx {
  font-size:0.88rem;
  opacity:0.85;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-950);
  padding: 50px 0 0;
}
.footer h5 {
  font-family:'Cairo',sans-serif;
  font-size:1rem;
  font-weight:800;
  color:rgba(255,255,255,0.5);
  margin-bottom:14px;
}
.footer a:not(.fsocial) {
  display:block;
  color:rgba(255,255,255,0.25);
  font-size:0.85rem;
  margin-bottom:8px;
  transition:color 0.2s;
}
.footer a:not(.fsocial):hover { color:var(--coral-500); }
.footer .fdesc {
  font-size:0.85rem;
  color:rgba(255,255,255,0.2);
  max-width:260px;
  margin-bottom:14px;
}
.fsocial {
  width:38px; height:38px;
  background:rgba(255,255,255,0.04);
  border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.3);
  transition:all 0.2s;
}
.fsocial:hover { background:var(--coral-500); color:#fff; }
.footer .bot {
  border-top:1px solid rgba(255,255,255,0.04);
  margin-top:32px;
  padding:18px 0;
}
.footer .bot p {
  font-size:0.78rem;
  color:rgba(255,255,255,0.15);
  margin:0;
}
.footer .bot a {
  display:inline;
  font-size:0.78rem;
  color:var(--coral-500);
  font-weight:700;
}

/* ─── BOOTSTRAP OVERRIDES ─── */
.btn-primary { background-color: var(--coral-500) !important; border-color: var(--coral-500) !important; border-radius:100px !important; font-weight:700 !important; }
.btn-primary:hover { background-color: var(--coral-400) !important; border-color: var(--coral-400) !important; transform:translateY(-1px); box-shadow:var(--shadow-glow); }
.btn-outline-secondary { border-color: var(--gray-200) !important; color: var(--gray-600) !important; border-radius:100px !important; font-weight:600 !important; }
.form-control:focus { border-color: var(--coral-500) !important; box-shadow: 0 0 0 3px rgba(249,115,22,0.06) !important; }

@media (max-width: 991.98px) {
  .ham { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    inset-inline: 0;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    gap: 16px;
    z-index: 999;
  }
  .nav-menu.show { display: flex; }
  .nav-links {
    flex-direction: column;
    gap: 4px;
    margin: 0;
    width: 100%;
    padding: 0;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.92rem;
    border-radius: 8px;
  }
  .nav-actions {
    width: 100%;
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-actions .btn-signin,
  .nav-actions .btn-track {
    flex: 1;
    min-width: 0;
    padding: 10px 18px;
    font-size: 0.92rem;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 50px 0 80px;
  }
  .hero-text-col {
    text-align: center !important;
  }
  .hero-title {
    text-align: center;
    font-size: clamp(2rem, 5.5vw, 2.8rem);
  }
  .hero-desc {
    margin-inline: auto;
    text-align: center;
  }
  .hero-search-box {
    margin-inline: auto;
  }
  .hero-tags-strip {
    justify-content: center;
  }
  .hero-trust-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 70px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    line-height: 1.3;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .hero-tags-strip {
    margin-bottom: 24px;
  }
  .brand-strip {
    margin-top: -30px;
  }
  .brand-strip-inner {
    padding: 20px 16px;
  }
  .section-title h2 { font-size: 1.6rem; }
  .about-body { padding: 24px; }
}

@media (max-width: 576px) {
  .hero-badge {
    max-width: 100%;
    font-size: 0.72rem;
    padding: 5px 12px;
  }
  .search-field-wrap {
    padding: 4px 6px 4px 4px;
    border-radius: 20px;
  }
  .search-field-input {
    font-size: 0.85rem;
  }
  .search-action-btn {
    padding: 8px 18px;
    font-size: 0.82rem;
  }
  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
  }
  .brand-link { gap: 8px; }
  .brand-name { font-size: 1.05rem; }
  .brand-strip .item h6 { font-size: 0.85rem; }
  .brand-strip .item p { font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════════════
   FEEDBACK / REVIEWS & BLOG SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.section-subtitle-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 24, 27, 0.06);
  border: 1px solid rgba(24, 24, 27, 0.12);
  color: #18181b;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-subtitle-pill i {
  color: var(--blue-500);
}

/* ─── Feedback Cards ─── */
.feedback-section {
  background: #fcfcfc;
}
.feedback-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}
.feedback-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-500);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}
.feedback-card.featured-feedback {
  border-color: rgba(24, 24, 27, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.featured-review-badge {
  position: absolute;
  top: -12px;
  inset-inline-end: 20px;
  background: var(--navy-900);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.feedback-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.feedback-text {
  font-size: 0.92rem;
  color: #3f3f46;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}
.feedback-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.feedback-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(24, 24, 27, 0.06);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid rgba(24, 24, 27, 0.1);
}
.feedback-meta {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0;
}
.author-role {
  font-size: 0.76rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ─── Blog Cards ─── */
.blog-section {
  background: var(--white);
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-500);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.blog-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.06);
}
.blog-tag {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(24, 24, 27, 0.88);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.blog-meta i {
  color: var(--blue-500);
  margin-inline-end: 4px;
}
.blog-title {
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 10px;
}
.blog-title a {
  color: var(--navy-900);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-title a:hover {
  color: var(--blue-500);
}
.blog-excerpt {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-footer {
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-read-link:hover {
  color: var(--blue-500);
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   Bilingual & Bidirectional Support (LTR mode for French)
   ═══════════════════════════════════════════════════════════════ */

[dir="ltr"] body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: left;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] h5,
[dir="ltr"] h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.02em;
}

[dir="ltr"] .hero-text-col,
[dir="ltr"] .hero-title,
[dir="ltr"] .hero-desc {
  text-align: left;
}

[dir="ltr"] .search-field-input {
  text-align: left;
  direction: ltr;
  font-family: 'Inter', sans-serif;
}

[dir="ltr"] .search-field-icon {
  margin-inline-start: 14px;
  margin-inline-end: 10px;
}

[dir="ltr"] .hero-trust-bar {
  justify-content: flex-start;
}

[dir="ltr"] .trust-item {
  text-align: left;
}

[dir="ltr"] .featured-card-details {
  text-align: left;
}

[dir="ltr"] .featured-tag {
  right: auto;
  left: 16px;
}

[dir="ltr"] .prod-card .tag {
  right: auto;
  left: 14px;
}

[dir="ltr"] .prod-body {
  text-align: left;
}

[dir="ltr"] .prod-body h5,
[dir="ltr"] .prod-body .desc {
  text-align: left;
}

[dir="ltr"] .footer-col {
  text-align: left;
}

[dir="ltr"] .feedback-card,
[dir="ltr"] .blog-body {
  text-align: left;
}

[dir="ltr"] .author-name,
[dir="ltr"] .blog-title {
  font-family: 'Inter', sans-serif;
}

[dir="ltr"] .search-action-btn,
[dir="ltr"] .btn-signin,
[dir="ltr"] .btn-track,
[dir="ltr"] .btn-prod,
[dir="ltr"] .btn-lang-toggle {
  font-family: 'Inter', sans-serif;
}
