/* ===========================================
   Motahda Home Template — brand orange palette
   Primary: rgb(240, 133, 42) (#f0852a)
   All selectors are scoped under .motahda-home
   to avoid bleeding into other pages.
   =========================================== */

/* ---------------------------------------------------------------
   Wrapper reset
   Woodmart injects classes on <main id="main-content"> like
   `wd-content-layout`, `container`, `wd-grid-g`, `wd-sidebar-*`
   plus inline `--wd-col-lg/--wd-gap-lg` CSS variables that make
   our content render inside a 12-col grid AND double-wrap inside
   another container. The PHP filters in motahda-home-template.php
   strip those classes from the markup; this CSS block neutralises
   anything left behind (other plugins, future Woodmart updates).
   --------------------------------------------------------------- */
#main-content.motahda-home-main,
#main-content:has(> .motahda-home) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--wd-page-bg, #f7f6f3);
  /* Cancel inline grid CSS variables Woodmart injects via style="" */
  --wd-col-lg: 12;
  --wd-col-md: 12;
  --wd-col-sm: 12;
  --wd-gap-lg: 0px;
  --wd-gap-md: 0px;
  --wd-gap-sm: 0px;
}

#main-content.motahda-home-main > .motahda-home,
#main-content:has(> .motahda-home) > .motahda-home {
  grid-column: 1 / -1; /* if a parent is still a grid, span everything */
  width: 100%;
}

.motahda-home {
  /* Brand */
  --primary: rgb(240, 133, 42);
  --primary-dark: rgb(204, 110, 31);
  --primary-light: rgb(255, 159, 80);
  --primary-soft: rgba(240, 133, 42, 0.12);

  /* Complementary navy used as accent / dark contrast */
  --accent: #f0852a;
  --accent-dark: #cc6e1f;
  --navy: #02364f;
  --navy-dark: #021f33;

  --danger: #e53935;
  --success: #2e7d32;

  --bg: #f7f6f3;
  --surface: #ffffff;
  --border: #ece7df;
  --muted: #6b7785;
  --text: #1d2a36;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(2, 54, 79, 0.06);
  --shadow: 0 6px 20px rgba(240, 133, 42, 0.10);
  --shadow-lg: 0 14px 40px rgba(240, 133, 42, 0.18);
  --container: 1280px;
  --transition: 0.25s ease;

  font-family: 'Tajawal', 'Cairo', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
}

/* Global resets scoped to the home template */
.motahda-home * { box-sizing: border-box; }
.motahda-home a { color: inherit; text-decoration: none; transition: color var(--transition); }
/* Do not paint `.btn` links like body links — Woodmart `.btn` hover uses --btn-* variables */
.motahda-home a:hover:not(.btn) { color: var(--primary); }
.motahda-home img { max-width: 100%; display: block; }
.motahda-home ul { list-style: none; padding: 0; margin: 0; }
.motahda-home button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.motahda-home .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== Buttons =====
   Woodmart defines :is(.btn,…):hover using --btn-color-hover / --btn-bgcolor-hover / …
   Use those variables + higher-specificity selectors so theme + link styles cannot break hover. */
.motahda-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
  text-transform: none;
  min-height: 0;
  --btn-brd-style: solid;
  --btn-box-shadow: unset;
  --btn-box-shadow-hover: 0 6px 20px rgba(240, 133, 42, 0.14);
  --btn-color: var(--text);
  --btn-color-hover: var(--text);
  --btn-bgcolor: #f4ede4;
  --btn-bgcolor-hover: #e8dfd4;
  --btn-brd-width: 1px;
  --btn-brd-color: transparent;
  --btn-brd-color-hover: transparent;
  color: var(--btn-color);
  background-color: var(--btn-bgcolor);
  border: var(--btn-brd-width) var(--btn-brd-style) var(--btn-brd-color);
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.motahda-home .btn i { color: inherit; }
.motahda-home .btn:hover {
  transform: translateY(-1px);
  color: var(--btn-color-hover);
  background-color: var(--btn-bgcolor-hover);
  border-color: var(--btn-brd-color-hover);
  box-shadow: var(--btn-box-shadow-hover);
}

.motahda-home .btn.btn--primary {
  --btn-color: #fff;
  --btn-color-hover: var(--primary);
  --btn-bgcolor: var(--primary);
  --btn-bgcolor-hover: #fff;
  --btn-brd-width: 2px;
  --btn-brd-color: var(--primary);
  --btn-brd-color-hover: var(--primary);
}
.motahda-home .btn.btn--primary:hover {
  color: var(--primary);
  background-color: #fff;
  border-color: var(--primary);
}
.motahda-home .btn.btn--primary:hover i {
  color: var(--primary);
}

.motahda-home .btn.btn--ghost {
  --btn-color: var(--primary);
  --btn-color-hover: #fff;
  --btn-bgcolor: transparent;
  --btn-bgcolor-hover: var(--primary);
  --btn-brd-width: 2px;
  --btn-brd-color: var(--primary);
  --btn-brd-color-hover: var(--primary);
}
.motahda-home .btn.btn--ghost:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
/* Theme / FA sometimes wins color on `tel:` or icons — force readable contrast */
.motahda-home .btn.btn--ghost:hover,
.motahda-home .btn.btn--ghost:hover i {
  color: #fff !important;
}
.motahda-home .btn--block { width: 100%; }

/* ===== Hero ===== */
.motahda-home .hero { padding: 24px 0; }
.motahda-home .hero__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: start;
}

.motahda-home .slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 1600 / 521;
  min-height: 280px;
}
.motahda-home .slides { height: 100%; position: relative; }
.motahda-home .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.motahda-home .slide.is-active { opacity: 1; transform: none; }
.motahda-home .slide picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.motahda-home .slide img,
.motahda-home .slides img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
}

