/* Ethical AI Solutions — design system */
@import url("https://cdn.jsdelivr.net/npm/lenis@1.1.18/dist/lenis.css");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Noto+Sans+Arabic:wght@400;600&display=swap");

/* Self-hosted Google Fonts — Source Sans 3 (body), Rokkitt (titles); files from @fontsource (SIL OFL) */
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Rokkitt";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/rokkitt-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Rokkitt";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/rokkitt-latin-700-normal.woff2") format("woff2");
}

:root {
  --green-700: #1d5c44;
  --green-600: #267353;
  --green-800: #1a4a36;
  --green-900: #142e24;
  --charcoal: #1a1e22;
  --bg: #f6f7f6;
  --surface: #ffffff;
  --ink: #121816;
  --muted: #3a4a43;
  --line: #d5dcd8;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-card: 0 4px 24px rgba(26, 64, 49, 0.08);
  --shadow-header: 0 1px 0 var(--line), 0 8px 32px rgba(26, 36, 32, 0.06);
  --font-display: "Rokkitt", Rockwell, Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Source Sans Pro", ui-sans-serif, system-ui, sans-serif;
  --container: min(1160px, calc(100% - 48px));
  --header-h: 80px;
}

html:lang(ar) {
  --font-display: "Cairo", "Rokkitt", Rockwell, Georgia, "Times New Roman", serif;
  --font-body: "Noto Sans Arabic", "Source Sans 3", "Source Sans Pro", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
p:not(:last-child) {
    margin-bottom: 1em;
}

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  inset-inline-start: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--green-900);
  color: #fff;
  font-weight: 400;
  border-radius: var(--radius-sm);
  overflow: visible;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-600);
}

:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.container.container {
  width: var(--container);
  margin-inline: auto;
}

/* —— Header —— */
.site-header.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: none;
}

/* .site-header__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
} */


.site-header__inner.site-header__inner {
  width: var(--container);
  margin-inline: auto;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .nav > .lang-switch {
    margin-inline-start: auto;
  }
}

.site-header--transparent .lang-switch,
.site-header--transparent .lang-switch__current {
  color: rgba(255, 255, 255, 0.98);
}

.site-header--transparent .lang-switch__link {
  color: rgba(255, 255, 255, 0.98);
}

.site-header--transparent .lang-switch__link:hover {
  color: #fff;
}

.site-header--transparent .lang-switch__sep {
  color: rgba(255, 255, 255, 0.55);
}

.lang-switch__link {
  font-weight: 600;
}

.lang-switch__current {
  color: var(--ink);
  font-weight: 600;
}

.lang-switch__sep {
  color: var(--muted);
  user-select: none;
}

/* Over hero: frosted bar so nav + logo read on bright or busy photo areas */
.site-header--transparent {
  background: rgba(6, 22, 17, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header--transparent {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 22, 17, 0.92);
  }
}

