:root {
  /* Brand */
  --ui-color-ink: #112226;
  --ui-color-ink-strong: #07171b;
  --ui-color-text: #24373b;
  --ui-color-muted: #667579;
  --ui-color-subtle: #8b989a;
  --ui-color-line: #dbe4e3;
  --ui-color-surface: #ffffff;
  --ui-color-surface-soft: #f2f7f6;
  --ui-color-surface-muted: #edf5f4;
  --ui-color-primary: #0d5b63;
  --ui-color-primary-strong: #083f46;
  --ui-color-accent: #d7aa4d;
  --ui-color-aqua: #58ded2;
  --ui-color-danger: #a33f49;
  --ui-color-success: #18715c;

  /* Typography */
  --ui-font-arabic: "IBM Plex Sans Arabic", Tahoma, "Geeza Pro", Arial, sans-serif;
  --ui-font-sans: Arial, sans-serif;
  --ui-font-size-2xs: 0.625rem;
  --ui-font-size-xs: 0.75rem;
  --ui-font-size-sm: 0.875rem;
  --ui-font-size-md: 1rem;
  --ui-font-size-lg: 1.125rem;
  --ui-font-size-xl: 1.5rem;
  --ui-font-size-2xl: 2rem;
  --ui-font-size-3xl: clamp(2rem, 4vw, 3.5rem);
  --ui-line-tight: 1.2;
  --ui-line-normal: 1.55;
  --ui-line-relaxed: 1.8;

  /* Spacing */
  --ui-space-1: 0.25rem;
  --ui-space-2: 0.5rem;
  --ui-space-3: 0.75rem;
  --ui-space-4: 1rem;
  --ui-space-5: 1.25rem;
  --ui-space-6: 1.5rem;
  --ui-space-8: 2rem;
  --ui-space-10: 2.5rem;
  --ui-space-12: 3rem;
  --ui-space-16: 4rem;
  --ui-space-20: 5rem;

  /* Layout */
  --ui-content-max: 1280px;
  --ui-page-gutter: max(20px, 5vw);
  --ui-header-height: 78px;
  --ui-control-height: 44px;

  /* Shape */
  --ui-radius-sm: 6px;
  --ui-radius-md: 12px;
  --ui-radius-lg: 18px;
  --ui-radius-pill: 999px;

  /* Elevation */
  --ui-shadow-sm: 0 5px 16px rgba(7, 23, 27, 0.08);
  --ui-shadow-md: 0 14px 38px rgba(7, 23, 27, 0.12);
  --ui-shadow-lg: 0 24px 64px rgba(7, 23, 27, 0.16);

  /* Motion */
  --ui-duration-fast: 140ms;
  --ui-duration-normal: 200ms;
  --ui-duration-slow: 320ms;
  --ui-ease-standard: cubic-bezier(.2, .8, .2, 1);
  --ui-ease-emphasized: cubic-bezier(.16, 1, .3, 1);

  /* Layering */
  --ui-z-header: 50;
  --ui-z-dropdown: 70;
  --ui-z-modal: 100;
  --ui-z-toast: 120;
}

@media (max-width: 800px) {
  :root {
    --ui-page-gutter: 16px;
    --ui-header-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ui-duration-fast: 0ms;
    --ui-duration-normal: 0ms;
    --ui-duration-slow: 0ms;
  }
}


.kh-shell {
  position: relative;
  z-index: var(--ui-z-header);
  background: var(--ui-color-surface);
  color: var(--ui-color-ink);
  border-bottom: 1px solid var(--ui-color-line);
}

.kh-header {
  width: min(1440px, 100%);
  min-height: 92px;
  margin-inline: auto;
  padding-inline: clamp(24px, 4.2vw, 72px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 3vw, 52px);
  background: var(--ui-color-surface);
  direction: rtl;
}

.kh-headerBrand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 96px;
  min-width: 96px;
  color: inherit;
  text-decoration: none;
}

.kh-headerBrand img {
  width: 96px;
  height: 62px;
  display: block;
  object-fit: contain;
}

.kh-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--ui-space-3);
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.kh-brand img {
  object-fit: contain;
  flex: 0 0 auto;
}

.kh-brandText {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.kh-brandText strong {
  font-size: 20px;
  font-weight: 700;
}

.kh-brandText small {
  color: var(--ui-color-muted);
  font-size: var(--ui-font-size-2xs);
  white-space: nowrap;
}

.kh-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 2.15vw, 38px);
  min-width: 0;
}

.kh-nav a {
  position: relative;
  padding-block: 34px 31px;
  color: #2f383a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--ui-duration-fast) var(--ui-ease-standard);
}

.kh-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  border-radius: var(--ui-radius-pill);
  background: var(--ui-color-primary);
  transition:
    right var(--ui-duration-normal) var(--ui-ease-standard),
    left var(--ui-duration-normal) var(--ui-ease-standard);
}

.kh-nav a:hover,
.kh-nav a:focus-visible,
.kh-nav a.kh-activeNav {
  color: var(--ui-color-primary);
}

.kh-nav a:hover::after,
.kh-nav a:focus-visible::after,
.kh-nav a.kh-activeNav::after {
  right: 0;
  left: 0;
}

.kh-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  direction: rtl;
}