.motahda-home .slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 3;
  transition: all var(--transition);
}
.motahda-home .slider__btn:hover { background: var(--primary); color: #fff; }
.motahda-home .slider__btn--prev { right: 16px; }
.motahda-home .slider__btn--next { left: 16px; }

.motahda-home .slider__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  border-radius: 50px;
}
.motahda-home .slider__dots button,
.motahda-home .slider__dots > button[type="button"] {
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  min-height: 8px !important;
  max-width: 8px !important;
  max-height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.6);
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: inline-block;
  flex: 0 0 8px;
  box-sizing: border-box;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.motahda-home .slider__dots button.is-active,
.motahda-home .slider__dots > button[type="button"].is-active {
  background: var(--primary);
  transform: scale(1.5);
}

.motahda-home .hero__side { display: grid; grid-auto-rows: auto; gap: 18px; }
.motahda-home .side-banner {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  background: #f3f4f6;
}
.motahda-home .side-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.motahda-home .side-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.motahda-home .side-banner:hover img { transform: scale(1.05); }

/* ===== USP strip ===== */
.motahda-home .usp {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.motahda-home .usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.motahda-home .usp__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 14px;
  border-left: 1px dashed var(--border);
}
.motahda-home .usp__item:last-child { border-left: 0; }
.motahda-home .usp__item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.motahda-home .usp__item strong { display: block; font-weight: 700; }
.motahda-home .usp__item small { color: var(--muted); font-size: 12px; }

/* ===== Sections ===== */
.motahda-home .section { padding: 36px 0; }
.motahda-home .section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.motahda-home .section__title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -16px;
  color: var(--navy);
  font-family: 'Cairo', sans-serif;
}
.motahda-home .section__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.motahda-home .section__more {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.motahda-home .section__more:hover { color: var(--primary-dark); }

.motahda-home .section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 0;
  padding-bottom: 0;
  gap: 8px;
  margin-bottom: 36px;
}
.motahda-home .section__head--center .section__title { padding-bottom: 18px; margin-bottom: 0; }
.motahda-home .section__head--center .section__title::after {
  right: 50%;
  transform: translateX(50%);
}
.motahda-home .section--cats .section__head--center .section__more {
  margin-top: 4px;
}
.motahda-home .section__tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
}
.motahda-home .section__sub {
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 580px;
  font-size: 15px;
}

/* ===== Categories — circular, no card background, centered ===== */
.motahda-home .cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 22px;
  padding: 8px 0;
}
.motahda-home .cat {
  flex: 0 0 auto;
  width: 130px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.motahda-home .cat:hover {
  transform: translateY(-4px);
  color: var(--primary);
}
.motahda-home .cat__icon {
  width: 110px;
  height: 110px;
  background: var(--c, var(--primary-soft));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: var(--primary);
  border: 4px solid #fff;
  outline: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.motahda-home .cat__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(240, 133, 42, 0.45);
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.45s ease;
  pointer-events: none;
}
.motahda-home .cat__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.motahda-home .cat:hover .cat__icon {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 18px 40px rgba(240, 133, 42, 0.30);
}
.motahda-home .cat:hover .cat__icon::after {
  opacity: 1;
  transform: scale(1.1) rotate(20deg);
  border-color: var(--primary);
}
.motahda-home .cat strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  display: block;
}
.motahda-home .cat:hover strong { color: var(--primary); }
.motahda-home .cat small { color: var(--muted); font-size: 12px; }

/* ===== Products ===== */
.motahda-home .products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.motahda-home .card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.motahda-home .card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.motahda-home .card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f6f1ea;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.motahda-home .card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}
.motahda-home .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.motahda-home .card:hover .card__media img { transform: scale(1.05); }
.motahda-home .card__art {
  font-size: 90px;
  color: rgba(2, 54, 79, 0.18);
  transition: transform 0.6s ease;
}
.motahda-home .card:hover .card__art { transform: scale(1.1) rotate(-3deg); }

.motahda-home .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
}
.motahda-home .badge--sale { background: var(--danger); }
.motahda-home .badge--new { background: var(--success); }

.motahda-home .wish {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  z-index: 2;
  display: grid;
  place-items: center;
}
.motahda-home .wish:hover { background: var(--danger); color: #fff; }
.motahda-home .wish .fa-solid { color: var(--danger); }

.motahda-home .card__body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.motahda-home .card__brand {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.motahda-home .card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
.motahda-home .card__title a { color: inherit; }
.motahda-home .card__title a:hover { color: var(--primary); }
.motahda-home .card__rate {
  color: var(--primary);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.motahda-home .card__rate span { color: var(--muted); margin-right: 4px; }
.motahda-home .card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
}
.motahda-home .card__price ins,
.motahda-home .card__price strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}
.motahda-home .card__price del,
.motahda-home .card__price del span {
  color: var(--muted);
  font-size: 13px;
}
.motahda-home .card__price .woocommerce-Price-amount { font-weight: inherit; color: inherit; }

/* ===========================================
   About Section
   =========================================== */
.motahda-home .about { padding: 60px 0 30px; }
.motahda-home .about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.motahda-home .about__media {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.motahda-home .about__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(240, 133, 42, 0.25);
  z-index: 2;
  border: 14px solid #fff;
  outline: 1px solid var(--border);
  background: #f6f1ea;
  --pan-dx: 0px;
  --pan-dy: 0px;
}
.motahda-home .about__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}
.motahda-home .about__media:hover .about__visual img { transform: scale(1.06); }

/* Full image + pointer pan inside the frame (see motahda-home.js) */
.motahda-home .about__visual--pan {
  cursor: move;
}
.motahda-home .about__visual--pan img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: translate(calc(-50% + var(--pan-dx, 0px)), calc(-50% + var(--pan-dy, 0px)));
  transition: transform 0.55s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.motahda-home .about__visual--pan.is-panning img {
  transition-duration: 0.07s;
  transition-timing-function: linear;
}
.motahda-home .about__media:hover .about__visual--pan img {
  transform: translate(calc(-50% + var(--pan-dx, 0px)), calc(-50% + var(--pan-dy, 0px)));
}
.motahda-home .about__shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.motahda-home .about__shape--1 {
  inset: 5.5%;
  border-radius: calc(var(--radius-lg) + 10px);
  border: 2px dashed rgba(240, 133, 42, 0.30);
  animation: motahda-spin 30s linear infinite;
}
.motahda-home .about__shape--2 {
  width: 58%;
  height: 58%;
  top: -18px;
  right: -18px;
  border-radius: 28%;
  background: radial-gradient(ellipse at center, rgba(240, 133, 42, 0.2) 0%, transparent 68%);
}
@keyframes motahda-spin { to { transform: rotate(360deg); } }