.site-header--transparent .nav__link {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.site-header--transparent .nav__link:hover,
.site-header--transparent .nav__link.is-active {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.site-header--transparent .nav__link.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-header--solid.site-header--solid {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

/* Reference: forest green links; current page in black */
.site-header--solid .nav__link {
  color: var(--green-700);
}

.site-header--solid .nav__link:hover {
  color: var(--green-800);
}

.site-header--solid .nav__link.is-active {
  color: var(--ink);
  font-weight: 400;
}

.site-header--solid .nav {
  gap: clamp(0.65rem, 2vw, 1.35rem);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Header: allow logo row to shrink on narrow viewports so the menu toggle stays visible */
.site-header .logo {
  min-width: 0;
  flex-shrink: 1;
}

.logo img {
  height: 36px;
  width: auto;
  transition: filter 0.35s ease, mix-blend-mode 0.35s ease;
}

.site-header .logo img {
  height: auto;
  max-height: 36px;
  width: auto;
  max-width: 100%;
}

/* Dark logo asset on dark frosted bar: lighten drops pure black so it blends (no white “plate”) */
.site-header--transparent .logo img {
  mix-blend-mode: lighten;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.site-header--solid .logo img {
  filter: none;
  mix-blend-mode: normal;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header--transparent .nav-toggle span {
  background: #fff;
}

/* Bars are 2px tall with 6px gap → centers are 8px apart; move outer bars ±8px so they meet at the middle bar */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__link.nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink) !important;
  }

  .nav__link:hover,
  .nav__link.is-active {
    color: var(--green-700) !important;
  }

  .nav > .lang-switch {
    margin-top: auto;
    margin-inline-start: 0;
    padding-top: 1.25rem;
    margin-bottom: 0.25rem;
    border-top: 1px solid var(--line);
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(26, 36, 32, 0.45);
    z-index: 999;
    top: var(--header-h);
  }
}

/* —— Typography —— */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 0.75rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

.display--hero {
  font-size: clamp(2.15rem, 5.2vw, 3.75rem);
  color: #fff;
}

.hero .display--hero {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.display--page {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

:is(.Heading-root, .Heading-root .Heading-inner) {
    display: grid;
}

.Heading-root .Heading-desc {
    font-size: 1.05rem;
    color: var(--muted);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}

.lead--center {
  margin-inline: auto;
  text-align: center;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--green-700);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-600);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.hero__bg.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--green-900);
  /* Stronger scrim on the left under type; lighter toward the right so the photo stays visible */
  background-image: linear-gradient(
      100deg,
      rgba(6, 22, 17, 0.82) 0%,
      rgba(7, 26, 20, 0.55) 38%,
      rgba(5, 16, 12, 0.22) 58%,
      rgba(4, 12, 10, 0.38) 100%
    ),
    url("../images/scraped/5536b2a09f018199.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: unset;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

/* Hero CTAs: light surfaces so they read clearly on a variable photo */
.hero .btn--primary {
  background: #fff;
  color: var(--green-800);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.hero .btn--primary:hover {
  background: #f0faf5;
  color: var(--green-900);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
}

.hero__pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.25rem;
}

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

/* Hero feature chips: light panels (only used under .hero) */
.hero .pill {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 50, 38, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero .pill__icon {
  background: rgba(38, 115, 83, 0.14);
  color: var(--green-700);
}

.hero .pill__title {
  color: var(--ink);
}

.hero .pill__desc {
  color: var(--muted);
}

.pill {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(18, 22, 20, 0.78);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pill__icon.pill__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(46, 138, 100, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c4f0dc;
}

.pill__title {
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  margin: 0 0 0.2rem;
}

.pill__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.45;
}

/* —— Sections —— */
.section.section {
  padding: clamp(1.5rem, 5vw, 2.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.section-head .lead {
  margin-top: 0.75rem;
}

/* —— Cards —— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card.card:hover {
  border-color: rgba(38, 115, 83, 0.25);
  box-shadow: 0 12px 40px rgba(26, 64, 49, 0.1);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(38, 115, 83, 0.1);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Partner / product marks: default dark plate for light / high-chroma marks (Atelic, Airia, Younea). */
.card__brand.card__brand {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  background: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  box-sizing: content-box;
}

/* Dark-on-transparent or navy marks (GX1, 6clicks, certs, Kloudr): light inset plate */
.card__brand--on-light.card__brand--on-light {
  background: #eef1ee;
  border: 1px solid #d8e0db;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.card__link {
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* —— Marquee —— */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding: 1.25rem 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-inline-end: 2.5rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee__item {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  opacity: 1;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
  }

  .marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline-end: 0;
    gap: 1rem 2rem;
  }
}

/* —— Split / about —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.split__text p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: var(--green-700);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-card__label {
  font-size: 0.88rem;
  color: #3a4540;
  line-height: 1.4;
}

/* —— Page hero (inner) —— */
.page-hero.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 48%, #0f241c 100%);
  position: relative;
  overflow: hidden;
}

/* Green .eyebrow fails on dark hero — use high-contrast light label */
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(46, 138, 100, 0.25), transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
  margin-top: 0.75rem;
}

/* —— CTA band —— */
.cta-band {
  background: var(--green-900);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 1.25rem;
}

/* —— Service alternating —— */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 2rem;
  background: var(--surface);
}

.alt-row:nth-child(even) .alt-row__visual {
  order: 2;
}

.alt-row:nth-child(even) .alt-row__content {
  order: 1;
}

@media (max-width: 900px) {
  .alt-row,
  .alt-row:nth-child(even) .alt-row__visual,
  .alt-row:nth-child(even) .alt-row__content {
    grid-template-columns: 1fr;
    order: unset !important;
  }
}

.alt-row__visual {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--green-900);
}

/* Split-column photo: copy sits on the white panel, not on the image — keep the photo visible */
.alt-row__visual--photo {
  background-image: url("../images/scraped/5536b2a09f018199.png");
}

.alt-row__content.alt-row__content {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alt-row__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.alt-row__content p {
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.alt-row__content .list-check {
  margin: 0;
  padding-inline-start: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.alt-row__content .list-check li {
  margin-bottom: 0.4rem;
}

.card .list-check {
  margin: 0.75rem 0 0;
  padding-inline-start: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card .list-check li {
  margin-bottom: 0.35rem;
}

/* —— News grid —— */
.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.news-card:hover {
  box-shadow: var(--shadow-card);
}

.news-card--large {
  grid-column: span 1;
}

.news-card__img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
}

.news-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.news-card--large h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.news-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

/* —— Homepage news & offers teasers —— */
.home-updates__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 1rem;
  color: var(--ink);
}

.home-updates__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-update-card,
.home-offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.home-update-card:hover,
.home-offer-card:hover {
  border-color: rgba(38, 115, 83, 0.25);
  box-shadow: 0 8px 28px rgba(26, 64, 49, 0.08);
}

.home-update-card__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin: 0 0 0.5rem;
}

.home-update-card__title,
.home-offer-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.home-update-card__title a,
.home-offer-card__title a {
  color: inherit;
  text-decoration: none;
}

.home-update-card__title a:hover,
.home-offer-card__title a:hover {
  color: var(--green-700);
}

.home-update-card__excerpt,
.home-offer-card__excerpt {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 0.65rem;
  line-height: 1.55;
}

.home-offer-card .tag {
  margin-bottom: 0.65rem;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.contact-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-value {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-value a {
  color: var(--green-700);
  font-weight: 400;
}

.contact-value--last {
  margin-bottom: 0;
}

/* Badge / SVG on light band */
.credential-plate.credential-plate {
  margin-inline: auto;
  padding: 1rem 1.25rem;
  background: #eef1ee;
  border: 1px solid #d8e0db;
  border-radius: var(--radius-md);
  box-sizing: content-box;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
}

.form-group textarea {
  min-height: 140px;
  height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(29, 92, 68, 0.12);
  border: 1px solid var(--green-700);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 400;
  margin-top: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* —— Footer —— */
.site-footer.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.84);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

/* Light plate: full-color logos stay readable on charcoal */
.site-footer .logo img {
  display: block;
  height: auto;
  max-height: 42px;
  width: auto;
  max-width: min(240px, 100%);
  object-fit: contain;
  filter: none;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.55rem;
  box-sizing: content-box;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(4, minmax(0, 1fr));
  gap: 2rem 1.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 32rem;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: auto;
  }
}

.footer__brand p {
  margin: 1rem 0 0;
  line-height: 1.6;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin: 0 0 1rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.55rem;
}

.footer__bottom.footer__bottom {
  padding-top: 1.75rem;
}

.footer__legal.footer__legal {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  line-height: 1.5;
}

/* —— Main offset —— */
main {
  min-height: 50vh;
}

/* —— Reveal targets: stay visible by default; GSAP animates transform only —— */
[data-reveal] {
  opacity: 1;
  transform: none;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    will-change: auto;
  }

  .marquee {
    animation: none !important;
  }
}

/* —— Utilities —— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-section {
  margin-bottom: 2.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--green-700);
  color: #fff;
  margin-bottom: 0.75rem;
}

/* —— RTL (Arabic) layout —— */
[dir="rtl"] .hero .lead,
[dir="rtl"] .hero__eyebrow {
  text-align: start;
  margin-inline-start: 0;
}

[dir="rtl"] .btn-row {
  justify-content: flex-start;
}

[dir="rtl"] .pill {
  flex-direction: row-reverse;
  text-align: start;
}

[dir="rtl"] .split {
  direction: rtl;
}

[dir="rtl"] .alt-row {
  direction: rtl;
}

@media (max-width: 1024px) {
  [dir="rtl"] .nav {
    transform: translateX(-100%);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.08);
  }

  [dir="rtl"] .nav.is-open {
    transform: translateX(0);
  }
}


.elementor-editor-active .grid-debug-yes .Heading-inner {
    outline: 1px solid lime !important;
}



.Post-notice {
    --icon-size: 1.5em;
    padding: 1em;
    border: 1px solid currentColor;
    background-color: #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: clamp(1.15rem, 1.5vw + 0.15rem, 1.5rem);
}
.Post-notice svg {
    width: var(--icon-size);
    height: var(--icon-size);
}

.ScrollVelocity-root::part(list) {
    display: flex;
    gap: 3rem;
}

.ScrollVelocity-root::part(list) {
    display: flex;
    gap: 3rem;
    font-family: var(--font-display);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}
.pagination > * {
    width: 30px;
    display: grid;
    place-content: center;
    aspect-ratio: 1;
    border-radius: 0.25em;
    border: 1px solid #e1e1e1;
    background-color: #efefef;
}
.pagination >:not([aria-current="page"]):hover {
    background-color: #ddd;
}
.pagination >[aria-current="page"] {
    background-color: #1d5c44;
    color: #fff;
}



.Product-action {
    margin-top: 1rem;
}

.Product-root .js-atc-trigger {
    width: 100%;
    display: block;
}


.js-atc-trigger[loading] {
    background-color: #ccc;
    color: #000;
    pointer-events: none;
}

.Product-section {
    margin-top: 3rem;
}

.Product-details {
    display: grid;
    gap: 1rem;
}

.Product-section--grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 2fr;
}

.Product-section--grid>.grid-item {
    min-width: 0;
}

.Product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1d5c44;
    margin-top: -1.5rem;
}

