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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Noto Kufi Arabic", sans-serif;
  background: #f5f5f5;
  color: #121212;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:root {
  --primary: #fdca00;
  --black: #000000;
  --black-soft: #0d0d0d;
  --black-card: #151515;
  --white: #ffffff;
  --text: #121212;
  --muted: #6f6f6f;
  --bg-light: #f5f5f5;
  --bg-soft: #efefef;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 18px 48px rgba(0, 0, 0, 0.15);
  --radius: 18px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.alt-bg {
  background: var(--bg-soft);
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 900;
}

.section-head h2 span {
  color: var(--primary);
}

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-copy h2 {
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: 900;
}

.section-copy p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--black);
  box-shadow: 0 16px 36px rgba(253, 202, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(253, 202, 0, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.view-more {
  font-weight: 800;
  color: var(--black);
  position: relative;
  transition: var(--transition);
}

.view-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.view-more:hover::after {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4000;
}

.header-top {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  justify-content: flex-start;
}

.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  justify-content: flex-end;
}

.header-icon {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  flex: 0 0 auto;
}

.header-icon:hover {
  background: rgba(253, 202, 0, 0.12);
  transform: translateY(-2px);
}

.icon-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-switcher {
  position: relative;
  z-index: 6000;
  flex: 0 0 auto;
}

.lang-btn {
  min-width: 88px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(253, 202, 0, 0.35);
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(253, 202, 0, 0.12);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 170px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  padding: 8px;
  display: none;
  z-index: 7000;
}

.lang-menu.show {
  display: block;
}

.lang-option {
  width: 100%;
  border: none;
  background: transparent;
  text-align: start;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  color: #111;
  transition: var(--transition);
}

.lang-option:hover {
  background: rgba(253, 202, 0, 0.14);
}

.menu-toggle,
.mobile-toolbar,
.mobile-menu-overlay,
.mobile-side-menu {
  display: none;
}

.header-top-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 240px minmax(420px, 1fr) 240px;
  align-items: center;
  gap: 24px;
}

.desktop-search-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
}

.desktop-search-input {
  width: 100%;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: #ececec;
  border-radius: 999px;
  padding: 0 56px 0 18px;
  outline: none;
  transition: var(--transition);
}

.desktop-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(253, 202, 0, 0.12);
}

.desktop-search-input::placeholder {
  color: #767676;
}

.desktop-search-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--black);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.desktop-search-btn:hover {
  background: var(--primary);
  color: var(--black);
}

.header-nav-row {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.desktop-nav {
  width: 100%;
}

.desktop-nav-list {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  list-style: none;
  white-space: nowrap;
}

.desktop-nav-list > li {
  position: relative;
}

.desktop-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 0;
  position: relative;
  transition: var(--transition);
}

.desktop-nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.desktop-nav-list > li > a:hover::after {
  width: 100%;
}

.desktop-nav-list > li > a:hover {
  transform: translateY(-1px);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  display: none;
  z-index: 5000;
}

.has-dropdown:hover .mega-dropdown {
  display: block;
}

.mega-dropdown a {
  display: block;
  padding: 10px 12px;
  color: #111;
  border-radius: 10px;
  transition: var(--transition);
}

.mega-dropdown a:hover {
  background: rgba(253, 202, 0, 0.14);
}

html[data-lang="ar"] .header-top-inner,
html[data-lang="ku"] .header-top-inner {
  grid-template-columns: 240px minmax(420px, 1fr) 240px;
}

html[data-lang="ar"] .desktop-search-input,
html[data-lang="ku"] .desktop-search-input {
  padding: 0 18px 0 56px;
  text-align: right;
}

html[data-lang="ar"] .desktop-search-btn,
html[data-lang="ku"] .desktop-search-btn {
  right: auto;
  left: 5px;
}

html[data-lang="ar"] .lang-menu,
html[data-lang="ku"] .lang-menu {
  right: auto;
  left: 0;
}

html[data-lang="ar"] .desktop-nav,
html[data-lang="ku"] .desktop-nav {
  direction: rtl;
}

html[data-lang="ar"] .desktop-nav-list,
html[data-lang="ku"] .desktop-nav-list {
  direction: rtl;
  justify-content: flex-start;
}