.motahda-home .about__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: motahda-floaty 4s ease-in-out infinite;
}
.motahda-home .about__chip i {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.motahda-home .about__chip strong { display: block; font-size: 14px; color: var(--navy); }
.motahda-home .about__chip small { color: var(--muted); font-size: 12px; }
.motahda-home .about__chip--top { top: -12%; left: -30px; }
.motahda-home .about__chip--bottom { bottom: 12%; right: -10px; animation-delay: 1s; }
.motahda-home .about__chip--bottom i { background: var(--navy); }

@keyframes motahda-floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.motahda-home .about__tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}
.motahda-home .about__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.3;
  font-family: 'Cairo', sans-serif;
}
.motahda-home .about__title span { color: var(--primary); position: relative; }
.motahda-home .about__title span::after {
  content: ""; position: absolute; right: 0; bottom: -4px;
  width: 100%; height: 5px;
  background: var(--primary);
  border-radius: 4px;
  opacity: 0.35;
}
.motahda-home .about__lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 24px;
}
.motahda-home .about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin-bottom: 28px;
}
.motahda-home .about__features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.motahda-home .about__features i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
.motahda-home .about__features strong { display: block; color: var(--text); font-size: 15px; }
.motahda-home .about__features small { color: var(--muted); font-size: 13px; }

.motahda-home .about__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Stats ===== */
.motahda-home .stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.motahda-home .stats::before, .motahda-home .stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.motahda-home .stats::before {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(240, 133, 42, 0.22) 0%, transparent 70%);
  top: -120px; left: -80px;
}
.motahda-home .stats::after {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}
.motahda-home .stat {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.motahda-home .stat:last-child { border-left: 0; }
.motahda-home .stat__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary);
  font-size: 24px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  transition: transform var(--transition);
}
.motahda-home .stat:hover .stat__icon { transform: scale(1.1) rotate(-6deg); background: var(--primary); color: #fff; }
.motahda-home .stat__num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Cairo', sans-serif;
}
.motahda-home .stat span { color: rgba(255, 255, 255, 0.85); font-size: 14px; font-weight: 600; }

/* ===========================================
   Why Choose Us
   =========================================== */
