:root {
  --ink: #0b0b0c;
  --ink-2: #2a2a2d;
  --muted: #6e6e73;
  --line: #e7e7e9;
  --bg: #ffffff;
  --tile: #f2f2f3;
  --soft: #f7f7f8;
  --dark: #0f0f10;
  --dark-2: #1a1a1c;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Type */
.label { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.muted { color: var(--muted); }
h1, h2, h3 { font-weight: 600; letter-spacing: -.01em; }
.display { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; text-transform: uppercase; letter-spacing: -.02em; }
.h-sec { font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.h-big { font-size: clamp(26px, 3vw, 36px); line-height: 1.1; text-transform: uppercase; letter-spacing: -.01em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 26px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: #fff; border: 1px solid var(--ink); transition: opacity .15s, background .15s;
}
.btn:hover { opacity: .85; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; opacity: 1; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Topbar + header */
.topbar { background: var(--ink); color: #d4d4d8; font-size: 12px; text-align: center; padding: 8px 12px; letter-spacing: .02em; }
.header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: .06em; }
.logo svg { width: 28px; height: 28px; }
.logo small { display: block; font-size: 9px; font-weight: 600; letter-spacing: .28em; color: var(--muted); margin-top: -2px; }
.nav { display: flex; gap: 34px; }
.nav a { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 0; border-bottom: 1.5px solid transparent; }
.nav a:hover, .nav a.on { border-color: var(--ink); }
.tools { display: flex; align-items: center; gap: 6px; }
.icon-btn { width: 40px; height: 40px; display: grid; place-items: center; position: relative; }
.icon-btn svg { width: 21px; height: 21px; }
.badge { position: absolute; top: 3px; right: 1px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; }
.badge[hidden] { display: none; }
.menu-btn { display: none; }
.searchbar { border-top: 1px solid var(--line); display: none; }
.searchbar.open { display: block; }
.searchbar form { display: flex; gap: 10px; padding: 14px 0; }
.searchbar input { flex: 1; }

/* Hero */
.hero { background: var(--dark); color: #fff; overflow: hidden; position: relative; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 560px; gap: 40px; }
.hero-copy { padding: 72px 0; }
.hero-copy .label { color: #a1a1aa; margin-bottom: 22px; display: block; }
.hero-copy p { color: #c4c4c8; font-size: 17px; max-width: 440px; margin: 22px 0 34px; }
.hero-visual { position: relative; height: 100%; min-height: 460px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 65%); }
.hero-visual img { position: relative; width: min(470px, 100%); filter: drop-shadow(0 40px 60px rgba(0,0,0,.6)); }
.hero-dots { position: absolute; bottom: 26px; inset-inline-start: 24px; display: flex; gap: 8px; }
.hero-dots button { width: 26px; height: 3px; background: #3f3f46; }
.hero-dots button.on { background: #fff; }
.slide { display: none; }
.slide.on { display: contents; }

/* Feature strip */
.strip { border-bottom: 1px solid var(--line); }
.strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { display: flex; align-items: center; gap: 14px; padding: 26px 0; }
.strip-item svg { width: 26px; height: 26px; flex: none; stroke-width: 1.4; }
.strip-item b { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.strip-item span { font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 84px 0; }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 34px; }
.sec-head p { color: var(--muted); font-size: 14.5px; margin-top: 8px; max-width: 420px; }
.center { text-align: center; }

/* Categories */
.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat .tile { aspect-ratio: 1; background: var(--tile); display: grid; place-items: center; overflow: hidden; }
.cat img { width: 72%; transition: transform .35s; }
.cat:hover img { transform: scale(1.06); }
.cat b { display: block; margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.cat span { font-size: 12.5px; color: var(--muted); }

/* Product cards */
.grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }
.card { display: block; position: relative; }
.card .tile { aspect-ratio: 1; background: var(--tile); display: grid; place-items: center; overflow: hidden; position: relative; }
.card .tile img { width: 76%; height: 76%; object-fit: contain; transition: transform .35s; }
.card:hover .tile img { transform: scale(1.05); }
.card .media { position: relative; }
.card .quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px; height: 38px; width: auto;
  background: var(--ink); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: .2s;
}
.card:hover .quick { opacity: 1; transform: none; }
.card .brand { margin-top: 14px; font-size: 10.5px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.card h3 { font-size: 14px; font-weight: 500; margin-top: 3px; line-height: 1.35; }
.card .price { font-size: 14px; font-weight: 600; margin-top: 6px; }
.stars { color: var(--ink); font-size: 11px; letter-spacing: 1px; margin-top: 4px; }
.stars i { font-style: normal; color: #cfcfd3; }

/* Why */
.why { background: var(--soft); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item svg { width: 34px; height: 34px; stroke-width: 1.3; margin: 0 auto 18px; }
.why-item b { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.why-item p { font-size: 13.5px; color: var(--muted); max-width: 220px; margin: 0 auto; }

/* About (dark split) */
.about { background: var(--dark); color: #fff; padding: 0; }
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 460px; gap: 40px; }
.about-copy { padding: 70px 0; }
.about-copy .label { color: #a1a1aa; }
.about-copy h2 { margin: 18px 0 20px; }
.about-copy p { color: #c4c4c8; max-width: 440px; margin-bottom: 14px; font-size: 15px; }
.about-copy .link-arrow { margin-top: 14px; }
.about-visual { display: grid; place-items: center; position: relative; }
.about-visual::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 65%); }
.about-visual img { position: relative; width: min(520px, 100%); filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)); }

/* Numbers */
.numbers .wrap { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.numbers b { display: block; font-size: 36px; font-weight: 600; letter-spacing: -.02em; }
.numbers span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.numbers { padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Quote block */
.quote-sec { background: var(--soft); }
.quote-sec .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.quote-sec .intro p { color: var(--muted); margin: 16px 0 26px; max-width: 420px; }
.contact-list { display: grid; gap: 18px; }
.contact-list > div { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; stroke-width: 1.5; }
.contact-list small { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-list a, .contact-list p { font-size: 15px; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

/* Forms */
.form { display: grid; gap: 14px; background: #fff; padding: 32px; border: 1px solid var(--line); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field span { font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
input, textarea, select {
  font: inherit; font-size: 14.5px; width: 100%; height: 46px; padding: 0 14px; border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 0;
}
textarea { height: auto; min-height: 110px; padding: 12px 14px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--ink); }
.form .note { font-size: 12px; color: var(--muted); }
.form .note a { text-decoration: underline; }
.form-msg { font-size: 14px; padding: 14px 16px; display: none; }
.form-msg.ok { display: block; background: #eefaf1; color: #14532d; }
.form-msg.err { display: block; background: #fdf0f0; color: #7f1d1d; }
.hp { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }

/* Footer */
.footer { background: var(--dark); color: #a1a1aa; font-size: 14px; }
.footer-strip { border-bottom: 1px solid #27272a; }
.footer-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.footer-strip .strip-item { color: #e4e4e7; }
.footer-strip .strip-item span { color: #8b8b92; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding: 60px 0 44px; }
.footer .logo { color: #fff; }
.footer .logo small { color: #71717a; }
.footer h4 { color: #fff; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #27272a; padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: #71717a; }

/* Page head / breadcrumbs */
.crumbs { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 22px 0; font-weight: 500; }
.crumbs a:hover { color: var(--ink); }
.crumbs b { color: var(--ink); font-weight: 600; }
.page-head { padding: 10px 0 34px; }
.page-head p { color: var(--muted); margin-top: 10px; }

/* Shop */
.shop { display: grid; grid-template-columns: 220px 1fr; gap: 44px; padding-bottom: 90px; }
.filters h4 { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin: 0 0 14px; }
.filters .grp { padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.filters label { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 5px 0; cursor: pointer; }
.filters input[type=radio], .filters input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--ink); }
.shop-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; font-size: 13.5px; color: var(--muted); }
.shop-bar select { width: auto; height: 40px; font-size: 13px; }
.shop .grid { grid-template-columns: repeat(4, 1fr); }
.empty { padding: 60px 0; text-align: center; color: var(--muted); grid-column: 1 / -1; }

/* Product page */
.pdp { display: grid; grid-template-columns: 90px minmax(0, 1fr) 420px; gap: 24px; padding-bottom: 80px; }
.thumbs { display: grid; gap: 12px; align-content: start; }
.thumbs button { aspect-ratio: 1; background: var(--tile); border: 1px solid transparent; display: grid; place-items: center; }
.thumbs button.on { border-color: var(--ink); }
.thumbs img { width: 80%; height: 80%; object-fit: contain; }
.main-img { background: var(--tile); aspect-ratio: 1; display: grid; place-items: center; }
.main-img img { width: 78%; height: 78%; object-fit: contain; }
.pdp-info { padding-inline-start: 16px; }
.pdp-info .brand { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.pdp-info h1 { font-size: 28px; line-height: 1.2; margin: 8px 0 12px; }
.pdp-info .price { font-size: 20px; font-weight: 600; }
.pdp-info .price small { font-size: 12px; color: var(--muted); font-weight: 500; margin-inline-start: 8px; }
.pdp-info .desc { color: var(--ink-2); font-size: 14.5px; margin: 18px 0 26px; }
.opt { margin-bottom: 22px; }
.opt .label { display: block; margin-bottom: 10px; }
.qty { display: inline-flex; border: 1px solid var(--line); height: 46px; }
.qty button { width: 42px; font-size: 18px; }
.qty input { width: 64px; height: 44px; border: 0; text-align: center; }
.pdp-actions { display: grid; gap: 10px; margin-bottom: 28px; }
.acc { border-top: 1px solid var(--line); }
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 18px; font-weight: 400; }
.acc[open] summary::after { content: "–"; }
.acc div { padding: 0 0 18px; font-size: 14px; color: var(--ink-2); }
.acc ul { padding-inline-start: 18px; }

/* Drawer */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: .25s; z-index: 60; }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: #fff; z-index: 70;
  transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 24px 24px; }
.line-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.line-item .tile { background: var(--tile); aspect-ratio: 1; display: grid; place-items: center; }
.line-item .tile img { width: 80%; height: 80%; object-fit: contain; }
.line-item h4 { font-size: 13.5px; font-weight: 500; line-height: 1.3; }
.line-item .qty { height: 32px; margin-top: 8px; }
.line-item .qty button { width: 30px; font-size: 15px; }
.line-item .qty input { width: 40px; height: 30px; font-size: 13px; }
.line-item .rm { font-size: 18px; color: var(--muted); align-self: start; }
.drawer .form { border: 0; padding: 22px 0 0; }
.drawer .empty-state { padding: 40px 0 10px; text-align: center; color: var(--muted); font-size: 14px; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; font-size: 13.5px; padding: 12px 20px; opacity: 0; transition: .25s; z-index: 80; pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Mobile nav */
.mnav { display: none; border-top: 1px solid var(--line); }
.mnav.open { display: grid; }
.mnav a { padding: 14px 24px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* Legal pages */
.doc { padding: 20px 0 96px; }
.doc .wrap { max-width: 820px; }
.doc h1 { font-size: 34px; text-transform: uppercase; margin-bottom: 8px; }
.doc .updated { color: var(--muted); margin-bottom: 36px; font-size: 14px; }
.doc h2 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin: 32px 0 10px; }
.doc p, .doc li { color: var(--ink-2); margin-bottom: 10px; font-size: 15px; }
.doc ul { padding-inline-start: 22px; }
.doc a { text-decoration: underline; }

.map { width: 100%; height: 360px; border: 0; filter: grayscale(1); display: block; }

@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .shop .grid { grid-template-columns: repeat(3, 1fr); }
  .pdp { grid-template-columns: 70px minmax(0, 1fr); }
  .pdp-info { grid-column: 1 / -1; padding-inline-start: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .hero .wrap, .about .wrap, .quote-sec .wrap { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 0 0; }
  .hero-visual { min-height: 320px; padding-bottom: 50px; }
  .hero-visual img { width: 300px; }
  .about-visual { padding-bottom: 60px; }
  .strip .wrap, .footer-strip .wrap { grid-template-columns: 1fr 1fr; }
  .grid, .grid.g4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .numbers .wrap { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .shop { grid-template-columns: 1fr; gap: 10px; }
  .filters { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .filters .grp { border: 0; margin: 0; padding: 0; }
  .shop .grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
  .card .quick { opacity: 1; transform: none; position: static; display: block; width: 100%; height: 40px; margin-top: 10px; background: #fff; color: var(--ink); border: 1px solid var(--ink); font-size: 10px; letter-spacing: .06em; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .strip .wrap, .footer-strip .wrap { grid-template-columns: 1fr; }
  .strip-item { padding: 16px 0; }
  .form { padding: 22px; }
  .form .row, .footer-main { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: start; }
  .pdp { grid-template-columns: 1fr; }
  .thumbs { grid-auto-flow: column; grid-auto-columns: 70px; order: 2; }
  .pdp-info { order: 3; }
  .tools .icon-btn.hide-sm { display: none; }
}

/* WhatsApp floating button */
.wa-float { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; z-index: 50; box-shadow: 0 10px 24px rgba(0,0,0,.2); transition: transform .15s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* Language switch */
.lang-btn { height: 34px; padding: 0 12px; margin-inline-end: 6px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.lang-btn:hover { border-color: var(--ink); }
html[lang="ar"] .lang-btn { font-family: "Inter", sans-serif; letter-spacing: .06em; }
html:not([lang="ar"]) .lang-btn { font-family: "IBM Plex Sans Arabic", sans-serif; }

/* Phone numbers / emails always read left-to-right */
.num { direction: ltr; unicode-bidi: isolate; display: inline-block; }

/* Bilingual blocks (legal pages) */
html[lang="ar"] [data-lang="en"], html:not([lang="ar"]) [data-lang="ar"] { display: none; }

/* Arabic / RTL */
html[lang="ar"] body { font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif; }
html[lang="ar"] body * { letter-spacing: 0 !important; }
html[lang="ar"] .display { line-height: 1.3; font-size: clamp(32px, 4.6vw, 54px); }
html[lang="ar"] .h-big { line-height: 1.35; }
html[lang="ar"] .label, html[lang="ar"] .h-sec, html[lang="ar"] .btn, html[lang="ar"] .nav a, html[lang="ar"] .card .quick { font-size: 13.5px; }
html[lang="ar"] .strip-item b, html[lang="ar"] .why-item b, html[lang="ar"] .cat b, html[lang="ar"] .field span, html[lang="ar"] .acc summary, html[lang="ar"] .footer h4 { font-size: 13.5px; }
html[lang="ar"] .logo, html[lang="ar"] .logo small { font-family: "Inter", sans-serif; }
html[lang="ar"] .logo small { letter-spacing: .28em !important; }
html[lang="ar"] .logo div { letter-spacing: .06em !important; }
[dir="rtl"] .drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .drawer.open { transform: none; }
[dir="rtl"] .wa-float { right: auto; left: 20px; }
[dir="rtl"] .card .brand, [dir="rtl"] .pdp-info .brand { font-family: "Inter", sans-serif; }
@media (max-width: 560px) {
  .lang-btn { padding: 0 9px; font-size: 12px; margin-inline-end: 2px; }
}
[dir="rtl"] .arr { display: inline-block; transform: scaleX(-1); }

/* Retailer shots come on white; multiply blends them into the grey tiles */
.card .tile img, .cat .tile img, .thumbs img, .main-img img, .line-item .tile img { mix-blend-mode: multiply; }