html[data-lang="ar"] .desktop-nav-list > li > a,
html[data-lang="ku"] .desktop-nav-list > li > a {
  direction: rtl;
  text-align: right;
}

html[data-lang="ar"] .desktop-nav-list > li > a::after,
html[data-lang="ku"] .desktop-nav-list > li > a::after {
  left: auto;
  right: 0;
}

html[data-lang="ar"] .mega-dropdown,
html[data-lang="ku"] .mega-dropdown {
  left: auto;
  right: 0;
}

@media (max-width: 992px) {
  .desktop-search-wrap,
  .desktop-only,
  .header-nav-row {
    display: none !important;
  }

  .menu-toggle,
  .mobile-toolbar,
  .mobile-menu-overlay,
  .mobile-side-menu {
    display: block;
  }

  .header-top-inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: 56px 1fr 92px;
    grid-template-areas: "menu logo actions";
    align-items: center;
    gap: 10px;
    padding: 0 16px;
  }

  .menu-toggle {
    grid-area: menu;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    justify-self: start;
    align-self: center;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    display: block;
    margin: 5px auto;
    border-radius: 2px;
  }

  .site-logo {
    grid-area: logo;
    justify-self: center;
    justify-content: center;
    align-items: center;
  }

  .site-logo img {
    height: 30px;
    width: auto;
  }

  .header-actions {
    grid-area: actions;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }

  .lang-btn {
    min-width: 80px;
    height: 40px;
    padding: 0 10px;
    gap: 8px;
  }

  .lang-menu {
    position: fixed;
    top: 82px;
    right: 16px;
    left: auto;
    width: 160px;
    z-index: 7000;
  }

  .mobile-toolbar {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-toolbar-inner {
    min-height: 60px;
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    grid-template-areas: "cart search account";
    gap: 10px;
    align-items: center;
    padding: 0 16px;
  }

  .mobile-toolbar-inner > .header-icon:first-child {
    grid-area: cart;
    justify-self: start;
  }

  .mobile-search-wrap {
    grid-area: search;
    position: relative;
  }

  .mobile-toolbar-inner > .header-icon:last-child {
    grid-area: account;
    justify-self: end;
  }

  .mobile-search-input {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: #ececec;
    color: #111;
    padding: 0 50px 0 14px;
    outline: none;
    text-align: left;
  }

  .mobile-search-btn {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: var(--primary);
    cursor: pointer;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 4990;
  }

  .mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .mobile-side-menu {
    position: fixed;
    top: 132px;
    left: 0;
    right: auto;
    width: min(320px, 86vw);
    height: calc(100dvh - 132px);
    background: #111;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    z-index: 5000;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.35);
  }

  .mobile-side-menu.show {
    transform: translateX(0);
  }

  .mobile-side-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 14px 24px;
    gap: 4px;
  }

  .mobile-nav-link,
  .mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    padding: 13px 10px;
    border-radius: 12px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
  }

  .mobile-submenu {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px;
  }

  .mobile-nav-item.open .mobile-submenu {
    display: block;
  }

  .mobile-submenu a {
    display: block;
    color: var(--white);
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 10px;
    text-align: left;
  }

  html[data-lang="ar"] .header-top-inner,
  html[data-lang="ku"] .header-top-inner {
    display: grid !important;
    grid-template-columns: 92px 1fr 56px !important;
    grid-template-areas: "actions logo menu" !important;
    align-items: center !important;
    direction: ltr !important;
  }

  html[data-lang="ar"] .header-actions,
  html[data-lang="ku"] .header-actions {
    grid-area: actions !important;
    justify-self: start !important;
    justify-content: flex-start !important;
    margin: 0 !important;
  }

  html[data-lang="ar"] .site-logo,
  html[data-lang="ku"] .site-logo {
    grid-area: logo !important;
    justify-self: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  html[data-lang="ar"] .menu-toggle,
  html[data-lang="ku"] .menu-toggle {
    grid-area: menu !important;
    justify-self: end !important;
    margin: 0 !important;
  }

  html[data-lang="ar"] .lang-menu,
  html[data-lang="ku"] .lang-menu {
    right: auto !important;
    left: 16px !important;
  }

  html[data-lang="ar"] .mobile-toolbar-inner,
  html[data-lang="ku"] .mobile-toolbar-inner {
    grid-template-areas: "account search cart";
  }

  html[data-lang="ar"] .mobile-toolbar-inner > .header-icon:first-child,
  html[data-lang="ku"] .mobile-toolbar-inner > .header-icon:first-child {
    justify-self: end;
  }

  html[data-lang="ar"] .mobile-toolbar-inner > .header-icon:last-child,
  html[data-lang="ku"] .mobile-toolbar-inner > .header-icon:last-child {
    justify-self: start;
  }

  html[data-lang="ar"] .mobile-search-input,
  html[data-lang="ku"] .mobile-search-input {
    text-align: right !important;
    direction: rtl !important;
    padding: 0 14px 0 50px !important;
  }

  html[data-lang="ar"] .mobile-search-btn,
  html[data-lang="ku"] .mobile-search-btn {
    right: auto !important;
    left: 4px !important;
  }

  html[data-lang="ar"] .mobile-side-menu,
  html[data-lang="ku"] .mobile-side-menu {
    left: auto !important;
    right: 0 !important;
    transform: translateX(110%) !important;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.35) !important;
  }

  html[data-lang="ar"] .mobile-side-menu.show,
  html[data-lang="ku"] .mobile-side-menu.show {
    transform: translateX(0) !important;
  }

  html[data-lang="ar"] .mobile-side-nav,
  html[data-lang="ku"] .mobile-side-nav {
    direction: rtl;
  }

  html[data-lang="ar"] .mobile-nav-link,
  html[data-lang="ar"] .mobile-nav-toggle,
  html[data-lang="ku"] .mobile-nav-link,
  html[data-lang="ku"] .mobile-nav-toggle {
    direction: rtl !important;
    text-align: right !important;
  }

  html[data-lang="ar"] .mobile-nav-link {
    justify-content: flex-start;
  }

  html[data-lang="ar"] .mobile-nav-toggle,
  html[data-lang="ku"] .mobile-nav-toggle {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  html[data-lang="ar"] .mobile-nav-link > span,
  html[data-lang="ar"] .mobile-nav-toggle > span,
  html[data-lang="ku"] .mobile-nav-link > span,
  html[data-lang="ku"] .mobile-nav-toggle > span {
    display: block !important;
    width: 100% !important;
    text-align: right !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  html[data-lang="ar"] .mobile-nav-toggle i,
  html[data-lang="ku"] .mobile-nav-toggle i {
    order: -1 !important;
    margin-right: 0 !important;
    margin-left: auto !important;
  }

  html[data-lang="ar"] .mobile-submenu,
  html[data-lang="ku"] .mobile-submenu {
    direction: rtl;
  }

  html[data-lang="ar"] .mobile-submenu a,
  html[data-lang="ku"] .mobile-submenu a {
    display: block !important;
    width: 100% !important;
    direction: rtl !important;
    text-align: right !important;
  }
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 20;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-arrow:hover {
  background: var(--primary);
  color: #000;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  width: 28px;
  background: var(--primary);
}

.hero + section,
.hero + .section,
.hero + div {
  margin-top: 60px;
}

@media (max-width: 992px) {
  .hero-slider {
    height: 320px;
  }

  .hero-controls {
    bottom: 15px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .hero + section,
  .hero + .section,
  .hero + div {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 260px;
  }

  .hero + section,
  .hero + .section,
  .hero + div {
    margin-top: 30px;
  }
}

.brands-strip {
  padding: 26px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.brands-strip-inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-pill {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.brand-pill:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .brands-strip-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .brands-strip-inner::-webkit-scrollbar {
    height: 6px;
  }

  .brands-strip-inner::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 999px;
  }
}

.promo-wide-section .container {
  max-width: 1100px;
}

.promo-wide-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
}

.promo-wide-image {
  width: 420px;
  height: 420px;
  background: #f5f5f5;
}

.promo-wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-wide-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-tag {
  width: fit-content;
  background: var(--primary);
  color: #000;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.promo-brand {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.promo-wide-copy h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 14px;
}

.promo-wide-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.promo-price-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.promo-price {
  font-size: 34px;
  font-weight: 900;
  color: #000;
}

.promo-old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}

.promo-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.promo-actions a,
.promo-actions button {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s ease;
}

.promo-add-cart {
  background: var(--primary);
  color: #000;
  border: 1px solid var(--primary);
}

.promo-add-cart:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.promo-actions .btn-secondary {
  background: #111;
  color: #fff;
  border: 1px solid #111;
}

.promo-actions .btn-secondary:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.promo-actions .btn-outline {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.promo-actions .btn-outline:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.promo-offer-gallery {
  position: relative;
}

.promo-offer-thumbs {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.promo-offer-thumb {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  opacity: 0.85;
}

.promo-offer-thumb.active {
  border-color: var(--primary);
  opacity: 1;
}

.promo-offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .promo-offer-thumbs {
    left: 12px;
    bottom: 12px;
  }

  .promo-offer-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

.home-category-card i {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(253, 202, 0, 0.16);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.home-category-card h3 {
  font-size: 22px;
  font-weight: 800;
}

.home-category-card span {
  font-weight: 800;
  color: var(--primary);
}

.home-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.home-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.home-feature-copy span {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
  display: inline-block;
}

.home-feature-copy h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
}

.home-feature-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.home-feature-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 25px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.home-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.home-feature-card i {
  width: 55px;
  height: 55px;
  background: rgba(255, 193, 7, 0.15);
  color: #000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.home-feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.home-feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

.home-dynamic-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
  margin-bottom: 35px;
}

.products-loading {
  grid-column: span 4;
  text-align: center;
  padding: 30px;
  font-weight: 700;
}

.home-related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-related-services article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.home-related-services article:hover {
  transform: translateY(-5px);
}

.home-related-services article i {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(255, 193, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.home-related-services article h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.home-related-services article p {
  color: var(--muted);
  line-height: 1.7;
}

.dark-services article {
  background: #111;
  color: #fff;
  border: none;
}

.dark-services article p {
  color: rgba(255, 255, 255, 0.75);
}

.dark-services article i {
  background: var(--primary);
  color: #000;
}

.home-final-services {
  background: #111;
  color: white;
}

.home-final-services .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.home-service-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.home-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.home-service-card:hover {
  transform: translateY(-6px);
  background: var(--primary);
  color: #000;
}

.home-service-card i {
  font-size: 28px;
  margin-bottom: 18px;
}

.home-service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.home-service-card p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.home-service-card:hover p,
.home-service-card.highlight p {
  color: #000;
}

.home-service-card.highlight {
  background: var(--primary);
  color: #000;
}

.cta-section {
  padding: 72px 0;
}

.cta-box {
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: var(--white);
  border-radius: 28px;
  padding: 34px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(253, 202, 0, 0.16);
}

.cta-box h2 {
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: 900;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .promo-wide-card {
    grid-template-columns: 1fr;
  }

  .promo-wide-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .home-feature-block {
    grid-template-columns: 1fr;
  }

  .home-dynamic-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-service-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .brands-strip-inner,
  .home-category-grid,
  .home-dynamic-products,
  .home-related-services,
  .home-service-showcase {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .brands-strip-inner {
    justify-content: flex-start;
  }

  .brand-pill {
    flex: 0 0 auto;
  }

  .home-category-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
    min-height: 190px;
  }

  .home-dynamic-products .product-card,
  .home-dynamic-products article {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .home-related-services article {
    flex: 0 0 46%;
    scroll-snap-align: start;
    padding: 18px;
  }

  .home-service-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .home-feature-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .home-feature-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .home-feature-copy h2 {
    font-size: 30px;
  }

  .promo-wide-section .container {
    width: 94%;
    max-width: 430px;
  }

  .promo-wide-copy {
    padding: 22px 16px 24px;
    text-align: center;
  }

  .promo-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .promo-wide-copy h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .promo-wide-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .promo-price-box {
    justify-content: center;
  }

  .promo-actions {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }

  .promo-actions a,
  .promo-actions button {
    height: 48px;
    font-size: 12px;
    padding: 0 6px;
    border-radius: 13px;
  }

  .cta-box h2 {
    font-size: 24px;
  }
}

.home-dynamic-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
  margin-bottom: 35px;
}

.home-dynamic-products .product-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.home-dynamic-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15);
}

.home-dynamic-products .computer-product-image,
.home-dynamic-products .storage-product-image,
.home-dynamic-products .monitors-product-image,
.home-dynamic-products .printers-product-image,
.home-dynamic-products .network-product-image,
.home-dynamic-products .cctv-product-image,
.home-dynamic-products .pc-product-image,
.home-dynamic-products .education-product-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f2f2f2, #e8e8e8);
  overflow: hidden;
}

.home-dynamic-products .computer-product-image img,
.home-dynamic-products .storage-product-image img,
.home-dynamic-products .monitors-product-image img,
.home-dynamic-products .printers-product-image img,
.home-dynamic-products .network-product-image img,
.home-dynamic-products .cctv-product-image img,
.home-dynamic-products .pc-product-image img,
.home-dynamic-products .education-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.home-dynamic-products .product-card:hover img {
  transform: scale(1.05);
}

.home-dynamic-products .computer-product-body,
.home-dynamic-products .storage-product-body,
.home-dynamic-products .monitors-product-body,
.home-dynamic-products .printers-product-body,
.home-dynamic-products .network-product-body,
.home-dynamic-products .cctv-product-body,
.home-dynamic-products .pc-product-body,
.home-dynamic-products .education-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-dynamic-products .computer-product-brand,
.home-dynamic-products .storage-product-brand,
.home-dynamic-products .monitors-product-brand,
.home-dynamic-products .printers-product-brand,
.home-dynamic-products .network-product-brand,
.home-dynamic-products .cctv-product-brand,
.home-dynamic-products .pc-product-brand,
.home-dynamic-products .education-product-brand {
  color: #fdca00;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 5px;
}

.home-dynamic-products h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

.home-dynamic-products p {
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.65;
  min-height: 92px;
  max-height: 92px;
  overflow: hidden;
  margin-bottom: 16px;
}

.home-dynamic-products .computer-product-bottom,
.home-dynamic-products .storage-product-bottom,
.home-dynamic-products .monitors-product-bottom,
.home-dynamic-products .printers-product-bottom,
.home-dynamic-products .network-product-bottom,
.home-dynamic-products .cctv-product-bottom,
.home-dynamic-products .pc-product-bottom,
.home-dynamic-products .education-product-bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 46px 72px;
  align-items: center;
  gap: 10px;
}

.home-dynamic-products strong {
  font-size: 20px;
  font-weight: 900;
}

.home-dynamic-products .cart-btn,
.home-dynamic-products .storage-cart-btn,
.home-dynamic-products .monitors-cart-btn,
.home-dynamic-products .printers-cart-btn,
.home-dynamic-products .network-cart-btn,
.home-dynamic-products .cctv-cart-btn,
.home-dynamic-products .pc-cart-btn,
.home-dynamic-products .education-cart-btn {
  width: 46px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: #fdca00;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.home-dynamic-products .cart-btn:hover,
.home-dynamic-products .storage-cart-btn:hover,
.home-dynamic-products .monitors-cart-btn:hover,
.home-dynamic-products .printers-cart-btn:hover,
.home-dynamic-products .network-cart-btn:hover,
.home-dynamic-products .cctv-cart-btn:hover,
.home-dynamic-products .pc-cart-btn:hover,
.home-dynamic-products .education-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(253, 202, 0, 0.25);
}

.home-dynamic-products .details-btn,
.home-dynamic-products .storage-details-btn,
.home-dynamic-products .monitors-details-btn,
.home-dynamic-products .printers-details-btn,
.home-dynamic-products .network-details-btn,
.home-dynamic-products .cctv-details-btn,
.home-dynamic-products .pc-details-btn,
.home-dynamic-products .education-details-btn {
  height: 42px;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.3s ease;
  text-decoration: none;
}

.home-dynamic-products .details-btn:hover,
.home-dynamic-products .storage-details-btn:hover,
.home-dynamic-products .monitors-details-btn:hover,
.home-dynamic-products .printers-details-btn:hover,
.home-dynamic-products .network-details-btn:hover,
.home-dynamic-products .cctv-details-btn:hover,
.home-dynamic-products .pc-details-btn:hover,
.home-dynamic-products .education-details-btn:hover {
  background: #fdca00;
  color: #000000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .home-dynamic-products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding-bottom: 0 !important;
  }

  .home-dynamic-products .product-card,
  .home-dynamic-products article {
    width: 100% !important;
    flex: none !important;
    scroll-snap-align: unset !important;
  }

  .home-dynamic-products h3 {
    font-size: 15px;
  }

  .home-dynamic-products p {
    font-size: 12px;
    min-height: 62px;
    max-height: 62px;
    margin-bottom: 12px;
  }

  .home-dynamic-products .computer-product-body,
  .home-dynamic-products .storage-product-body,
  .home-dynamic-products .monitors-product-body,
  .home-dynamic-products .printers-product-body,
  .home-dynamic-products .network-product-body,
  .home-dynamic-products .cctv-product-body,
  .home-dynamic-products .pc-product-body,
  .home-dynamic-products .education-product-body {
    padding: 12px;
  }

  .home-dynamic-products .computer-product-bottom,
  .home-dynamic-products .storage-product-bottom,
  .home-dynamic-products .monitors-product-bottom,
  .home-dynamic-products .printers-product-bottom,
  .home-dynamic-products .network-product-bottom,
  .home-dynamic-products .cctv-product-bottom,
  .home-dynamic-products .pc-product-bottom,
  .home-dynamic-products .education-product-bottom {
    grid-template-columns: 1fr 38px 54px;
    gap: 6px;
  }

  .home-dynamic-products strong {
    font-size: 14px;
  }

  .home-dynamic-products .cart-btn,
  .home-dynamic-products .storage-cart-btn,
  .home-dynamic-products .monitors-cart-btn,
  .home-dynamic-products .printers-cart-btn,
  .home-dynamic-products .network-cart-btn,
  .home-dynamic-products .cctv-cart-btn,
  .home-dynamic-products .pc-cart-btn,
  .home-dynamic-products .education-cart-btn {
    width: 38px;
    height: 36px;
    border-radius: 12px;
  }

  .home-dynamic-products .details-btn,
  .home-dynamic-products .storage-details-btn,
  .home-dynamic-products .monitors-details-btn,
  .home-dynamic-products .printers-details-btn,
  .home-dynamic-products .network-details-btn,
  .home-dynamic-products .cctv-details-btn,
  .home-dynamic-products .pc-details-btn,
  .home-dynamic-products .education-details-btn {
    height: 36px;
    border-radius: 12px;
    font-size: 12px;
  }
}