.Product-image img {
    width: 100%;
}

.Product-tabs {
    background-color: #fff;
}

.wc-tabs {
    contain: layout;
    padding: 0;
    list-style: none;
    display: flex;
    margin-block-end: 1.5rem;
}
.wc-tabs::before {
    content: "";
    inset: auto 0 0 0;
    height: 1px;
    z-index: -2;
    position: absolute;
    background-color: #d9d9d9;
}
.wc-tabs li a {
    display: block;
    padding: 0.5em 1em;
    border: 1px solid #d9d9d9;
    border-bottom: transparent;
    background-color: #fff;
    border-top-left-radius: 0.25em;
    border-top-right-radius: 0.25em;
}

@media (max-width: 575.98px) {
    .Product-section--grid {
        grid-template-columns: 1fr;
    }
}




.wc-proceed-to-checkout > a {
    background-color: #1d5c44 !important;
}
.wc-proceed-to-checkout > a:hover {
    background-color: #267353 !important;
}

.coupon.coupon {
    display: flex;
    flex-wrap: wrap;
}

#coupon_code {
    width: 200px;
}

#place_order {
    margin-top: 1rem;
    background-color: #1d5c44 !important;
}

#place_order:hover {
    background-color: #267353 !important;
}

.woocommerce-loop-product__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.add_to_cart_button,
.return-to-shop > a,
.woocommerce-form-login__submit,
[name="wc_reset_password"] + * {
    background-color: #1d5c44 !important;
    color: #fff !important;
}
.add_to_cart_button:hover,
.return-to-shop > a:hover,
[name="wc_reset_password"] + *:hover,
.woocommerce-form-login__submit:hover {
    background-color: #267353 !important;
}