.kh-iconLink {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--ui-radius-pill);
  color: #2d3638;
  text-decoration: none;
  transition:
    border-color var(--ui-duration-fast) var(--ui-ease-standard),
    background var(--ui-duration-fast) var(--ui-ease-standard),
    color var(--ui-duration-fast) var(--ui-ease-standard),
    transform var(--ui-duration-fast) var(--ui-ease-standard);
}

.kh-iconLink:hover,
.kh-iconLink:focus-visible {
  border-color: var(--ui-color-line);
  background: var(--ui-color-surface-soft);
  color: var(--ui-color-primary);
  transform: translateY(-1px);
}

.kh-primaryAction {
  min-height: 42px;
  padding-inline: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ui-radius-pill);
  background: var(--ui-color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 5px 18px rgba(13, 91, 99, 0.14);
  transition:
    background var(--ui-duration-fast) var(--ui-ease-standard),
    box-shadow var(--ui-duration-fast) var(--ui-ease-standard),
    transform var(--ui-duration-fast) var(--ui-ease-standard);
}

.kh-primaryAction:hover,
.kh-primaryAction:focus-visible {
  background: var(--ui-color-primary-strong);
  box-shadow: 0 8px 22px rgba(13, 91, 99, 0.2);
  transform: translateY(-1px);
}

.kh-discovery {
  padding: 14px var(--ui-page-gutter);
  display: grid;
  grid-template-columns: auto minmax(280px, 650px) auto;
  align-items: center;
  gap: var(--ui-space-5);
  background: var(--ui-color-surface-muted);
  border-top: 1px solid var(--ui-color-line);
  border-bottom: 1px solid var(--ui-color-line);
}

.kh-discovery > span {
  color: var(--ui-color-muted);
  font-size: var(--ui-font-size-xs);
}

.kh-discoveryLinks {
  display: flex;
  gap: var(--ui-space-4);
  justify-content: flex-end;
}

.kh-discoveryLinks a {
  color: var(--ui-color-text);
  font-size: var(--ui-font-size-2xs);
  font-weight: 700;
  text-decoration: none;
}

.kh-footer {
  padding: 58px var(--ui-page-gutter) 28px;
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(130px, 1fr));
  gap: 40px;
  background: var(--ui-color-ink-strong);
  color: #e9f1f0;
  border-top: 4px solid var(--ui-color-primary);
}

.kh-footerIntro {
  display: grid;
  align-content: start;
  gap: var(--ui-space-4);
}

.kh-footerIntro p {
  max-width: 410px;
  margin: 0;
  color: #9da7a8;
  font-size: var(--ui-font-size-xs);
  line-height: var(--ui-line-relaxed);
}

.kh-footer nav,
.kh-footerGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kh-footer a {
  color: #bbc3c3;
  text-decoration: none;
  font-size: var(--ui-font-size-xs);
}

.kh-footer a:hover,
.kh-footer a:focus-visible {
  color: var(--ui-color-aqua);
}

.kh-footer strong {
  color: #fff;
}

.kh-copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid #ffffff18;
  color: #758082;
}