.motahda-home .why { background: #fff; }
.motahda-home .why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.motahda-home .why__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.motahda-home .why__card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-soft);
  transition: transform 0.5s ease;
}
.motahda-home .why__card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.motahda-home .why__card:hover::before { transform: scale(8); }
.motahda-home .why__card > * { position: relative; z-index: 1; }
.motahda-home .why__icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 32px;
  color: #fff;
  transition: all var(--transition);
}
.motahda-home .why__card:hover .why__icon { transform: rotate(-8deg) scale(1.05); }
.motahda-home .why__icon--1 { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.motahda-home .why__icon--2 { background: linear-gradient(135deg, var(--navy), #014561); }
.motahda-home .why__icon--3 { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.motahda-home .why__icon--4 { background: linear-gradient(135deg, #c2185b, #6d1240); }
.motahda-home .why__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text);
}
.motahda-home .why__card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================================
   Services
   =========================================== */
.motahda-home .services { background: #fff; }
.motahda-home .services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  justify-content: center;
}
/* Fewer than four cards: keep a centered row instead of stretching into empty tracks */
.motahda-home .services__grid:has(> .service:only-child) {
  grid-template-columns: minmax(0, 400px);
}
.motahda-home .services__grid:has(> .service:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(220px, 340px));
}
.motahda-home .services__grid:has(> .service:nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(200px, 300px));
}
.motahda-home .service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.motahda-home .service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.motahda-home .service > * { position: relative; z-index: 1; transition: color 0.4s ease; }
.motahda-home .service:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.motahda-home .service:hover::before { opacity: 1; }
.motahda-home .service:hover h3,
.motahda-home .service:hover p,
.motahda-home .service:hover .service__link { color: #fff; }
.motahda-home .service:hover .service__icon {
  background: var(--navy);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.motahda-home .service__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.motahda-home .service h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text);
}
.motahda-home .service p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
  min-height: 70px;
}
.motahda-home .service__link {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===========================================
   How We Work — steps
   =========================================== */
.motahda-home .how { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.motahda-home .how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.motahda-home .how__grid::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    to left,
    var(--primary) 0 8px,
    transparent 8px 18px
  );
  z-index: 0;
}
.motahda-home .step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 22px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.motahda-home .step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.motahda-home .step__num {
  position: absolute;
  top: -22px;
  right: 50%;
  transform: translateX(50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 6px 14px rgba(240, 133, 42, 0.4);
}
.motahda-home .step__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 26px;
  display: grid;
  place-items: center;
  margin: 14px auto 16px;
  transition: all var(--transition);
}
.motahda-home .step:hover .step__icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.motahda-home .step h3 { margin: 0 0 8px; font-size: 17px; color: var(--text); }
.motahda-home .step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ===========================================
   Promo banners (image hero)
   =========================================== */
.motahda-home .promo-banner {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1024 / 320;
  min-height: 240px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.motahda-home .promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.motahda-home .promo-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s ease;
}
.motahda-home .promo-banner:hover .promo-banner__bg { transform: scale(1.04); }
.motahda-home .promo-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 70%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.45) 100%);
}
.motahda-home .promo-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 220px 30px 30px;
  text-align: center;
}
.motahda-home .promo-banner__pretitle {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 56px);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.motahda-home .promo-banner__title {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 30px);
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.motahda-home .promo-banner__pct {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 0.85;
  margin-bottom: 16px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.motahda-home .promo-banner__pct .num {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 11vw, 140px);
  color: var(--primary);
  letter-spacing: -4px;
  line-height: 0.85;
  text-shadow: 0 0 30px rgba(240, 133, 42, 0.5);
}
.motahda-home .promo-banner__pct .sym {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  color: var(--primary);
  margin-top: 8px;
}
.motahda-home .promo-banner__disclaimer {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 460px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.motahda-home .promo-banner__pay {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.motahda-home .pay-chip {
  background: #fff;
  color: #1a1a1a;
  height: 28px;
  min-width: 44px;
  padding: 0 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.motahda-home .pay-chip--text {
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, #00945d, #007a48);
  color: #fff;
}
.motahda-home .pay-chip .fa-cc-visa { color: #1a1f71; }
.motahda-home .pay-chip .fa-cc-mastercard { color: #eb001b; }
.motahda-home .pay-chip .fa-apple-pay { color: #000; font-size: 22px; }

.motahda-home .promo-banner__brand {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 200px;
  z-index: 3;
  background: linear-gradient(180deg, rgba(2, 54, 79, 0.94) 0%, rgba(2, 31, 51, 0.97) 100%);
  display: grid;
  place-items: center;
  padding: 22px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
}
.motahda-home .brand-mark {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.motahda-home .brand-mark img {
  max-width: 130px;
  max-height: 60px;
  filter: brightness(0) invert(1);
}
.motahda-home .brand-mark small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(240, 133, 42, 0.6);
  padding-top: 8px;
  margin-top: 2px;
}

/* ===========================================
   Promo strip wrapper
   =========================================== */
.motahda-home .promo-strip {
  padding: 16px 0;
  background: linear-gradient(180deg, transparent 0 50%, var(--bg) 50% 100%);
}

/* ===========================================
   Tabs (products)
   =========================================== */
.motahda-home .tabs__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.motahda-home .tabs__btn {
  padding: 10px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.motahda-home .tabs__btn i { font-size: 13px; }
.motahda-home .tabs__btn:hover { color: var(--primary); }
.motahda-home .tabs__btn.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 6px 14px rgba(240, 133, 42, 0.30);
}
.motahda-home .tabs__panel { display: none; animation: motahda-fadeIn 0.4s ease; }
.motahda-home .tabs__panel.is-active { display: block; }

/* Stacked product rows (Carbon: “Use tabbed layout” off) */
.motahda-home .showcase-stack { margin-bottom: 36px; }
.motahda-home .showcase-stack:last-child { margin-bottom: 0; }
.motahda-home .showcase-stack__title { margin: 0 0 16px; }
@keyframes motahda-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ===========================================
   Products + Side Promo
   =========================================== */
.motahda-home .products-with-aside {
  display: grid;
  grid-template-columns: minmax(320px, 380px) 1fr;
  gap: 22px;
  align-items: stretch;
}
.motahda-home .products-with-aside--reverse {
  grid-template-columns: 1fr minmax(320px, 380px);
}
.motahda-home .products--side-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 14px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(240, 133, 42, 0.10);
}
.motahda-home .products--side-grid::-webkit-scrollbar { height: 6px; }
.motahda-home .products--side-grid::-webkit-scrollbar-track { background: rgba(240, 133, 42, 0.08); border-radius: 8px; }
.motahda-home .products--side-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 8px;
}
.motahda-home .products--side-grid > .card {
  flex: 0 0 calc((100% - 16px * 2) / 3);
  min-width: 220px;
  scroll-snap-align: start;
}

.motahda-home .section__head-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.motahda-home .slider-nav {
  display: flex;
  gap: 6px;
}
.motahda-home .slider-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 13px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.motahda-home .slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

.motahda-home .promo-side {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #fff;
  align-self: stretch;
  /* Wide banner shape — box matches typical promo art; image uses cover (no stretch) */
  aspect-ratio: 16 / 9;
  min-height: 200px;
  height: auto;
}
.motahda-home .promo-side:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.motahda-home .promo-side img {
  position: absolute;
  inset: 0;
  z-index: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  object-fit: cover;
  object-position: center center;
}
.motahda-home .promo-side::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  height: 55%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.motahda-home .promo-side__cta {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  right: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.motahda-home .promo-side:hover .promo-side__cta {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.motahda-home .promo-side__cta:hover { background: var(--primary); color: #fff; }

.motahda-home .products--side-grid .card__body { padding: 12px; gap: 6px; }
.motahda-home .products--side-grid .card__title { font-size: 13px; min-height: 38px; }
.motahda-home .products--side-grid .card__price strong,
.motahda-home .products--side-grid .card__price ins { font-size: 16px; }
.motahda-home .products--side-grid .card__rate { font-size: 11px; }
.motahda-home .products--side-grid .card .btn--block { padding: 9px 12px; font-size: 13px; }

/* ===========================================
   Deals of the Day
   =========================================== */
.motahda-home .deals {
  background: linear-gradient(135deg, #fff5e6 0%, #fff 50%, #ffe8d6 100%);
  position: relative;
  overflow: hidden;
}
.motahda-home .deals::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 133, 42, 0.20) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}
.motahda-home .deals__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 26px;
}
.motahda-home .deals__tag {
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  margin-bottom: 8px;
}
.motahda-home .deals__nav {
  display: flex;
  gap: 8px;
}
.motahda-home .deals__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.motahda-home .deals__btn:hover { background: var(--primary); color: #fff; }

.motahda-home .deals__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}
.motahda-home .deals__track::-webkit-scrollbar { height: 6px; }
.motahda-home .deals__track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }

.motahda-home .deal-card {
  flex: 0 0 calc((100% - 18px * 3) / 4);
  min-width: 250px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.motahda-home .deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.motahda-home .deal-card .card__media { aspect-ratio: 4 / 3; }
.motahda-home .deal-card .card__art { font-size: 64px; }
.motahda-home .deal-card .card__body { padding: 14px; gap: 8px; }
.motahda-home .deal-card .card__title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: 40px;
  font-size: 14px;
}
.motahda-home .deal-card .card__price strong,
.motahda-home .deal-card .card__price ins { font-size: 18px; color: var(--danger); }

.motahda-home .deal-stock {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.motahda-home .deal-stock__bar {
  height: 6px;
  background: rgba(240, 133, 42, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.motahda-home .deal-stock__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--danger), var(--primary));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.motahda-home .deal-stock__bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: motahda-shine 2.2s linear infinite;
}
@keyframes motahda-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.motahda-home .deal-stock small { font-size: 11px; color: var(--muted); }

.motahda-home .deal-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 8px;
  padding: 8px 6px;
}
.motahda-home .deal-timer span {
  text-align: center;
  color: #fff;
}
.motahda-home .deal-timer span b {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  line-height: 1;
}
.motahda-home .deal-timer span i {
  display: block;
  font-style: normal;
  font-size: 10px;
  opacity: 0.85;
  margin-top: 2px;
}

/* ===========================================
   Testimonials
   =========================================== */
.motahda-home .testimonials { background: var(--bg); }
.motahda-home .testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.motahda-home .review {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  border: 1px solid var(--border);
  transition: all var(--transition);
  overflow: hidden;
}
.motahda-home .review::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.motahda-home .review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.motahda-home .review:hover::before { transform: scaleY(1); }
.motahda-home .review__quote {
  position: absolute;
  top: 22px;
  left: 26px;
  font-size: 50px;
  color: rgba(240, 133, 42, 0.10);
}
.motahda-home .review__rate {
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}
.motahda-home .review > p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin: 0 0 22px;
}
.motahda-home .review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.motahda-home .review__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg, var(--primary));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  font-family: 'Cairo', sans-serif;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.motahda-home .review__author strong { display: block; color: var(--text); font-size: 15px; }
.motahda-home .review__author small { color: var(--muted); font-size: 13px; }

/* ===========================================
   Brands
   =========================================== */
.motahda-home .brands-section { background: var(--bg); }
.motahda-home .brands {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  justify-items: center;
}
.motahda-home .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform var(--transition);
}
.motahda-home .brand__circle {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg, var(--primary));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 4px solid #fff;
  outline: 1px solid var(--border);
  overflow: hidden;
}
.motahda-home .brand__circle.has-image { background: #fff; }
.motahda-home .brand__circle.has-image img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.motahda-home .brand__circle:not(.has-image)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.18) 0%, transparent 60%);
  opacity: 0.9;
  transition: opacity var(--transition);
  pointer-events: none;
}
.motahda-home .brand__circle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(240, 133, 42, 0.45);
  opacity: 0;
  transition: all 0.45s ease;
  transform: scale(0.85);
}
.motahda-home .brand__name {
  position: relative;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.motahda-home .brand__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.motahda-home .brand:hover { transform: translateY(-6px); }
.motahda-home .brand:hover .brand__circle {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 18px 40px rgba(240, 133, 42, 0.30);
}
.motahda-home .brand:hover .brand__circle::after {
  opacity: 1;
  transform: scale(1.1) rotate(20deg);
  border-color: var(--primary);
}
.motahda-home .brand:hover .brand__label { color: var(--primary); }

/* ===== Newsletter ===== */
.motahda-home .newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 50px 0;
  color: #fff;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.motahda-home .newsletter::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
  top: -150px;
  left: -80px;
  pointer-events: none;
}
.motahda-home .newsletter__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.motahda-home .newsletter__brand img {
  max-width: 140px;
  filter: brightness(0) invert(1);
}
.motahda-home .newsletter__text h3 { margin: 0 0 6px; font-size: 26px; font-family: 'Cairo', sans-serif; }
.motahda-home .newsletter__text p { margin: 0; opacity: 0.9; }
.motahda-home .newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.motahda-home .newsletter__form input {
  border: 0;
  outline: none;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--text);
  direction: rtl;
  text-align: right;
}
.motahda-home .newsletter__form .btn {
  padding: 12px 28px;
  --btn-color: #fff;
  --btn-color-hover: #fff;
  --btn-bgcolor: var(--navy);
  --btn-bgcolor-hover: var(--navy-dark);
  --btn-brd-width: 2px;
  --btn-brd-color: var(--navy);
  --btn-brd-color-hover: var(--navy-dark);
  color: #fff;
  background-color: var(--navy);
  border-color: var(--navy);
}
.motahda-home .newsletter__form .btn:hover {
  color: #fff;
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* ===== Scroll to top ===== */
.motahda-home .to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 90;
  display: grid;
  place-items: center;
}
.motahda-home .to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.motahda-home .to-top:hover { background: var(--primary-dark); }