.woocommerce ul.order_details {
padding: 0;
}

.header-cart > * {
    grid-area: 1 / -1;
}
.header-cart .cart-count {
    pointer-events: none;
    background-color: #1d5c44;
    width: 20px;
    height: 20px;
    font-size: 80%;
    translate: 50% -50%;
    border-radius: 50%;
    color: #fff;
    place-content: center;
    line-height: 1;
}

.wc-bacs-bank-details-account-name {
margin-bottom: 1rem;
}

:is(.woocommerce-thankyou-order-details, .wc-bacs-bank-details) {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 1.5rem !important;
    border: 1px dashed #d9d9d9;
    border-radius: 0.5rem;
}
:is(.woocommerce-thankyou-order-details, .wc-bacs-bank-details) > * {
    flex: 1;
}

@media (max-width: 575.98px) {
	
    :is(.woocommerce-thankyou-order-details, .wc-bacs-bank-details) > * {
        padding: 0 0 1rem 0 !important;
        margin: 0 0 1rem 0 !important;
        border: 0 !important;
        border-bottom: 1px dashed #d9d9d9 !important;
    	min-width: 200px;
    }
    :is(.woocommerce-thankyou-order-details, .wc-bacs-bank-details) > *:last-child {
        border: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}


@media (min-width: 992px) {
	.Navbar-item--has-children .Navbar-dropdown {
		border-radius: 0.5rem;
		box-shadow: 0 1.5rem 3rem hsl(0, 0%, 0%, 20%);
		padding: 0.5rem !important;
		border: 1px solid #e9e9e9 !important;
	}
	.Navbar-item--has-children .Navbar-dropdown >:not(:last-child) {
		margin-bottom: 0.5rem;
	}
	.Navbar-item--has-children .Navbar-dropdown .Navbar-link {
		padding: 0.5em 0.75em !important;
		line-height: 1;
		margin: 0 !important;
		transition: unset;
	}
	.Navbar-item--has-children .Navbar-dropdown .Navbar-link:not([aria-current="page"]):hover {
		color: #000 !important;
		background-color: #f2f2f2;
	}
	.Navbar-item--has-children .Navbar-dropdown .Navbar-link[aria-current="page"] {
		color: #fff !important;
		background-color: #1d5c44;
	}
}



    .Shop-header {

        margin-bottom: 1.5rem;

        display: flex;

        align-items: center;

        gap: 1rem;

        justify-content: space-between;

        flex-wrap: wrap;

    }



    .Product-list {

        display: grid;

        gap: 1rem;

        grid-template-columns: repeat(4, 1fr);

        padding: 0;

        margin: 0;

        list-style: none;

    }



    .Product-root.Product-root {

        padding: 1rem;

        display: grid;

        gap: 1rem;

    }



    .Product-root.Product-root img {

        width: 100%;

    }



    .Product-caption {

        min-width: 0;

    }



    .Product-caption .Product-title {

        font-weight: 600;

        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;

    }



    #sortBy {

        padding: 0.75em 1em;
		outline: 1px solid #d9d9d9;
		border: 0;
		border-right: 1em solid transparent;
        font-size: 1rem;

        border-radius: 0.35em;

    }