html[dir="rtl"] body {
  font-family: "Noto Kufi Arabic", "Outfit", sans-serif;
}

html[dir="rtl"] .section-row,
html[dir="rtl"] .split-card-head,
html[dir="rtl"] .product-meta,
html[dir="rtl"] .footer-bar-inner {
  direction: rtl;
}

html[dir="rtl"] .fcol ul li a:hover,
html[dir="rtl"] .service-list li:hover {
  transform: translateX(-4px);
}

.footer {
  background: var(--black);
  color: var(--white);
}

.footer-main {
  padding: 54px 0 32px;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.fcol h4 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 18px;
}

.fcol p,
.fcol li a,
.fcol li span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.fcol ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.fcol ul li a {
  transition: var(--transition);
}

.fcol ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.socials {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(253, 202, 0, 0.25);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--black);
  transform: translateY(-3px);
}

.fcol-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcol-contact i {
  color: var(--primary);
  width: 16px;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

html[dir="rtl"] .phone-number,
html[data-lang="ar"] .phone-number,
html[data-lang="ku"] .phone-number,
html[dir="rtl"] .contact-number,
html[data-lang="ar"] .contact-number,
html[data-lang="ku"] .contact-number,
html[dir="rtl"] a[href^="tel:"] span,
html[data-lang="ar"] a[href^="tel:"] span,
html[data-lang="ku"] a[href^="tel:"] span {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-block !important;
}