@media (max-width: 900px) {
  .kh-header {
    min-height: auto;
    grid-template-columns: auto 1fr;
    gap: 10px 18px;
    padding-block: 10px;
  }

  .kh-headerBrand,
  .kh-headerBrand img {
    width: 78px;
    min-width: 78px;
    height: 50px;
  }

  .kh-nav {
    grid-column: 1 / -1;
    order: 3;
    gap: 26px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .kh-nav::-webkit-scrollbar {
    display: none;
  }

  .kh-nav a {
    padding-block: 10px 14px;
  }

  .kh-nav a::after {
    bottom: 6px;
  }

  .kh-actions {
    justify-self: end;
  }

  .kh-discovery {
    grid-template-columns: 1fr;
  }

  .kh-discoveryLinks {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .kh-footerIntro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .kh-header {
    padding-inline: 16px;
  }

  .kh-headerBrand,
  .kh-headerBrand img {
    width: 64px;
    min-width: 64px;
    height: 42px;
  }

  .kh-primaryAction {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .kh-iconLink {
    width: 38px;
    height: 38px;
  }

  .kh-nav {
    gap: 22px;
  }

  .kh-nav a {
    font-size: 13px;
  }

  .kh-discovery {
    padding-block: 12px;
  }

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

  .kh-footerIntro,
  .kh-copyright {
    grid-column: auto;
  }
}


.kh-home-site{--navy:var(--ui-color-ink-strong);--ink:var(--ui-color-ink);--blue:var(--ui-color-primary);--muted:var(--ui-color-muted);--line:var(--ui-color-line);--soft:var(--ui-color-surface-soft);background:#fff;color:var(--ink);--aqua:var(--ui-color-aqua);--sand:#d5b574}.kh-home-marketBar{height:auto;padding:0 max(24px,5vw);display:flex;align-items:center;justify-content:space-between;background:#0b2429;color:#bdd3d3;font-size:12px;min-height:38px;padding-block:6px;border-bottom:1px solid #ffffff12}.kh-home-hero{height:min(690px,74vh);min-height:580px;position:relative;overflow:hidden;background:linear-gradient(125deg,#07171b,#0d3438 66%,#0a7f79 120%)}.kh-home-hero>img{width:100%;height:100%;object-fit:cover;opacity:.58;filter:saturate(.72) contrast(1.08)}.kh-home-heroShade{position:absolute;inset:0;background:linear-gradient(90deg,#061518f2 0%,#07191dd9 48%,#07191d18 86%),linear-gradient(0deg,#061518cf,transparent 52%)}.kh-home-heroCopy{position:absolute;inset:0;padding:66px max(24px,8vw) 46px;color:#fff;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.kh-home-heroCopy>span,.kh-home-sectionHead>span{font-size:12px;font-weight:800;color:#6ed2ff}.kh-home-hero h1{margin:14px 0 10px;font-size:clamp(43px,5vw,74px);line-height:1.1;letter-spacing:-.04em;max-width:820px}.kh-home-hero p{max-width:680px;font-size:17px;line-height:1.9;color:#d5e5e4;margin:0}.kh-home-finder{width:min(820px,100%);display:grid;grid-template-columns:1fr auto;margin-top:25px;background:#fff;color:var(--ink);box-shadow:0 22px 60px #0008;position:relative;padding:7px;border-radius:4px}.kh-home-finder label{padding:8px 15px;border-inline-end:1px solid var(--line)}.kh-home-finder label span{display:block;color:var(--muted);font-size:10px}.kh-home-finder input{width:100%;border:0;outline:0;padding-top:5px;font:700 14px inherit}.kh-home-finder button{border:0;padding:0 23px;background:var(--blue);color:#fff;font-weight:800;min-width:115px;border-radius:3px}.kh-home-fourDoors{display:grid;grid-template-columns:repeat(4,1fr);margin:0 max(24px,5vw);transform:translateY(-30px);position:relative;z-index:2;background:#fff;box-shadow:0 18px 60px #08292c1a;border-top:3px solid var(--blue)}.kh-home-fourDoors a{min-height:150px;padding:22px;border-inline-start:1px solid var(--line);display:flex;flex-direction:column}.kh-home-fourDoors b{color:var(--blue);font-size:11px}.kh-home-fourDoors span{margin-top:24px;font-size:22px;font-weight:800}.kh-home-fourDoors strong{margin-top:7px;color:var(--muted);font-size:12px;line-height:1.7}.kh-home-research,.kh-home-marketplace,.kh-home-offers,.kh-home-news{padding:80px max(24px,7vw)}.kh-home-sectionHead{position:relative;margin-bottom:32px}.kh-home-sectionHead>span{color:var(--blue)}.kh-home-sectionHead h2{margin:9px 0 0;font-size:clamp(30px,3vw,46px);line-height:1.35}.kh-home-sectionHead>a{position:absolute;left:0;bottom:5px;padding-bottom:5px;border-bottom:2px solid var(--blue);font-weight:800;font-size:12px}.kh-home-editorialGrid{display:grid;grid-template-columns:1.35fr 1fr 1fr;gap:12px;background:transparent}.kh-home-editorialGrid>a{min-height:470px;background:#fff;display:flex;flex-direction:column}.kh-home-editorialGrid img{width:100%;height:275px;object-fit:cover;transition:transform var(--ui-duration-slow) var(--ui-ease-standard)}.kh-home-editorialGrid>a>div:last-child{padding:25px}.kh-home-editorialGrid small,.kh-home-inventory small,.kh-home-offerRows small,.kh-home-newsGrid small{color:var(--blue);font-size:10px;font-weight:800}.kh-home-editorialGrid h3{font-size:25px;line-height:1.5;margin:10px 0}.kh-home-editorialGrid p,.kh-home-inventory p,.kh-home-offerRows p,.kh-home-newsGrid p{color:var(--muted);line-height:1.8}.kh-home-largeStory{position:relative}.kh-home-largeStory img{height:100%;position:absolute;inset:0}.kh-home-largeStory:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,#09131eea,transparent 70%)}.kh-home-largeStory>div{position:relative;z-index:2;margin-top:auto;color:#fff}.kh-home-largeStory p{color:#d7dfe5}.kh-home-compareArt{min-height:275px!important;padding:35px!important;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;gap:15px}.kh-home-compareArt span{font:800 33px Arial}.kh-home-compareArt i{font-size:11px;color:#72d2ff}.kh-home-cinema{margin:25px max(24px,7vw) 65px;display:grid;grid-template-columns:1.3fr 1fr;min-height:360px;background:var(--navy);color:#fff}.kh-home-videoPoster{display:grid;place-content:center;gap:18px;background:linear-gradient(135deg,#26323e,#111b25);position:relative}.kh-home-videoPoster span{position:absolute;top:20px;right:22px;font-size:10px;color:#aeb9c2}.kh-home-videoPoster button{border:1px solid #ffffff99;background:#ffffff10;color:#fff;padding:17px 28px;font:800 14px inherit}.kh-home-cinema>div:last-child{padding:55px}.kh-home-cinema small{color:#72d2ff}.kh-home-cinema h2{font-size:37px;margin:13px 0}.kh-home-cinema p{color:#bac5ce;line-height:1.9}.kh-home-cinema a{display:inline-block;margin-top:17px;padding-bottom:5px;border-bottom:1px solid}.kh-home-marketplace{background:var(--soft)}.kh-home-inventory{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.kh-home-inventory article{background:#fff;padding-bottom:24px}.kh-home-inventory img{width:100%;height:230px;object-fit:cover}.kh-home-inventory article>*:not(img){margin-inline:22px}.kh-home-inventory small{display:block;margin-top:18px}.kh-home-inventory h3{font-size:22px}.kh-home-inventory strong{font:800 25px Arial}.kh-home-inventory a{display:inline-block;margin-top:8px;font-size:12px;font-weight:800;border-bottom:1px solid}.kh-home-oneDirham{margin-top:24px;padding:26px 30px;display:grid;grid-template-columns:170px 1fr auto;align-items:center;background:var(--blue);color:#fff}.kh-home-oneDirham span{font-size:12px}.kh-home-oneDirham strong{font-size:19px}.kh-home-oneDirham b{padding:12px 19px;background:#fff;color:var(--ink)}.kh-home-offerRows{display:grid;gap:1px;background:var(--line)}.kh-home-offerRows>a{display:grid;grid-template-columns:250px 1fr auto;align-items:center;min-height:190px;padding:18px;background:#fff}.kh-home-offerRows img{width:220px;height:150px;object-fit:cover}.kh-home-offerRows h3{font-size:25px;margin:10px 0}.kh-home-offerRows b{padding:13px 20px;background:var(--navy);color:#fff;font-size:12px}.kh-home-news{background:var(--navy);color:#fff}.kh-home-news .kh-home-sectionHead h2{color:#fff}.kh-home-newsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.kh-home-newsGrid>a{border-top:1px solid #ffffff32;padding-top:17px}.kh-home-newsGrid img{width:100%;height:230px;object-fit:cover}.kh-home-newsGrid h3{font-size:22px;line-height:1.5}.kh-home-newsGrid p{color:#aebac3}.kh-home-adFallback{padding:40px max(24px,7vw)}.kh-home-footer{padding:55px max(24px,7vw);display:grid;grid-template-columns:1fr auto;gap:35px;background:#080e14;color:#fff}.kh-home-footer strong{font-size:28px}.kh-home-footer p,.kh-home-footer small{color:#8f9ba5}.kh-home-footer nav{display:flex;flex-wrap:wrap;gap:22px;font-size:12px}.kh-home-footer>small{grid-column:1/-1}
@media(max-width:900px){.kh-home-editorialGrid{grid-template-columns:1fr 1fr}.kh-home-largeStory{grid-column:1/-1}.kh-home-inventory{grid-template-columns:1fr 1fr}.kh-home-finder{grid-template-columns:1fr 1fr}.kh-home-finder button{min-height:55px}.kh-home-cinema{grid-template-columns:1fr}.kh-home-videoPoster{min-height:260px}.kh-home-newsGrid{grid-template-columns:1fr 1fr}.kh-home-fourDoors{grid-template-columns:1fr 1fr}.kh-home-offerRows>a{grid-template-columns:180px 1fr}.kh-home-offerRows img{width:160px}.kh-home-offerRows b{grid-column:2;justify-self:start}}
@media(max-width:640px){.kh-home-hero{height:auto;min-height:620px}.kh-home-heroShade{background:linear-gradient(0deg,#07111af5 15%,#07111a55)}.kh-home-heroCopy{justify-content:flex-end;padding:45px 18px}.kh-home-hero h1{font-size:42px}.kh-home-hero p{font-size:15px}.kh-home-finder{grid-template-columns:1fr 1fr}.kh-home-finder label{padding:9px 11px}.kh-home-finder button{grid-column:1/-1}.kh-home-fourDoors{margin-inline:14px;grid-template-columns:1fr 1fr;transform:translateY(-18px)}.kh-home-fourDoors a{min-height:135px;padding:17px}.kh-home-fourDoors span{font-size:18px}.kh-home-research,.kh-home-marketplace,.kh-home-offers,.kh-home-news{padding:58px 18px}.kh-home-sectionHead>a{position:static;display:inline-block;margin-top:15px}.kh-home-editorialGrid,.kh-home-inventory,.kh-home-newsGrid{grid-template-columns:1fr}.kh-home-largeStory{grid-column:auto;min-height:500px}.kh-home-cinema{margin:15px 18px 55px}.kh-home-cinema>div:last-child{padding:28px}.kh-home-cinema h2{font-size:30px}.kh-home-oneDirham{grid-template-columns:1fr;gap:15px}.kh-home-oneDirham b{justify-self:start}.kh-home-offerRows>a{grid-template-columns:1fr}.kh-home-offerRows img{width:100%;height:190px}.kh-home-offerRows b{grid-column:auto}.kh-home-footer{grid-template-columns:1fr}.kh-home-footer nav{display:grid;grid-template-columns:1fr 1fr}}
.kh-home-honestEmpty{padding:42px;background:#fff;border:1px solid #dfe3e6;display:grid;gap:10px}.kh-home-honestEmpty span{color:#126ef8;font-size:12px;font-weight:800}.kh-home-honestEmpty h3{margin:0;font-size:25px}.kh-home-honestEmpty p{margin:0;color:#67717b;line-height:1.8}.kh-home-honestEmpty a{justify-self:start;margin-top:8px;padding:12px 18px;background:#0d161f;color:#fff;font-size:12px;font-weight:800}
.kh-home-commerceInvitation{margin:10px max(24px,7vw) 75px;padding:36px 42px;display:grid;grid-template-columns:minmax(0,1fr) auto auto;align-items:center;gap:14px;background:#e8f2f1;border-top:3px solid var(--blue);border-top-color:var(--blue)}.kh-home-commerceInvitation span{color:var(--blue);font-size:11px;font-weight:800}.kh-home-commerceInvitation h2{margin:7px 0;font-size:clamp(25px,3vw,38px)}.kh-home-commerceInvitation p{margin:0;color:var(--muted)}.kh-home-commerceInvitation>a{padding:14px 18px;background:var(--navy);color:#fff;font-size:12px;font-weight:800}.kh-home-commerceInvitation>a:last-child{background:#fff;color:var(--ink);border:1px solid var(--line)}
.kh-home-subscribe{padding:72px max(24px,7vw);display:grid;grid-template-columns:minmax(280px,.8fr) minmax(440px,1.2fr);gap:60px;align-items:center;background:var(--sand);color:#15202a}.kh-home-subscribe>div>span{font-size:11px;font-weight:900}.kh-home-subscribe h2{margin:10px 0;font-size:clamp(32px,4vw,52px);line-height:1.25}.kh-home-subscribe p{max-width:540px;line-height:1.8}.kh-home-subscribe .kh-home-subscription-form{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;padding:22px;background:#fff}.kh-home-subscribe .kh-home-subscription-form label{display:grid;gap:5px;font-size:11px}.kh-home-subscribe .kh-home-subscription-form label>span{font-weight:800}.kh-home-subscribe .kh-home-subscription-form input,.kh-home-subscribe .kh-home-subscription-form select,.kh-home-subscribe .kh-home-subscription-form button{min-width:0;background:var(--navy)}.kh-home-subscribe .kh-home-subscription-form fieldset{grid-column:1/-1;display:flex;gap:18px;padding:12px;border:1px solid #d7dce0}.kh-home-subscribe .kh-home-subscription-form fieldset label,.kh-home-subscribe .kh-home-subscription-consent{display:flex!important;align-items:center;gap:7px}.kh-home-subscribe .kh-home-subscription-consent{grid-column:1/-1}.kh-home-subscribe .kh-home-subscription-consent input,.kh-home-subscribe .kh-home-subscription-form fieldset input{min-height:0}.kh-home-subscribe .kh-home-subscription-form button{grid-column:1/-1}.kh-home-subscribe .kh-home-subscription-error{grid-column:1/-1;color:#a31f2b}.kh-home-subscribe .kh-home-subscription-success{padding:28px;background:#fff}.kh-home-subscribe .kh-home-subscription-success strong{font-size:22px}.kh-home-subscribe .kh-home-subscription-success p{margin-bottom:0}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important;animation:none!important}}
.kh-home-cinema{display:block;min-height:0;background:transparent;color:inherit}
.kh-home-cinema .kh-home-served-ad-cinema{width:100%;min-height:360px;margin:0;padding:42px;border-radius:0;background:var(--navy)}
.kh-home-cinema .kh-home-served-ad-cinema .kh-home-served-ad-media{width:min(56%,720px);height:300px;object-fit:cover}
.kh-home-cinema .kh-home-served-ad-cinema .kh-home-served-ad-copy strong{font-size:clamp(25px,3vw,42px)}
@media(max-width:900px){.kh-home-cinema .kh-home-served-ad-cinema{padding:30px}.kh-home-cinema .kh-home-served-ad-cinema .kh-home-served-ad-media{width:100%;height:260px}}
@media(max-width:640px){.kh-home-cinema .kh-home-served-ad-cinema{min-height:0;padding:20px}.kh-home-cinema .kh-home-served-ad-cinema .kh-home-served-ad-media{height:210px}}
@media(max-width:640px){.kh-home-commerceInvitation{margin:0 18px 55px;padding:26px 22px;grid-template-columns:1fr}.kh-home-commerceInvitation>a{justify-self:start}}
@media(max-width:900px){.kh-home-subscribe{grid-template-columns:1fr;gap:25px}}@media(max-width:640px){.kh-home-subscribe{padding:55px 18px}.kh-home-subscribe .kh-home-subscription-form{grid-template-columns:1fr}.kh-home-subscribe .kh-home-subscription-form fieldset{display:grid;grid-template-columns:1fr 1fr}.kh-home-subscribe .kh-home-subscription-form fieldset,.kh-home-subscribe .kh-home-subscription-consent,.kh-home-subscribe .kh-home-subscription-form button{grid-column:auto}}

/* Homepage canonical interaction and responsive additions */
.kh-home-heroCopy>span{color:var(--aqua);letter-spacing:.04em}
.kh-home-hero h1 em{font-style:normal;color:var(--aqua)}
.kh-home-heroCopy>a{margin-top:12px;color:var(--aqua);font-size:12px;font-weight:800}


.kh-home-finder>div{position:absolute;z-index:5;top:100%;right:0;left:0;display:grid;background:#fff;border-top:1px solid var(--line);box-shadow:0 20px 35px #0003}.kh-home-finder>div a{display:flex;justify-content:space-between;padding:12px 18px;color:var(--ink);border-bottom:1px solid var(--line)}
.kh-home-heroProof{display:flex;margin-top:22px;border:1px solid #ffffff20;background:#07171b66;backdrop-filter:blur(10px)}.kh-home-heroProof span{padding:10px 17px;color:#c8d8d7;font-size:10px;border-inline-start:1px solid #ffffff20}.kh-home-heroProof span:first-child{border:0}.kh-home-heroProof b{color:#fff;font-size:12px}
.kh-home-fourDoors a{transition:transform var(--ui-duration-normal) var(--ui-ease-standard),background var(--ui-duration-normal) var(--ui-ease-standard)}.kh-home-fourDoors a:hover{background:var(--soft);transform:translateY(-3px)}
.kh-home-sectionHead>span,.kh-home-editorialGrid small,.kh-home-inventory small,.kh-home-offerRows small,.kh-home-newsGrid small{color:var(--blue)}
.kh-home-editorialGrid>a{background:var(--soft);overflow:hidden}.kh-home-editorialGrid>a:hover img{transform:scale(1.025)}
.kh-home-cinema .kh-home-served-ad-cinema,.kh-home-news{background:var(--navy)}
.kh-home-inventory article{border-bottom:3px solid transparent}.kh-home-inventory article:hover{border-color:var(--blue)}
.kh-home-newsGrid>a{border-top:2px solid #ffffff20}.kh-home-newsGrid>a:hover{border-color:var(--aqua)}


@media(max-width:640px){.kh-home-hero{min-height:650px}.kh-home-heroCopy{justify-content:flex-end}.kh-home-hero h1{font-size:42px}.kh-home-hero p{font-size:14px}.kh-home-finder{grid-template-columns:1fr}.kh-home-finder button{grid-column:auto;min-height:48px}.kh-home-heroProof{width:100%;overflow:auto}.kh-home-heroProof span{white-space:nowrap}}


/* Shared PHP integration; shell and home classes remain isolated from legacy CSS. */
.kh-public{margin:0;color:var(--ui-color-ink);background:#fff;font-family:var(--ui-font-arabic);line-height:var(--ui-line-normal)}
.kh-public *, .kh-public *:before, .kh-public *:after{box-sizing:border-box}
.kh-public [hidden]{display:none!important}
.kh-public a{color:inherit;text-decoration:none}
.kh-public button,.kh-public input,.kh-public select{font:inherit}
.kh-public a:focus-visible,.kh-public button:focus-visible,.kh-public input:focus-visible,.kh-public select:focus-visible{outline:3px solid var(--ui-color-aqua);outline-offset:4px}
.kh-skip{position:fixed;inset:8px auto auto 8px;z-index:200;background:#fff;padding:12px 20px;transform:translateY(-160%)}.kh-skip:focus{transform:none}
.kh-country{display:flex;align-items:center;gap:10px;margin:0}.kh-country select,.kh-country button{min-height:32px;border:1px solid #547173;border-radius:6px;background:#14363b;color:#fff;padding:4px 10px;font-size:12px}.kh-country label{font-size:12px}.kh-country button{cursor:pointer}
.kh-public .kh-header{height:auto}.kh-public .kh-headerBrand{flex-shrink:0}.kh-public .kh-headerBrand img{max-width:none}
.kh-public .kh-primaryAction{color:#fff}.kh-public .kh-nav a{color:#2f383a}.kh-public .kh-nav a.kh-activeNav,.kh-public .kh-nav a:hover{color:var(--ui-color-primary)}
.kh-footer{margin:0;direction:rtl}.kh-footer .kh-brand img{background:#fff;border-radius:8px;padding:4px}.kh-footer .kh-brandText small{color:#bccccc}.kh-footer .kh-copyright{font-size:12px}.kh-footer a{color:#bbc3c3}.kh-footer a:hover{color:var(--ui-color-aqua)}
.kh-search{position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px;margin:0;padding:6px;background:#fff;border:1px solid var(--ui-color-line);border-radius:var(--ui-radius-sm)}
.kh-search label{display:block;min-width:0;padding:4px 10px}.kh-search label span{display:block;font-size:11px;color:var(--ui-color-muted)}.kh-search input,.kh-home-finder input{min-width:0;width:100%;background:#fff;color:var(--ui-color-ink);border:0;border-radius:0;font-family:inherit}.kh-search input{padding:4px 0;font-size:14px}.kh-search button{border:0;border-radius:4px;background:var(--ui-color-primary);color:white;padding:8px 20px;cursor:pointer}
.kh-search-results{position:absolute;top:100%;inset-inline:0;z-index:75;background:white;color:var(--ui-color-ink);box-shadow:var(--ui-shadow-md);border:1px solid var(--ui-color-line);max-height:350px;overflow-y:auto}
.kh-search-results a,.kh-home-finder>.kh-search-results a{display:flex;justify-content:space-between;gap:12px;padding:12px 16px;color:var(--ui-color-ink);border-bottom:1px solid var(--ui-color-line);text-align:start;font-size:14px}.kh-search-results a:hover,.kh-search-results a:focus{background:var(--ui-color-surface-soft)}.kh-search-results small{color:var(--ui-color-muted);font-size:11px}
.kh-public .kh-home-hero{min-height:580px;height:660px;overflow:visible}.kh-home-hero>img{position:absolute;inset:0;display:block;max-width:none}.kh-home-heroCopy{padding-bottom:65px}.kh-home-heroCopy>a{max-width:680px;color:var(--ui-color-aqua);line-height:1.7}.kh-home-heroCopy p{color:#d5e5e4}.kh-home-finder{z-index:3;min-width:0}.kh-home-finder label{min-width:0}.kh-home-finder input{font-size:14px;font-weight:600;min-height:35px}.kh-home-finder button{cursor:pointer}
.kh-home-sectionHead h2{color:var(--ui-color-ink)}.kh-home-largeStory small{color:var(--ui-color-aqua)}.kh-home-largeStory h3{color:#fff}.kh-home-editorialGrid p{font-size:14px}.kh-home-editorialGrid img{max-width:100%}
.kh-public .kh-home-commerceInvitation>a{color:white}.kh-public .kh-home-commerceInvitation>a:last-child{color:var(--ui-color-ink)}
.kh-page-hero{padding:48px var(--ui-page-gutter);background:var(--ui-color-surface-soft);border-bottom:1px solid var(--ui-color-line)}.kh-page-hero>span{color:var(--ui-color-primary);font-size:13px;font-weight:700}.kh-page-hero h1{font-size:clamp(32px,4vw,54px);margin:12px 0;line-height:1.3;color:var(--ui-color-ink)}.kh-page-hero p{max-width:780px;color:var(--ui-color-muted);font-size:16px;line-height:1.9;margin:0}.kh-page-content{max-width:1380px;margin:auto;padding:48px var(--ui-page-gutter) 72px;min-height:250px}
.kh-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.kh-card{min-width:0;overflow:hidden;border:1px solid var(--ui-color-line);border-radius:var(--ui-radius-md);background:var(--ui-color-surface);color:var(--ui-color-ink);box-shadow:var(--ui-shadow-sm)}.kh-card>img{display:block;width:100%;height:220px;object-fit:cover}.kh-card>div{padding:24px}.kh-card small{display:block;font-size:12px;color:var(--ui-color-primary);font-weight:700}.kh-card h2{font-size:23px;line-height:1.6;margin:10px 0;color:var(--ui-color-ink)}.kh-card p{font-size:14px;color:var(--ui-color-muted);line-height:1.9}.kh-card strong{font-size:22px}.kh-card time{display:block;color:var(--ui-color-primary);font-size:13px}.kh-terms{white-space:pre-line}.kh-card .kh-text-link,.kh-prose .kh-text-link{display:inline-block;color:var(--ui-color-primary);font-weight:700;margin-top:16px;border-bottom:1px solid;padding-bottom:4px;line-height:1.8}
.kh-empty{padding:44px;border:1px solid var(--ui-color-line);background:var(--ui-color-surface-soft);border-radius:var(--ui-radius-md)}.kh-empty h2{font-size:26px;line-height:1.6;margin:0 0 12px}.kh-empty p{color:var(--ui-color-muted);line-height:1.9;max-width:800px}.kh-empty .kh-primaryAction{margin-top:12px}.kh-prose{max-width:900px;margin:auto;font-size:17px;line-height:2}.kh-prose p{white-space:normal}.kh-detail-image{width:100%;max-height:500px;object-fit:cover;border-radius:var(--ui-radius-md)}
@media(max-width:1100px) and (min-width:901px){.kh-header{padding-inline:24px;gap:24px}.kh-nav{gap:20px}.kh-nav a{font-size:13px}.kh-primaryAction{padding-inline:14px}.kh-discovery{grid-template-columns:minmax(0,1fr) auto}.kh-discovery>span{display:none}}
@media(max-width:900px){.kh-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.kh-home-commerceInvitation{grid-template-columns:1fr;gap:18px}.kh-home-commerceInvitation>a{justify-self:start}.kh-home-marketBar{gap:12px}.kh-home-finder{grid-template-columns:minmax(0,1fr) auto}}
@media(max-width:640px){.kh-card-grid{grid-template-columns:1fr}.kh-home-marketBar{padding:8px 16px;font-size:10px;align-items:flex-start}.kh-home-marketBar>span{max-width:145px;line-height:1.7}.kh-country{gap:6px}.kh-country label{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%)}.kh-country select{max-width:115px}.kh-discoveryLinks{gap:18px;white-space:nowrap}.kh-discovery{gap:12px}.kh-discovery>span{display:none}.kh-public .kh-home-hero{height:690px;min-height:690px}.kh-home-heroCopy{padding:34px 18px 54px;justify-content:center}.kh-home-hero h1{font-size:42px}.kh-home-heroCopy>a{font-size:12px}.kh-home-finder{grid-template-columns:1fr;margin-top:18px}.kh-home-finder button{min-height:46px}.kh-home-finder input{font-size:13px}.kh-home-heroProof{margin-top:16px;overflow-x:auto}.kh-home-heroProof span{padding:9px;font-size:9px}.kh-home-fourDoors a{min-height:135px}.kh-home-sectionHead h2{font-size:30px}.kh-page-content{padding:28px 16px 48px}.kh-page-hero{padding:32px 16px}.kh-empty{padding:26px}.kh-empty h2{font-size:23px}.kh-card>div{padding:22px}.kh-search-results a{flex-direction:column;gap:3px}.kh-actions{gap:4px}.kh-primaryAction{padding-inline:12px}.kh-iconLink{width:34px;height:38px}.kh-footer{gap:30px}}
@media(prefers-reduced-motion:reduce){.kh-public *{scroll-behavior:auto!important;transition:none!important;animation:none!important}}

/* Portal usability release: keep variants explicit and mobile selection near the top. */
.kh-spec-options{list-style:none;margin:0;padding:0;display:grid;gap:14px}
.kh-spec-options li+li{padding-top:12px;border-top:1px solid #dbe8e3}
.compare-row-variants td{background:#f0f6fa}
@media(max-width:800px){
 .kh-public .compare-builder-hero{padding:22px 0 26px}
 .kh-public .compare-builder-hero h1{font-size:28px;line-height:1.25;margin:8px auto}
 .kh-public .compare-builder-hero p{font-size:13px;line-height:1.6}
 .kh-public .compare-trust{margin-top:10px;gap:5px}
 .kh-public .compare-trust b{padding:5px 8px;font-size:10px}
 .kh-public .compare-builder{margin-top:12px}
 .kh-public .compare-builder>header{padding:14px 16px 10px}
 .kh-public .compare-builder>header h2{font-size:22px}
 .kh-public .compare-builder-page .kh-discovery{display:none}
 .kh-public .automotive-directory-page .kh-discovery{display:none}
 .kh-public .automotive-directory-hero{padding-block:26px!important;min-height:0!important}
 .kh-public .automotive-directory-hero h1{font-size:29px!important;margin-block:12px}
 .kh-public .directory-filter-zone{padding-block:18px}
}

/* Bounded comparison search and visitor tools. */
.kh-compare-form{display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:start}.kh-compare-form .compare-submit{grid-column:1/-1;min-height:58px;border:0;cursor:pointer}.kh-year-picker{min-width:0;background:#fff;border:1px solid #d9e4e1;border-radius:18px;padding:24px}.kh-year-picker h3{margin:0 0 18px;color:#163e37}.kh-year-picker label{display:block;font-size:14px;font-weight:700;margin:12px 0 8px}.kh-year-picker input,.kh-year-picker select,.kh-comparison-tools input[readonly]{width:100%;min-width:0;min-height:48px;padding:10px 12px;font:inherit;color:#183f38;background:#f7faf9;border:1px solid #acbeb8;border-radius:9px;box-sizing:border-box}.kh-year-picker p{font-size:13px;line-height:1.8;color:#536b64;min-height:46px}.kh-year-picker button,.kh-comparison-tools button,.kh-comparison-tools>a,.kh-saved button{min-height:44px;border:1px solid #9bb3a9;border-radius:9px;padding:10px 16px;font:inherit;font-weight:700;color:#164637;background:#fff;cursor:pointer;text-decoration:none}.kh-comparison-tools{display:flex;flex-wrap:wrap;gap:12px;align-items:center;padding:20px;background:#eaf2ef;border:1px solid #cbded5;border-radius:14px;margin:24px 0}.kh-comparison-tools>label{display:flex;align-items:center;gap:10px;min-height:44px;font-weight:700}.kh-comparison-tools input[type=checkbox]{width:22px;height:22px;accent-color:#164637}.kh-comparison-tools p{width:100%;margin:0;color:#344e46;font-size:14px}.kh-comparison-tools [data-share-fallback]{width:100%;display:block}.kh-saved{margin-top:24px;padding:20px;border:1px solid #cfddd6;border-radius:14px;background:#fff}.kh-saved ul{padding:0;list-style:none}.kh-saved li{display:flex;gap:16px;justify-content:space-between;align-items:center;border-top:1px solid #e3eae6;padding:12px 0}.kh-saved a{color:#174e3e;line-height:1.8}.kh-saved p,.kh-related p{color:#52685f;line-height:1.9}.kh-related{margin:48px 0 20px}.kh-related-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.kh-related-car{min-width:0;border:1px solid #d6e2db;border-radius:16px;background:#fff;padding:24px}.kh-related-car h3{color:#174637;margin:0 0 24px}.kh-related-car h4{margin:24px 0 10px}.kh-related-car a{color:#17533e;font-weight:700;text-decoration:underline}.kh-related-car small{display:block;line-height:1.9;color:#536b60}.kh-related-offer{border-bottom:1px solid #d6e2db;padding-bottom:16px}.kh-compare-notice{background:#fff3d9;border:1px solid #d9bd79;padding:18px;border-radius:10px}.kh-public .compare-builder-page [hidden]{display:none!important}.kh-compare-form :focus-visible,.kh-comparison-tools :focus-visible,.kh-saved :focus-visible{outline:3px solid #b08438;outline-offset:3px}
@media(max-width:800px){.kh-compare-form,.kh-related-grid{grid-template-columns:1fr}.kh-year-picker,.kh-related-car{padding:18px}.kh-comparison-tools{padding:16px}.kh-comparison-tools button,.kh-comparison-tools>a{flex:1 1 140px;text-align:center}.kh-saved li{align-items:flex-start}.kh-year-picker select{font-size:14px}}