/* ===========================================
   RESPONSIVE
   Breakpoints:
     1280px  — narrow desktop / large tablet landscape
     1100px  — tablet landscape
      900px  — tablet portrait + landscape phones
      768px  — small tablet portrait (iPad mini etc.)
      560px  — large phones
      400px  — small phones
   =========================================== */

/* ---- Narrow desktop ---- */
@media (max-width: 1280px) {
  .motahda-home .container { padding: 0 16px; }
  .motahda-home .hero__grid { grid-template-columns: 1fr 280px; gap: 14px; }
  .motahda-home .promo-banner__content { padding: 28px 200px 28px 28px; }
}

/* ---- Tablet landscape ---- */
@media (max-width: 1100px) {
  .motahda-home .section { padding: 30px 0; }

  .motahda-home .cats { gap: 22px 18px; }
  .motahda-home .cat { width: 120px; }
  .motahda-home .cat__icon { width: 96px; height: 96px; font-size: 26px; }
  .motahda-home .brands { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .motahda-home .products { grid-template-columns: repeat(3, 1fr); }
  .motahda-home .why__grid { grid-template-columns: repeat(2, 1fr); }
  .motahda-home .services__grid { grid-template-columns: repeat(2, 1fr); }
  .motahda-home .services__grid:has(> .service:only-child) {
    grid-template-columns: minmax(0, 420px);
  }
  .motahda-home .services__grid:has(> .service:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(200px, 360px));
  }
  .motahda-home .services__grid:has(> .service:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(160px, 260px));
  }
  .motahda-home .how__grid { grid-template-columns: repeat(2, 1fr); }
  .motahda-home .how__grid::before { display: none; }
  .motahda-home .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .motahda-home .stat:nth-child(2) { border-left: 0; }
  .motahda-home .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .motahda-home .about__media { max-width: 420px; margin: 0 auto; }
  .motahda-home .about__title { font-size: 28px; }
  .motahda-home .promo-banner { aspect-ratio: 1024 / 360; min-height: 220px; }
  .motahda-home .promo-banner__content { padding: 24px 170px 24px 24px; }
  .motahda-home .promo-banner__brand { width: 160px; }

  .motahda-home .products-with-aside { grid-template-columns: minmax(260px, 300px) 1fr; gap: 18px; }
  .motahda-home .products-with-aside--reverse { grid-template-columns: 1fr minmax(260px, 300px); }
  .motahda-home .products--side-grid > .card { flex-basis: calc((100% - 16px) / 2); min-width: 200px; }
  .motahda-home .deal-card { flex-basis: calc((100% - 18px * 2) / 3); }

  .motahda-home .newsletter__inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .motahda-home .newsletter__brand { display: flex; justify-content: center; }
  .motahda-home .newsletter__form { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* ---- Tablet portrait + landscape phones ---- */
@media (max-width: 900px) {
  .motahda-home .section { padding: 28px 0; }
  .motahda-home .section__head { margin-bottom: 18px; }
  .motahda-home .section__head--center { margin-bottom: 26px; }
  .motahda-home .section__title { font-size: 20px; }

  .motahda-home .hero { padding: 16px 0; }
  .motahda-home .hero__grid { grid-template-columns: 1fr; gap: 14px; }
  .motahda-home .hero__side {
    display: none !important;
  }
  .motahda-home .slider {
    aspect-ratio: 1600 / 521;
    min-height: 200px;
    background: transparent;
    border-radius: 20px;
  }
  .motahda-home .slider.slider--has-mobile-slides {
    aspect-ratio: 4 / 5;
    min-height: 240px;
    max-height: min(88vh, 640px);
  }
  .motahda-home .slider.slider--has-mobile-slides .slide img,
  .motahda-home .slider.slider--has-mobile-slides .slides img {
    object-fit: contain !important;
    object-position: center center !important;
  }
  .motahda-home .slide img,
  .motahda-home .slides img {
    border-radius: 20px;
  }
  .motahda-home .slider__btn { width: 38px; height: 38px; }

  .motahda-home .usp { padding: 14px 0; }
  .motahda-home .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .motahda-home .usp__item { border-left: 0; padding: 4px 6px; gap: 10px; }
  .motahda-home .usp__item i { width: 42px; height: 42px; font-size: 18px; }
  .motahda-home .usp__item strong { font-size: 13px; }
  .motahda-home .usp__item small { font-size: 11px; }

  .motahda-home .about { padding: 40px 0 20px; }
  .motahda-home .about__features { grid-template-columns: 1fr; }
  .motahda-home .about__visual { border-width: 10px; }
  .motahda-home .about__chip { padding: 10px 12px; }
  .motahda-home .about__chip strong { font-size: 13px; }
  .motahda-home .about__chip i { width: 36px; height: 36px; font-size: 15px; }
  .motahda-home .about__chip--top { top: -12%; left: -30px; }
  .motahda-home .about__chip--bottom { right: 0; bottom: 6%; }
  .motahda-home .stats { margin-top: 40px; padding: 26px 22px; }

  .motahda-home .why__card { padding: 24px 18px; }
  .motahda-home .why__icon { width: 70px; height: 70px; font-size: 26px; margin-bottom: 14px; }
  .motahda-home .service { padding: 24px 18px; }
  .motahda-home .service__icon { width: 70px; height: 70px; font-size: 26px; margin-bottom: 14px; }
  .motahda-home .service p { min-height: auto; }

  .motahda-home .step { padding: 30px 18px 22px; }
  .motahda-home .step__icon { width: 60px; height: 60px; font-size: 22px; }

  .motahda-home .brands { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .motahda-home .brand__circle { width: 110px; height: 110px; }
  .motahda-home .brand__name { font-size: 14px; }
  .motahda-home .testimonials__grid { grid-template-columns: 1fr; }
  .motahda-home .review { padding: 26px 22px; }

  .motahda-home .promo-banner { aspect-ratio: auto; min-height: 360px; }
  .motahda-home .promo-banner__content { padding: 28px 130px 28px 24px; }
  .motahda-home .promo-banner__brand { width: 130px; padding: 18px 10px; }
  .motahda-home .brand-mark img { max-width: 90px; }
  .motahda-home .brand-mark small { font-size: 10px; }

  .motahda-home .products-with-aside,
  .motahda-home .products-with-aside--reverse { grid-template-columns: 1fr; }
  .motahda-home .products--side-grid > .card { flex-basis: calc((100% - 16px * 2) / 2.4); min-width: 200px; }
  .motahda-home .promo-side {
    aspect-ratio: auto;
    width: 100%;
    min-height: 0;
    height: auto;
    order: -1;
  }
  .motahda-home .promo-side img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    object-fit: contain;
    object-position: center top;
    display: block;
  }
  .motahda-home .products-with-aside--reverse .promo-side { order: 1; }
  .motahda-home .promo-side__cta {
    transform: translateY(0);
    opacity: 1;
    width: fit-content;
    left: auto;
  }
  .motahda-home .promo-side::after { opacity: 1; height: 70%; }

  .motahda-home .deal-card { flex-basis: calc((100% - 18px) / 2); min-width: 230px; }
  .motahda-home .tabs__btn { padding: 9px 16px; font-size: 13px; }
  .motahda-home .deal-timer span b { font-size: 14px; }

  .motahda-home .newsletter { padding: 40px 0; margin-top: 20px; }
  .motahda-home .newsletter__text h3 { font-size: 22px; }
}

/* ---- Small tablet portrait ---- */
@media (max-width: 768px) {
  .motahda-home .container { padding: 0 14px; }
  .motahda-home .section { padding: 26px 0; }
  .motahda-home .about__title { font-size: 26px; }
  .motahda-home .stats { grid-template-columns: repeat(2, 1fr); padding: 22px 18px; gap: 18px; }
  .motahda-home .stat__icon { width: 50px; height: 50px; font-size: 20px; margin-bottom: 8px; }
  .motahda-home .stat__num { font-size: 28px; }
  .motahda-home .deals__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .motahda-home .deals__nav { align-self: flex-end; }

  /* Horizontal swipe rows (services + brands + categories) */
  .motahda-home .services__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(240, 133, 42, 0.10);
  }
  .motahda-home .services__grid::-webkit-scrollbar { height: 6px; }
  .motahda-home .services__grid::-webkit-scrollbar-track { background: rgba(240, 133, 42, 0.08); border-radius: 8px; }
  .motahda-home .services__grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 8px;
  }
  .motahda-home .services__grid > .service {
    flex: 0 0 min(88vw, 300px);
    max-width: 300px;
    scroll-snap-align: start;
  }

  .motahda-home .brands {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(240, 133, 42, 0.10);
  }
  .motahda-home .brands::-webkit-scrollbar { height: 6px; }
  .motahda-home .brands::-webkit-scrollbar-track { background: rgba(240, 133, 42, 0.08); border-radius: 8px; }
  .motahda-home .brands::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 8px;
  }
  .motahda-home .brand {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 108px;
  }

  /* Categories row — horizontal swipe + snap */
  .motahda-home .cats {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(240, 133, 42, 0.10);
  }
  .motahda-home .cats::-webkit-scrollbar { height: 6px; }
  .motahda-home .cats::-webkit-scrollbar-track { background: rgba(240, 133, 42, 0.08); border-radius: 8px; }
  .motahda-home .cats::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 8px;
  }
  .motahda-home .cats > .cat {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  /* Product grids (not the aside “side” strip — that keeps its own flex rules) */
  .motahda-home .products:not(.products--side-grid) {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(240, 133, 42, 0.10);
  }
  .motahda-home .products:not(.products--side-grid)::-webkit-scrollbar { height: 6px; }
  .motahda-home .products:not(.products--side-grid)::-webkit-scrollbar-track {
    background: rgba(240, 133, 42, 0.08);
    border-radius: 8px;
  }
  .motahda-home .products:not(.products--side-grid)::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 8px;
  }
  .motahda-home .products:not(.products--side-grid) > .card {
    flex: 0 0 min(82vw, 300px);
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* Aside product strip — same mobile swipe + snap as other rows */
  .motahda-home .products--side-grid {
    flex-wrap: nowrap;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }
  .motahda-home .products--side-grid > .card {
    flex: 0 0 min(82vw, 300px);
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* Testimonials — horizontal swipe + snap */
  .motahda-home .testimonials__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(240, 133, 42, 0.10);
  }
  .motahda-home .testimonials__grid::-webkit-scrollbar { height: 6px; }
  .motahda-home .testimonials__grid::-webkit-scrollbar-track {
    background: rgba(240, 133, 42, 0.08);
    border-radius: 8px;
  }
  .motahda-home .testimonials__grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 8px;
  }
  .motahda-home .testimonials__grid > .review {
    flex: 0 0 min(88vw, 360px);
    max-width: 360px;
    scroll-snap-align: start;
  }
}