html[lang="ar"] #sortBy {
    border-right: 0;
    border-left: 1rem solid transparent;
}
@media (max-width: 991.98px) {
    .Product-list {
        grid-template-columns: repeat(3, 1fr);
    }
	.nav > ul {
		padding: 0;
		list-style: none;
	}
	.nav .nav__link {
		display: grid;
		grid-template-columns: 1fr auto;
	}
	.nav .nav__link svg {
		width: 1rem;
		height: 1rem;
		color: inherit;
		fill: currentColor;
	}
	.nav .nav__item:not(.is-open) .nav__submenu {
		display: none;
	}
	.nav .nav__item .nav__submenu {
		background-color: #f2f2f2;
	}
	.nav .nav__item .sub-arrow {
		width: 1.75rem;
		height: 1.75rem;
		background-color: #eee;
		border-radius: 50%;
		display: grid;
		place-content: center;
	}
	.nav .nav__item.is-open .sub-arrow {
		background-color: #1d5c44;
		color: #fff;
	}
}
@media (max-width: 767.98px) {
    .Product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 475.98px) {
    .Product-list {
        grid-template-columns: 1fr;
    }
}


.aicws-error {
    padding: 3rem 1.5rem;
    background-color: #fff;
    box-shadow: 0 1.5rem 3rem hsl(0, 0%, 0%, 10%);
    border: 1px solid #d9d9d9;
    border-radius: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw + 0.75rem, 2rem);
}

#aicws .Product-action {
    display: grid;
    gap: 0.5rem;
}
#aicws .Product-action [class$="live"] {
    text-align: center;
    background-color: #f2f2f2;
    color: #1d5c44;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    padding: 0.72rem 1.35rem;
}
#aicws .Product-root {
    padding: 0;
	gap: 0;
    contain: paint;
}
#aicws .Product-caption {
    padding: 1rem;
}
.Shop-search {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-block-end: 1.5rem;
    align-items: center;
    background-color: #fff;
    padding: 0.5em;
    padding-left: 1em;
    border-radius: 0.5em;
    gap: 0.25rem;
    border: 1px solid #d9d9d9;
}
.Shop-search svg {
    width: 1.25rem;
    height: 1.25rem;
}
.Shop-search input {
    background-color: transparent;
    border: 0;
    padding: 0.25em;
    font-size: 1rem;
    outline: none;
}

