:root {
  --bg: #f2f5f8;
  --surface: #ffffff;
  --surface-soft: #eef2f6;
  --charcoal: #1f2a36;
  --charcoal-soft: #566577;
  --silver: #8d98a6;
  --silver-dark: #707c89;
  --gold: #b68b4c;
  --border: #d8dee6;
  --radius: 18px;
  --shadow: 0 16px 38px rgba(24, 37, 52, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: "Montserrat", "Inter", sans-serif;
  background: radial-gradient(circle at 8% 6%, #ffffff 0%, var(--bg) 52%, #e9eef4 100%);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: rgba(244, 248, 252, 0.9);
  border-bottom: 1px solid rgba(31, 42, 54, 0.09);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(23, 33, 45, 0.08);
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 18px;
}

.brand {
  order: 3;
  justify-self: end;
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  display: grid;
  text-align: right;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eef3f8;
  box-shadow: 0 10px 22px rgba(34, 43, 56, 0.16);
}

.brand-en {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-ar {
  font-size: 0.73rem;
  color: var(--charcoal-soft);
}

nav {
  order: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  text-decoration: none;
  color: #223242;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  width: auto;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

nav a:hover {
  color: #1a2c3e;
  background: rgba(255, 255, 255, 0.7);
}

.mobile-toggle {
  display: none;
  order: 1;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--charcoal);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(26, 39, 55, 0.08);
}

.lang-toggle {
  order: 1;
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, #203040, #2f4559);
  color: #f7f8fa;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 18px;
  cursor: pointer;
  position: static;
  z-index: 1;
  box-shadow: 0 10px 22px rgba(23, 41, 60, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #25384a, #395268);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(20, 36, 53, 0.24);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center center;
  color: #f6f6f6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18, 32, 46, 0.76) 16%, rgba(18, 32, 46, 0.48) 58%, rgba(18, 32, 46, 0.34));
}

.hero-content {
  position: relative;
  padding-top: 130px;
  padding-bottom: 70px;
  max-width: 800px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--silver);
  margin-bottom: 10px;
  font-weight: 600;
}

.hero .eyebrow {
  font-size: clamp(0.94rem, 1.3vw, 1.1rem);
  letter-spacing: 0.1em;
  color: #efd7ad;
  font-weight: 700;
  text-shadow: 0 4px 14px rgba(14, 24, 34, 0.35);
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", "Inter", serif;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.hero-sub {
  margin-top: 20px;
  max-width: 65ch;
  color: #e2e7ed;
  font-size: 1.02rem;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.btn-primary {
  background: linear-gradient(145deg, #203040, #2f4559);
  color: #f4f6f9;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(18, 22, 27, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #f6f6f6;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(5px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.section {
  padding: 100px 0;
}

section[id] {
  scroll-margin-top: 88px;
}

.section-alt {
  background: linear-gradient(180deg, #eff3f7 0%, #ebf0f5 100%);
  border-top: 1px solid #dbe2ea;
  border-bottom: 1px solid #dbe2ea;
}

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

.section-head.left {
  text-align: left;
}

.section h2 {
  margin: 0;
  font-family: "Playfair Display", "Inter", serif;
  font-size: clamp(1.5rem, 3.3vw, 2.4rem);
  color: var(--charcoal);
}

.section-categories {
  background: #f5f7fa;
  border-top: 1px solid #e0e7ef;
  border-bottom: 1px solid #e0e7ef;
}

.section-categories .section-head .eyebrow {
  color: #6a7d90;
}

.section-categories .section-head h2 {
  color: #1f2e3d;
  text-shadow: none;
}

.category-intro {
  margin: -6px auto 18px;
  max-width: 64ch;
  text-align: center;
  color: #5c6d7e;
  font-size: 0.98rem;
  font-weight: 500;
}

.category-hub {
  background: #ffffff;
  border: 1px solid #d7e1ec;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(28, 41, 56, 0.06);
}

.category-wall {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
}

.category-wall li {
  list-style: none;
}

.category-pill {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #f7fafd;
  border: 1px solid #d3dde8;
  border-radius: 8px;
  padding: 10px 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #334455;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.category-pill:hover {
  border-color: #bac7d6;
  background-color: #ffffff;
  color: #1f2f40;
}

.category-pill:focus-visible {
  outline: 2px solid rgba(245, 213, 156, 0.9);
  outline-offset: 2px;
}

.premium-slider {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  align-items: center;
  gap: 10px;
  direction: ltr;
}

.slider-viewport {
  grid-column: 2;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 44px;
}

.slider-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.slider-track.single-slide {
  justify-content: center;
}

.slider-track.single-slide .category-slide {
  flex: 0 1 min(760px, 100%);
  width: min(760px, 100%);
}

.category-slide {
  position: relative;
  flex: 0 0 62.5%;
  min-width: 320px;
  max-width: 760px;
  min-height: 320px;
  border-radius: 24px;
  padding: 34px 28px 22px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(165deg, rgba(250, 252, 255, 0.9), rgba(239, 245, 252, 0.78)),
    radial-gradient(circle at 12% 12%, rgba(255, 246, 230, 0.34), transparent 44%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 24px 50px rgba(20, 33, 48, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 24px rgba(182, 139, 76, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: scale(0.92);
  opacity: 0.6;
  transition: transform 0.42s ease, opacity 0.42s ease, box-shadow 0.42s ease;
}

.category-slide.is-active {
  transform: scale(1.1);
  opacity: 1;
  box-shadow:
    0 28px 56px rgba(20, 33, 48, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 36px rgba(182, 139, 76, 0.34);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
  margin-bottom: 2px;
}

.category-caption {
  margin: 0 auto 14px;
  max-width: 56ch;
  color: #495b6d;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: none;
}

.category-slide h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Inter", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: #1f2a36;
  text-shadow: none;
}

.category-slide p,
.category-slide ul {
  margin: 0;
  color: #4d5f72;
  font-size: 0.98rem;
}

.category-slide ul {
  margin-top: 8px;
  padding-left: 0;
  list-style-position: inside;
}

.category-list-slide {
  align-items: stretch;
  justify-content: center;
}

.category-list-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 14px;
  padding: 0;
}

.category-list-grid li {
  list-style: none;
}

.category-slide .collections {
  color: #f3dba6;
  font-weight: 700;
  margin-bottom: 8px;
}

.slide-product {
  position: relative;
  right: auto;
  bottom: auto;
  justify-self: center;
  align-self: center;
  width: min(100%, 280px);
  max-height: 210px;
  height: auto;
  padding: 0;
  object-fit: contain;
  z-index: 1;
  transform: none;
  margin-top: 4px;
  margin-bottom: 0;
  filter: saturate(0.93) contrast(1.04) brightness(1.02) drop-shadow(0 14px 20px rgba(12, 15, 19, 0.32));
  pointer-events: none;
}

.slide-product-mixer {
  max-height: 208px;
}

.slide-product-valve {
  max-height: 190px;
}

.slide-product-hose {
  max-height: 176px;
}

.slide-product-builtin {
  max-height: 186px;
}

.slider-nav {
  z-index: 3;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(232, 217, 192, 0.82);
  background: linear-gradient(145deg, #fffdf8, #ead8bb 52%, #fffaf0 100%);
  color: #36495d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 12px 26px rgba(17, 20, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-prev {
  grid-column: 1;
  justify-self: center;
}

.slider-next {
  grid-column: 3;
  justify-self: center;
}

.slider-nav:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 16px 30px rgba(20, 33, 48, 0.32),
    0 0 14px rgba(182, 139, 76, 0.3);
}

.slider-nav:active {
  transform: scale(0.97);
}

.slider-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fdfcfb 100%);
  border: 1px solid #e4dfd8;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #d8c9ab;
  box-shadow: 0 20px 38px rgba(25, 32, 40, 0.12);
}

.catalog-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9f7f4 100%);
}

.catalog-feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f5f2 0%, #f4f1ed 100%);
}

.catalog-feature .container {
  position: relative;
}

.catalog-bg-art {
  display: none;
}

.catalog-feature .section-head,
.catalog-card-premium {
  position: relative;
  z-index: 1;
}

.catalog-title {
  color: #1f2a36;
  text-shadow: none;
  letter-spacing: 0.01em;
}

.catalog-card-premium {
  max-width: 820px;
  padding: 30px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2dacf;
  box-shadow: 0 14px 34px rgba(30, 39, 47, 0.08);
}

.catalog-card-premium p {
  max-width: 66ch;
  margin-inline: auto;
}

.catalog-actions {
  justify-content: center;
  margin-top: 22px;
  gap: 14px;
}

.catalog-download-btn {
  background: #223446;
  color: #f8f6f2;
  border: 1px solid #223446;
  box-shadow: 0 10px 20px rgba(22, 33, 44, 0.2);
  padding: 12px 20px;
  gap: 10px;
}

.catalog-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(22, 33, 44, 0.24);
}

.catalog-feature .catalog-actions .btn.btn-ghost,
body.lang-ar .catalog-feature .catalog-actions .btn.btn-ghost {
  background: #ffffff !important;
  color: #223446 !important;
  border-color: #cdd7e2 !important;
  box-shadow: 0 8px 18px rgba(22, 33, 44, 0.08);
}

.catalog-feature .catalog-actions .btn.btn-ghost:hover,
body.lang-ar .catalog-feature .catalog-actions .btn.btn-ghost:hover {
  background: #f8fbff !important;
  border-color: #b8c6d7 !important;
}

.catalog-download-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2b3f53;
  color: #ffffff;
  text-shadow: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.card h3,
.value-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
}

.card p,
.card ul {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.card ul {
  margin-top: 8px;
  padding-left: 1.1rem;
}

.collections {
  font-weight: 600;
  color: var(--silver-dark);
  margin-bottom: 8px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.section-about-showcase {
  background: #f3f6fa;
  border-top: 1px solid #dfe6ef;
  border-bottom: 1px solid #dfe6ef;
}

.section-about-showcase .container {
  position: relative;
}

.section-about-showcase .eyebrow {
  color: #6a7c8f;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-shadow: none;
}

.about-title-premium {
  color: #1f2f40;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: none;
}

.section-about-showcase .value-grid {
  margin-top: 4px;
  gap: 16px;
}

.value-item {
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(24, 37, 52, 0.07);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.value-item-efficiency,
.value-item-european,
.value-item-materials,
.value-item-project {
  background-size: cover;
  background-position: center;
  border-color: rgba(220, 228, 238, 0.74);
  box-shadow: 0 14px 30px rgba(24, 37, 52, 0.14);
}

.value-item-efficiency {
  background-image:
    linear-gradient(165deg, rgba(12, 55, 82, 0.76), rgba(17, 43, 68, 0.56)),
    url("https://images.unsplash.com/photo-1585704032915-c3400ca199e7?auto=format&fit=crop&w=1400&q=80");
  border-color: rgba(150, 196, 224, 0.48);
}

.value-item-european {
  background-image:
    linear-gradient(165deg, rgba(24, 38, 53, 0.72), rgba(24, 38, 53, 0.5)),
    url("assets/أوروبا-لمحبي-الطبيعة-10-عجائب-طبيعية-في-أوروبا-تستحق-الزيارة.jpg");
}

.value-item-materials {
  background-image:
    linear-gradient(165deg, rgba(24, 38, 53, 0.72), rgba(24, 38, 53, 0.5)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1400&q=80");
}

.value-item-project {
  background-image:
    linear-gradient(165deg, rgba(20, 35, 50, 0.72), rgba(20, 35, 50, 0.5)),
    url("assets/jeddah.jpg");
}

.value-item:hover {
  border-color: #c8d5e4;
  box-shadow: 0 14px 30px rgba(24, 37, 52, 0.1);
}

.value-item .value-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  padding: 6px;
  border-radius: 8px;
  background: #f3f7fc;
  border: 1px solid #dbe4ef;
}

.value-item-efficiency .value-icon,
.value-item-european .value-icon,
.value-item-materials .value-icon,
.value-item-project .value-icon {
  background: rgba(16, 26, 36, 0.4);
  border-color: rgba(255, 255, 255, 0.22);
}

.value-item-efficiency .value-icon {
  background: rgba(12, 54, 80, 0.44);
  border-color: rgba(174, 216, 240, 0.5);
}

.value-item h3 {
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 700;
  color: #223446;
  text-shadow: none;
}

.value-item-efficiency h3,
.value-item-european h3,
.value-item-materials h3,
.value-item-project h3 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(10, 18, 28, 0.45);
}

.value-item-efficiency h3 {
  color: #eaf7ff;
}

.value-item p {
  color: #56687a;
  max-width: 44ch;
}

.value-item-efficiency p,
.value-item-european p,
.value-item-materials p,
.value-item-project p {
  color: #f2f7fd;
  text-shadow: 0 1px 6px rgba(10, 18, 28, 0.35);
}

.value-item-efficiency p {
  color: #e6f5ff;
}

.value-item p {
  margin: 0;
}

.brands-showcase {
  background: #f4f7fb;
  padding-top: 96px;
  padding-bottom: 96px;
}

.brands-showcase .section-head {
  margin-bottom: 34px;
}

.logo-ticker {
  background: #ffffff;
  border: 1px solid #d6e0ea;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(24, 36, 48, 0.08);
  overflow: hidden;
  padding: 14px 0;
  direction: ltr;
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: logoTicker 20s linear infinite;
}

.logo-ticker:hover .logo-ticker-track {
  animation-play-state: paused;
}

.logo-ticker-item {
  width: 168px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  background: #f9fbfe;
}

.logo-ticker-item .brand-tile-logo {
  max-width: 150px;
  max-height: 52px;
  filter: none;
  opacity: 1;
}

@keyframes logoTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.brand-tile {
  background: #fffefc;
  border: 1px solid #e4ded5;
  border-radius: 12px;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(25, 32, 40, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(25, 32, 40, 0.1);
}

.brand-tile-logo {
  width: 100%;
  max-width: 220px;
  max-height: 88px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--charcoal-soft);
}

.contact-list a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.business-hours {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #d7e0e9;
  border-radius: 12px;
  background: #f8fbff;
}

.hours-title {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #33465a;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #4f6173;
  font-weight: 600;
  font-size: 0.93rem;
}

.hours-list li span:last-child {
  color: #2f4255;
  font-weight: 700;
}

.map-wrap {
  min-height: 330px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(24, 30, 36, 0.12);
  border: 1px solid #ddd6cb;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  text-decoration: none;
  background: linear-gradient(145deg, #1e2922, #29382f);
  color: #eff3f0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 24px rgba(20, 25, 21, 0.22);
}

.site-footer {
  background: #eceff3;
  color: #3f4f61;
  border-top: 1px solid #d8e0e8;
}

.footer-shell {
  padding: 44px 0 14px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 28px;
  align-items: start;
  justify-items: stretch;
}

.footer-about {
  text-align: right;
  max-width: 100%;
}

.footer-company-logo {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  object-fit: cover;
  border: 0;
  background: transparent;
  padding: 0;
}

.footer-title {
  margin: 12px 0 6px;
  font-size: clamp(1.85rem, 3.2vw, 2.15rem);
  font-weight: 700;
  color: #4a5d70;
  line-height: 1.2;
}

.footer-company-text {
  margin: 2px 0 0;
  color: #5a6a7c;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-legal-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-legal-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-legal-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 2px;
  background: transparent;
  border: 0;
  padding: 0;
}

.footer-legal-text p {
  margin: 0;
  color: #556678;
  font-size: 0.94rem;
  line-height: 1.35;
}

.footer-legal-text p + p {
  margin-top: 2px;
}

.footer-legal-text p:last-child {
  font-weight: 700;
  color: #334659;
}

.footer-engage {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px dashed #d3dbe3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-actions {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.footer-actions a {
  text-decoration: none;
  color: #56687a;
  border: 1px solid #cfd9e2;
  border-radius: 9px;
  background: #eff3f7;
  padding: 7px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

.footer-actions a:hover {
  background: #f8fbff;
  color: #33485c;
}

.footer-social {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #c8d2dc;
  color: #748394;
  text-decoration: none;
  display: grid;
  place-items: center;
  background: #f3f6f9;
}

.footer-social a svg {
  width: 13px;
  height: 13px;
  display: block;
}

.footer-social a:hover {
  color: #3c4f61;
  background: #ffffff;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #cfd8e2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #cfd8e2;
  background: #ffffff;
  color: #5b6f83;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.payment-mada {
  color: #2a8f71;
  text-transform: lowercase;
  padding: 2px 5px;
}

.payment-logo-mada {
  display: block;
  height: 16px;
  width: auto;
}

.payment-visa {
  color: #1a3f8f;
}

.payment-mastercard {
  gap: 6px;
  text-transform: lowercase;
  color: #3d4f61;
}

.mc-circles {
  display: inline-flex;
  align-items: center;
}

.mc-circles span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mc-circles span:first-child {
  background: #ec001b;
}

.mc-circles span:last-child {
  background: #f79e1b;
  margin-left: -3px;
}

.payment-apple {
  color: #222f3b;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
  color: #5d6d7d;
  font-weight: 500;
  font-size: 1.12rem;
  text-align: center;
}

body.lang-ar {
  direction: rtl;
}

body.lang-ar .brand {
  flex-direction: row-reverse;
}

body.lang-ar .hero-content,
body.lang-ar .section-head,
body.lang-ar .contact-list,
body.lang-ar .card,
body.lang-ar .value-item {
  text-align: right;
}

body.lang-ar .section-head.left {
  text-align: right;
}

body.lang-ar .hero-cta,
body.lang-ar .catalog-actions {
  justify-content: flex-start;
}

body.lang-ar .catalog-bg-art {
  inset: 14% auto auto -8%;
}

body.lang-ar .slide-content {
  max-width: 100%;
  text-align: center;
}

body.lang-ar .category-slide ul {
  padding-right: 0;
}

body.lang-ar .category-list-grid {
  direction: rtl;
}

body.lang-ar .category-pill {
  font-size: 0.95rem;
}

body.lang-ar .slide-product {
  left: auto;
}

body.lang-ar .value-item {
  border-radius: 12px;
}

body.lang-ar .footer-shell,
body.lang-ar .footer-company-text,
body.lang-ar .footer-bottom {
  text-align: right;
}

body.lang-ar .footer-about {
  text-align: right;
}

body.lang-ar .footer-legal-item {
  flex-direction: row-reverse;
}

body.lang-ar .footer-actions {
  justify-content: center;
}

body.lang-ar .footer-social {
  justify-content: center;
}

body.lang-ar .footer-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body.lang-ar .footer-payments {
  justify-content: center;
}

body.lang-ar .footer-bottom p {
  text-align: center;
}

body.lang-ar nav a::after {
  left: auto;
  right: 0;
}

body.lang-ar .lang-toggle {
  right: auto;
  left: 22px;
}

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

  .brands-showcase {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .logo-ticker-item {
    width: 152px;
    min-height: 62px;
  }

  .category-intro {
    margin-bottom: 16px;
    font-size: 0.92rem;
  }

  .catalog-bg-art {
    width: min(86%, 620px);
    inset: 20% -24% auto auto;
    opacity: 0.24;
  }

  .catalog-card-premium {
    padding: 26px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
    gap: 10px;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: start;
  }

  .lang-toggle {
    justify-self: end;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 18px 34px rgba(23, 36, 50, 0.15);
    border-radius: 14px;
    padding: 14px;
    display: none;
    min-width: min(250px, 92vw);
    flex-direction: column;
    gap: 4px;
    justify-self: end;
    z-index: 30;
  }

  nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
  }

  nav.open {
    display: flex;
  }

  body.lang-ar .lang-toggle {
    justify-self: end;
  }

  body.lang-ar nav {
    right: auto;
    left: 0;
  }

  .premium-slider {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 8px;
  }

  .slider-prev {
    grid-column: 1;
  }

  .slider-viewport {
    grid-column: 2;
  }

  .slider-next {
    grid-column: 3;
  }

  .category-slide {
    flex-basis: 74%;
    min-height: 310px;
    text-align: center;
  }

  .slider-nav {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-en {
    font-size: 0.8rem;
  }

  .brand-ar {
    font-size: 0.64rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
  }

  .lang-toggle {
    padding: 7px 10px;
    min-width: 72px;
    font-size: 0.76rem;
  }

  .category-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-title {
    font-size: clamp(1.35rem, 6.4vw, 1.9rem);
  }

  .catalog-card-premium {
    padding: 22px;
  }

  .brands-showcase {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .logo-ticker-item {
    width: 128px;
    min-height: 60px;
    padding: 8px 10px;
  }

  .logo-ticker-track {
    gap: 10px;
    animation-duration: 16s;
  }

  .footer-shell {
    padding: 38px 0 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-about {
    text-align: center;
  }

  .footer-company-text {
    margin-inline: auto;
  }

  .footer-engage {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .footer-legal-grid {
    grid-template-columns: 1fr;
    display: grid;
    width: min(360px, 100%);
  }

  .footer-title {
    font-size: 1.6rem;
  }

  .footer-actions {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom p,
  body.lang-ar .footer-bottom p {
    text-align: center;
  }

  .hours-list li {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
  }
}

@media (max-width: 430px) {
  .category-wall {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-ticker-track {
    animation: none;
    transform: none;
  }
}