/* ---- Large phones ---- */
@media (max-width: 560px) {
  .motahda-home .container { padding: 0 12px; }
  .motahda-home .section { padding: 22px 0; }
  .motahda-home .section__head--center { margin-bottom: 20px; }
  .motahda-home .section__head { margin-bottom: 14px; padding-bottom: 10px; }
  .motahda-home .section__title { font-size: 18px; padding-bottom: 12px; margin-bottom: -14px; }
  .motahda-home .section__title::after { width: 50px; height: 3px; }
  .motahda-home .section__sub { font-size: 13px; }
  .motahda-home .section__tag { padding: 4px 11px; font-size: 12px; }

  .motahda-home .hero { padding: 12px 0; }
  .motahda-home .slider { aspect-ratio: 1600 / 521; min-height: 130px; border-radius: 20px; }
  .motahda-home .slider.slider--has-mobile-slides {
    aspect-ratio: 4 / 5;
    min-height: 220px;
    max-height: min(90vh, 560px);
  }
  .motahda-home .side-banner { border-radius: 14px; }
  .motahda-home .slider__btn { width: 34px; height: 34px; font-size: 12px; }
  .motahda-home .slider__btn--prev { right: 8px; }
  .motahda-home .slider__btn--next { left: 8px; }
  .motahda-home .slider__dots { bottom: 6px; padding: 2px 6px; }

  .motahda-home .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .motahda-home .usp__item { padding: 4px; gap: 8px; }
  .motahda-home .usp__item i { width: 36px; height: 36px; font-size: 16px; }
  .motahda-home .usp__item strong { font-size: 12px; line-height: 1.3; }
  .motahda-home .usp__item small { font-size: 10px; }

  .motahda-home .cats { gap: 18px 12px; }
  .motahda-home .cat { width: 96px; gap: 8px; }
  .motahda-home .cat__icon { width: 80px; height: 80px; font-size: 22px; border-width: 3px; }
  .motahda-home .cat strong { font-size: 12px; }
  .motahda-home .cat small { font-size: 11px; }

  .motahda-home .brands { gap: 14px; }
  .motahda-home .brand { gap: 10px; }
  .motahda-home .brand__circle { width: 100px; height: 100px; border-width: 3px; }
  .motahda-home .brand__name { font-size: 13px; }
  .motahda-home .brand__label { font-size: 13px; }

  .motahda-home .why__grid { grid-template-columns: 1fr; }
  .motahda-home .how__grid { grid-template-columns: 1fr; gap: 30px; }
  .motahda-home .step { padding: 28px 16px 20px; }

  .motahda-home .stats { grid-template-columns: 1fr 1fr; padding: 20px 12px; gap: 14px; margin-top: 30px; }
  .motahda-home .stat { padding: 0 4px; border-left: 0; }
  .motahda-home .stat__icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 6px; }
  .motahda-home .stat__num { font-size: 24px; }
  .motahda-home .stat span { font-size: 12px; }

  .motahda-home .about { padding: 30px 0 16px; }
  .motahda-home .about__title { font-size: 22px; }
  .motahda-home .about__lead { font-size: 14px; line-height: 1.8; }
  .motahda-home .about__visual { border-width: 8px; }
  .motahda-home .about__chip { padding: 8px 10px; }
  .motahda-home .about__chip i { width: 32px; height: 32px; font-size: 14px; }
  .motahda-home .about__chip strong { font-size: 12px; }
  .motahda-home .about__chip small { font-size: 10px; }
  .motahda-home .about__actions .btn { padding: 10px 18px; font-size: 13px; }

  .motahda-home .promo-banner { min-height: 380px; border-radius: 14px; }
  .motahda-home .promo-banner__brand {
    inset: auto 0 0 0;
    width: 100%;
    height: 76px;
    flex-direction: row;
    clip-path: polygon(0 14px, 100% 0, 100% 100%, 0 100%);
    padding: 12px 16px 8px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .motahda-home .brand-mark { flex-direction: row; gap: 10px; }
  .motahda-home .brand-mark img { max-width: 80px; }
  .motahda-home .brand-mark small {
    border-top: 0;
    border-right: 1px solid rgba(240, 133, 42, 0.55);
    padding: 0 8px 0 0;
    margin: 0;
  }
  .motahda-home .promo-banner__content { padding: 20px 18px 96px; }
  .motahda-home .promo-banner__pretitle { font-size: 32px; }
  .motahda-home .promo-banner__title { font-size: 16px; margin-bottom: 6px; }
  .motahda-home .promo-banner__pct { margin-bottom: 12px; }
  .motahda-home .promo-banner__pct .num { font-size: 80px; letter-spacing: -2px; }
  .motahda-home .promo-banner__pct .sym { font-size: 44px; }
  .motahda-home .promo-banner__disclaimer { font-size: 11px; max-width: 100%; margin-bottom: 10px; }
  .motahda-home .pay-chip { height: 24px; min-width: 38px; padding: 0 8px; font-size: 14px; }
  .motahda-home .pay-chip--text { font-size: 11px; }
  .motahda-home .pay-chip .fa-apple-pay { font-size: 18px; }

  .motahda-home .products--side-grid { gap: 12px; }
  .motahda-home .products--side-grid > .card { flex-basis: 80%; min-width: 200px; }
  .motahda-home .section__head-right { gap: 8px; }
  .motahda-home .slider-btn { width: 32px; height: 32px; font-size: 11px; }
  .motahda-home .promo-side {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
  }
  .motahda-home .promo-side__cta { font-size: 12px; padding: 8px 14px; bottom: 14px; right: 14px; }

  .motahda-home .deals__btn { width: 38px; height: 38px; font-size: 12px; }
  .motahda-home .deal-card { flex-basis: 78%; min-width: 220px; }
  .motahda-home .deal-card .card__media { aspect-ratio: 1 / 1; }
  .motahda-home .deal-timer { padding: 6px 4px; }
  .motahda-home .deal-timer span b { font-size: 13px; }
  .motahda-home .deal-timer span i { font-size: 9px; }

  .motahda-home .tabs__nav { width: 100%; padding: 4px; gap: 4px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; border-radius: 14px; -webkit-overflow-scrolling: touch; }
  .motahda-home .tabs__nav::-webkit-scrollbar { height: 0; }
  .motahda-home .tabs__btn { padding: 8px 14px; font-size: 12px; }

  .motahda-home .review { padding: 22px 18px; }
  .motahda-home .review > p { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
  .motahda-home .review__quote { font-size: 40px; top: 18px; left: 18px; }
  .motahda-home .review__avatar { width: 44px; height: 44px; font-size: 14px; }

  .motahda-home .products:not(.products--side-grid) { gap: 12px; }
  .motahda-home .card__body { padding: 10px; gap: 6px; }
  .motahda-home .card__title { font-size: 13px; min-height: 38px; }
  .motahda-home .card__price strong, .motahda-home .card__price ins { font-size: 16px; }
  .motahda-home .badge { padding: 3px 9px; font-size: 11px; top: 8px; right: 8px; }
  .motahda-home .wish { width: 30px; height: 30px; font-size: 12px; top: 8px; left: 8px; }

  .motahda-home .newsletter { padding: 32px 0; margin-top: 16px; }
  .motahda-home .newsletter__inner { gap: 18px; }
  .motahda-home .newsletter__brand img { max-width: 110px; }
  .motahda-home .newsletter__text h3 { font-size: 20px; }
  .motahda-home .newsletter__text p { font-size: 13px; }
  .motahda-home .newsletter__form { grid-template-columns: 1fr; padding: 6px; }
  .motahda-home .newsletter__form input { padding: 11px 12px; font-size: 13px; text-align: right; }
  .motahda-home .newsletter__form .btn { padding: 11px 18px; font-size: 13px; }

  .motahda-home .to-top { width: 40px; height: 40px; bottom: 16px; left: 16px; font-size: 14px; }
}

/* ---- Small phones (under 400px) ---- */
@media (max-width: 400px) {
  .motahda-home .container { padding: 0 10px; }
  .motahda-home .section__title { font-size: 17px; }
  .motahda-home .usp__item small { display: none; }
  .motahda-home .usp__item strong { font-size: 12px; }
  .motahda-home .cat { width: 84px; }
  .motahda-home .cat__icon { width: 70px; height: 70px; font-size: 20px; }
  .motahda-home .brands { gap: 12px; }
  .motahda-home .brand__circle { width: 86px; height: 86px; }
  .motahda-home .about__chip--top { display: none; }
  .motahda-home .promo-banner__pct .num { font-size: 68px; }
  .motahda-home .promo-banner__pct .sym { font-size: 38px; }
  .motahda-home .promo-banner__pretitle { font-size: 26px; }
  .motahda-home .stats { grid-template-columns: 1fr; }
  .motahda-home .stat { border-left: 0; }
  .motahda-home .products:not(.products--side-grid) { gap: 10px; }
  .motahda-home .deal-card { flex-basis: 90%; }
}