.Shop-filters {
    display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.Shop-filters > * {
    flex: 1;
}
.Shop-filters select {
    padding: 0.75em 1em;
    border: 0;
    border-right: 1rem solid transparent;
    outline: 1px solid #d9d9d9;
    font-size: 1rem;
    border-radius: 0.35em;
    cursor: pointer;
}

html[lang="ar"] .Shop-filters select {
    border-right: 0;
    border-left: 1rem solid transparent;
}

.aicws-pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    list-style: none;
	margin-top: 1.5rem;
}
.aicws-pagination .page-numbers li > * {
    background-color: #eee;
    padding: 0.35em 1em;
    border-radius: 0.35em;
}
.aicws-pagination .page-numbers li > *:not([aria-current="page"]):hover {
    background-color: #ddd;
}
.aicws-pagination .page-numbers li [aria-current="page"] {
    background-color: #1d5c44;
    color: #fff;
}

.Product-section {
    contain: layout;
    color: #fff;
	min-height: 60vh;
	min-height: 60dvh;
	align-content: center;
}
.Product-section .Product-bg > * {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}
.Product-section .Heading-main {
    color: #cfa935;
    font-size: 62px;
    line-height: 1;
}

.Product-section .Product-shortDescription {
    font-size: 1.5rem;
}
.Product-section .Product-description {
    margin-block-end: 1rem;
}

.Product-section .Product-details {
    max-width: 900px;
}

.Product-section .Product-actions {
    display: flex;
    gap: 1rem;
	flex-wrap: wrap;
}
.Product-section .Product-actions > * > * {
    height: 100%;
}

.t-c {
	text-align: center;
}

.Module-list :is(ul, ol) {
    padding: 0;
    list-style: none;
}
body.single-product .section:nth-child(even) {
    background-color: #fff;
}
.section--cert .cert-heading {
    text-align: center;
    margin-block-end: 2rem;
}
.section--cert .cert-heading > * {
    background-color: #1d5c44;
    color: #fff;
    padding: 0.5em 2em;
    border-radius: 100vmax; 
	display: inline-block;
}
.cert-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cert-item p:first-child {
    margin: 0;
}

p:empty {
    display: none;
}
.cert-box:last-child {
    border: 1px solid hsl(157, 52%, 24%, 10%);
    padding: 1.5rem;
    border-radius: 1rem;
    align-content: center;
    background-color: hsl(157, 52%, 24%, 5%);
}

body.single-product .section:not(:first-child) {
	border-top: 1px solid #d9d9d9;
}
.section--why_matters .grid-item {
	text-align: center;
}
.section--why_matters .grid-item h3 {
	font-size: 1.5rem;
}


.section--who_enroll img {
	border-radius: 1rem;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.2);
}
.section--who_enroll ul {
	padding-left: 1.25rem;
	display: grid;
	gap: 1rem;
}

@media (max-width: 767.98px) {
	.cert-wrapper {
		grid-template-columns: 1fr;
	}
}


.Module-item {
    user-select: none;
    user-select: none;
    border: 1px solid #d9d9d9;
    box-shadow: 0 1px hsl(0, 0%, 0%, 20%);
}
.Module-content {
    display: grid;
    contain: paint;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: 1s grid-template-rows cubic-bezier(0.255, 0.88, 0.188, 1);
}
.Module-item.active .Module-content {
    grid-template-rows: 1fr;
}

.Module-item .Module-animation {
    min-height: 0;
}

.Module-item .Module-description {
    padding: 1em;
    translate: 0 -100%;
    transition: 1s all cubic-bezier(0.255, 0.88, 0.188, 1);
}

.Module-item.active .Module-description {
    translate: 0 0;
}

.Module-item .Module-title {
    padding: 1em;
    cursor: pointer;
    background-color: #f3f3f3;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
	line-height: 1.25;
}
.Module-item.active .Module-title {
    background-color: #efefef;
}
.Module-item .Module-title svg {
    width: 1rem;
    height: 1rem;
    transition: 1s all cubic-bezier(0.255, 0.88, 0.188, 1);
}
.Module-item.active .Module-title svg {
    rotate: 180deg;
}

