* {
  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;
  }
}

.computer-breadcrumb-wrap {
  padding: 0 0 18px;
}

.computer-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6f6f6f;
  font-size: 14px;
}

.computer-breadcrumb a {
  color: #121212;
  font-weight: 700;
}

.computer-breadcrumb a:hover {
  color: #fdca00;
}

.computer-tabs-section {
  padding: 0 0 26px;
}

.computer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.computer-tab {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.computer-tab:hover,
.computer-tab.active {
  background: #fdca00;
  color: #000000;
  transform: translateY(-2px);
}

.computer-content-section {
  padding: 0 0 72px;
}

.computer-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 26px;
  align-items: start;
}

.computer-mobile-filter-bar {
  display: none;
  margin-bottom: 18px;
}

.computer-filter-btn {
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
}

.computer-sidebar {
  position: sticky;
  top: 118px;
  align-self: start;
}

.filter-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 22px 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.filter-box h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 900;
}

.filter-scroll {
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  padding-right: 4px;
}

.filter-scroll::-webkit-scrollbar {
  width: 6px;
}

.filter-scroll::-webkit-scrollbar-thumb {
  background: rgba(253, 202, 0, 0.75);
  border-radius: 999px;
}

.filter-group {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group h4 {
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 900;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444444;
  margin-bottom: 10px;
  cursor: pointer;
  line-height: 1.4;
}

.filter-group input {
  accent-color: #fdca00;
}

.reset-filter-btn {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin: 14px 0 20px;
  transition: 0.3s ease;
}

.reset-filter-btn:hover {
  background: #fdca00;
  color: #000000;
  transform: translateY(-2px);
}

html[dir="rtl"] .reset-filter-btn,
html[data-lang="ar"] .reset-filter-btn,
html[data-lang="ku"] .reset-filter-btn {
  flex-direction: row-reverse;
}

.computer-filter-overlay {
  display: none;
}

@media (max-width: 992px) {
  .computer-filter-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 5990;
    transition: 0.3s ease;
  }

  .computer-filter-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .computer-sidebar {
    display: block !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: min(340px, 88vw);
    height: 100dvh;
    background: #fff;
    z-index: 6000;
    padding: 18px;
    overflow-y: auto;
    transform: translateX(-110%);
    transition: 0.3s ease;
  }

  .computer-sidebar.show {
    transform: translateX(0);
  }

  .computer-sidebar .filter-box {
    box-shadow: none;
  }
}

html[data-lang="ar"] .filter-box,
html[data-lang="ku"] .filter-box,
html[dir="rtl"] .filter-box {
  direction: rtl !important;
  text-align: right !important;
}

html[data-lang="ar"] .filter-box h3,
html[data-lang="ku"] .filter-box h3,
html[dir="rtl"] .filter-box h3,
html[data-lang="ar"] .filter-group h4,
html[data-lang="ku"] .filter-group h4,
html[dir="rtl"] .filter-group h4 {
  direction: rtl !important;
  text-align: right !important;
}

html[data-lang="ar"] .filter-group label,
html[data-lang="ku"] .filter-group label,
html[dir="rtl"] .filter-group label {
  width: 100% !important;
  direction: rtl !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: right !important;
}

html[data-lang="ar"] .filter-group label input,
html[data-lang="ku"] .filter-group label input,
html[dir="rtl"] .filter-group label input {
  margin: 0 !important;
  order: 0 !important;
  flex: 0 0 auto !important;
}

html[data-lang="ar"] .reset-filter-btn,
html[data-lang="ku"] .reset-filter-btn,
html[dir="rtl"] .reset-filter-btn {
  direction: rtl !important;
  flex-direction: row-reverse !important;
}

@media (max-width: 992px) {
  html[data-lang="ar"] .computer-sidebar,
  html[data-lang="ku"] .computer-sidebar,
  html[dir="rtl"] .computer-sidebar {
    left: auto !important;
    right: 0 !important;
    transform: translateX(110%) !important;
  }

  html[data-lang="ar"] .computer-sidebar.show,
  html[data-lang="ku"] .computer-sidebar.show,
  html[dir="rtl"] .computer-sidebar.show {
    transform: translateX(0) !important;
  }
}

.computer-products-area {
  min-width: 0;
}

.computer-topbar {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.computer-results {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.computer-results strong {
  font-size: 18px;
  font-weight: 900;
}

.computer-results span {
  color: #6f6f6f;
  font-size: 14px;
}

.computer-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.computer-sort label {
  font-size: 14px;
  font-weight: 800;
}

.computer-sort select {
  min-width: 190px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  background: #ffffff;
  outline: none;
}

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

.computer-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;
}

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

.computer-product-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f2f2f2, #e8e8e8);
  overflow: hidden;
}

.computer-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.computer-product-card:hover .computer-product-image img {
  transform: scale(1.05);
}

.computer-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.computer-product-brand {
  color: #fdca00;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 5px;
}

.computer-product-body h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

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

.computer-product-bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 46px 72px;
  align-items: center;
  gap: 10px;
}

.computer-product-bottom strong {
  font-size: 20px;
  font-weight: 900;
}

.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;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(253, 202, 0, 0.25);
}

.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;
}

.details-btn:hover {
  background: #fdca00;
  color: #000000;
  transform: translateY(-2px);
}

.computer-pagination {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
  background: #fdca00;
  color: #000000;
}

.page-btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.computer-services-section {
  padding: 72px 0;
  background: #efefef;
}

.computer-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.computer-service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.computer-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15);
}

.computer-service-card i {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(253, 202, 0, 0.18);
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.computer-service-card h3 {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 10px;
}

.computer-service-card p {
  color: #6f6f6f;
  line-height: 1.7;
  font-size: 14px;
}
@media (max-width: 768px) {
  .computer-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .computer-service-card {
    padding: 18px 14px;
  }

  .computer-service-card i {
    width: 46px;
    height: 46px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .computer-service-card h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .computer-service-card p {
    font-size: 12px;
    line-height: 1.5;
  }
}

html[dir="rtl"] .computer-topbar,
html[dir="rtl"] .computer-pagination {
  direction: rtl;
}

html[dir="rtl"] .computer-hero-copy,
html[dir="rtl"] .filter-box,
html[dir="rtl"] .computer-results,
html[dir="rtl"] .computer-sort,
html[dir="rtl"] .computer-product-body {
  text-align: right;
}

html[dir="rtl"] .filter-group label {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .computer-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .computer-hero-box {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .computer-hero-copy h1 {
    font-size: 36px;
  }

  .computer-layout {
    grid-template-columns: 1fr;
  }

  .computer-sidebar {
    display: none;
  }

  .computer-mobile-filter-bar {
    display: block;
  }

  .computer-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .computer-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .computer-hero {
    padding-top: 28px;
  }

  .computer-hero-copy h1 {
    font-size: 30px;
  }

  .computer-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .computer-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .computer-product-body {
    padding: 14px;
  }

  .computer-product-body h3 {
    font-size: 16px;
  }

  .computer-product-brand {
    font-size: 13px;
  }

  .computer-product-body p {
    min-height: 88px;
    max-height: 88px;
    font-size: 13px;
  }

  .computer-product-bottom {
    grid-template-columns: 1fr 42px 64px;
    gap: 8px;
  }

  .computer-product-bottom strong {
    font-size: 16px;
  }

  .cart-btn,
  .details-btn {
    height: 40px;
  }

  .computer-services-grid {
    grid-template-columns: 1fr;
  }
}

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;
}