.Product-section .Product-description :is(ul, ol) {
    padding-left: 1.5em;
    display: grid;
    gap: 0.5em;
}

@media (max-width: 575.98px) {
	.Product-section .Heading-main {
		font-size: 40px;
	}
	.Product-section .Product-shortDescription {
		font-size: 1.25rem;
		line-height: 1.25;
	}
}

.aicws-products-wrapper {
	position: relative;
}
.aicws-loading {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    pointer-events: none;
}

.aicws-products-count {
    display: block;
    background-color: #cfa935;
    max-width: max-content;
    padding: 0.25em 1.5em;
    color: #fff;
    font-weight: 600;
    border-radius: 100vmax;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    margin-inline: auto;
}

.Product-section .Product-price {
    margin-block: 0 0.25em;
	font-weight: 600;
	font-size: clamp(1.35rem, 1.5vw + 0.5rem, 1.5rem);
}
.Product-section .Product-price > * {
    color: #1d5c44;
    padding: 0.25em 0.75em;
    background-color: #fff;
	border-radius: 0.35em;
    display: inline-block;
}




.woocommerce-account :is(form.login, form.lost_reset_password) {
    max-width: 600px;
    margin-inline: auto;
    margin-top: 1.5rem;
    background-color: #fff;
}
.woocommerce-account:has(:is(form.login, form.lost_reset_password)) h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    text-align: center;
    font-family: var(--font-display);
}
.woocommerce-account :is(form.login, form.lost_reset_password) label {
    font-size: 0.85rem;
}
.woocommerce-account :is(form.login, form.lost_reset_password) input:not([type="checkbox"]) {
    width: 100% !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    color: var(--ink) !important;
    padding: 0.75rem 0.9rem !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    background: var(--surface) !important;
    transition: border-color 0.2s !important;
}
.woocommerce-account :is(form.login, form.lost_reset_password) input:focus {
    outline: none !important;
    border-color: var(--green-700) !important;
}
.woocommerce-account form.login > [class="form-row"] {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.woocommerce-account form.login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

form.lost_reset_password {
    padding: 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 0.5rem;
}
form.lost_reset_password .form-row {
    width: 100%;
}

.woocommerce-checkout #customer_details {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 0.5rem;
}

.woocommerce-checkout #order_review_heading {
    margin-block: 1rem;
}
.woocommerce-checkout :is(.shop_table, .place-order, .wc_payment_methods) {
    background-color: #fff;
}

.woocommerce-checkout form.checkout :is(input:not(:is([type="checkbox"], [type="radio"])), textarea) {
    width: 100% !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    color: var(--ink) !important;
    padding: 0.75rem 0.9rem !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    background: var(--surface) !important;
    transition: border-color 0.2s !important;
}
.woocommerce-checkout form.checkout .select2-selection {
    font-family: inherit !important;
    font-size: 1rem !important;
    color: var(--ink) !important;
    padding: 0.25rem 0.5rem !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    background: var(--surface) !important;
    transition: border-color 0.2s !important;
}
.woocommerce-checkout form.checkout input:focus {
    outline: none !important;
    border-color: var(--green-700) !important;
}

.woocommerce-checkout form.checkout label {
    font-size: 0.85rem;
}

#payment div.payment_box::before {
    border-bottom-color: #f2f2f2 !important;
    translate: 0 -3px;
}
#payment .payment_box.payment_method_stripe {
    background: #f2f2f2 !important;
}
.woocommerce-cart .quantity input {
    font-family: inherit !important;
    font-size: 1rem !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    background: var(--surface) !important;
    transition: border-color 0.2s !important;
}
.woocommerce-cart [name="update_cart"]:not(:disabled) {
	background-color: #1d5c44 !important;
}
.woocommerce-cart [name="update_cart"]:not(:disabled):hover {
	background-color: #267353 !important;
}
 

.post-link {
	margin-top: 1rem;
}

.news-card__img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.page-hero-news {
	text-align: center;
}

.Block-post--single img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: 1rem;
}
.Post-single--header {
    margin-block: 1.5rem;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 1.5rem;
}

.Post-single--content p:not(:last-child) {
	margin-bottom: 1em !important;
}