/* EL-HEIBA — Next storefront chrome on Botble (ivory / charcoal / gold / WA). */
:root {
  --eh-ivory: #F4EFE7;
  --eh-muted: #EFE8DE;
  --eh-line: #E5DED3;
  --eh-taupe: #C4B8A8;
  --eh-charcoal: #171717;
  --eh-gold: #B89455;
  --eh-gold-2: #A38144;
  --eh-gold-soft: #EFE8DE;
  --eh-wa: #25D366;
  --eh-wa-hover: #1FA855;
  --eh-tab: 3.5rem;
  --eh-tab-offset: calc(var(--eh-tab) + env(safe-area-inset-bottom, 0px));
  --eh-mast: 2rem;
  --eh-util: 0px;
  --eh-nav-h: 4rem;
  --eh-chrome-h: calc(var(--eh-mast) + var(--eh-util) + var(--eh-nav-h));
  --eh-ease: cubic-bezier(.22, 1, .36, 1);
  --eh-move: .55s;
  --color-1st: var(--eh-gold);
  --primary-color: var(--eh-gold);
  --color-2nd: var(--eh-charcoal);
  --secondary-color: var(--eh-charcoal);
}

@media (min-width: 1024px) {
  :root {
    --eh-tab: 0px;
    --eh-tab-offset: 0px;
    --eh-util: 2.5rem;
    --eh-nav-h: 4.5rem;
  }
}

.eh-site,
html,
body.eh-site {
  background: var(--eh-ivory) !important;
  color: var(--eh-charcoal);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  direction: rtl;
  text-align: right;
}

body.eh-site[dir="ltr"],
html[lang="en"] body.eh-site {
  direction: ltr;
  text-align: left;
  font-family: "Be Vietnam Pro", "IBM Plex Sans Arabic", sans-serif;
}

/* One document scrollport — Martfury sets html+body { position:relative; min-height:100% }
   and body { overflow-x:hidden }, which iOS treats as a second scroller. */
html {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: clip !important;
  overflow-y: auto !important;
  position: static !important;
}
body.eh-site {
  padding-bottom: var(--eh-tab-offset);
  height: auto !important;
  min-height: 100% !important;
  overflow: visible !important;
  position: static !important;
}
#main-content,
#homepage-1,
.eh-home {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

body.eh-menu-open {
  overflow: hidden;
}

h1, h2, h3, h4,
.eh-brand__en,
.eh-masthead p,
.eh-ship h2,
.eh-footer__brand {
  font-family: "IBM Plex Sans Arabic", "Be Vietnam Pro", sans-serif;
}

.eh-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.eh-skip {
  position: absolute;
  inset-inline-start: 16px;
  top: 16px;
  z-index: 80;
  transform: translateY(-200%);
  background: var(--eh-gold);
  color: var(--eh-charcoal);
  border-radius: 999px;
  padding: 8px 16px;
}
.eh-skip:focus {
  transform: none;
}

/* Kill leftover Martfury chrome */
.header.header--1,
.header.header--mobile,
.header.header--product,
.tnw-bottom-nav,
.navigation--list,
.navigation--mobile-product,
.ps-panel--sidebar,
.tnw-pmband,
.menu--product-categories,
#homepage-1 > .ps-home,
.mh-clusters,
.mh-how,
.footer.ps-footer,
.whatsapp-btn-container {
  display: none !important;
}

.ps-breadcrumb {
  background: var(--eh-ivory);
  border-bottom: 1px solid var(--eh-line);
  padding: 12px 0;
}
.ps-breadcrumb a,
.ps-breadcrumb li {
  color: rgba(23, 23, 23, .7) !important;
}

/* Buttons — rounded-full like Next */
.eh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none !important;
  border: 0;
  gap: 8px;
}
.eh-btn--gold {
  background: var(--eh-gold);
  color: #fff !important;
}
.eh-btn--gold:hover { background: var(--eh-gold-2); color: #fff !important; }
.eh-btn--wa {
  background: var(--eh-wa) !important;
  color: #fff !important;
}
.eh-btn--wa:hover { background: var(--eh-wa-hover) !important; }
.eh-btn--ghost {
  background: transparent;
  color: var(--eh-ivory) !important;
  border: 1px solid var(--eh-ivory);
}
.eh-btn--ghost:hover {
  background: var(--eh-ivory);
  color: var(--eh-charcoal) !important;
}
.eh-btn--outline-gold {
  background: transparent;
  color: var(--eh-gold) !important;
  border: 1px solid rgba(184, 148, 85, .5);
  min-height: 44px;
}
.eh-btn--outline-gold:hover {
  background: var(--eh-gold);
  color: var(--eh-charcoal) !important;
}
.eh-btn {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s var(--eh-ease);
}
.eh-btn:hover {
  transform: translateY(-2px);
}
.eh-btn:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 3px;
}
.eh-btn--wa:focus-visible {
  outline-color: #fff;
}

/* Letterhead chrome — charcoal promise + ivory bar, sticky as one unit */
.eh-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--eh-ivory);
}

.eh-masthead {
  background: var(--eh-charcoal);
  color: var(--eh-ivory);
  min-height: 40px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(184, 148, 85, .4);
  overflow: hidden;
}
.eh-masthead p {
  margin: 0;
  flex: 1;
  min-width: 0;
  color: var(--eh-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
}
.eh-masthead__lang {
  flex-shrink: 0;
}
.eh-masthead span {
  display: none;
  color: rgba(244, 239, 231, .62);
  font-size: 11px;
  letter-spacing: .14em;
  margin-top: 2px;
}
@media (min-width: 1024px) {
  .eh-masthead {
    flex-direction: column;
    justify-content: center;
    min-height: var(--eh-mast);
    padding: 0 16px;
    text-align: center;
  }
  .eh-masthead p {
    flex: none;
    font-size: 13px;
    text-align: center;
    overflow: visible;
  }
  .eh-masthead__lang { display: none; }
  .eh-masthead span { display: block; }
}

.eh-util {
  display: none;
  background: var(--eh-ivory);
  color: var(--eh-charcoal);
  height: var(--eh-util);
  border-bottom: 1px solid var(--eh-line);
}
.eh-util__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.eh-util__wa {
  color: var(--eh-wa) !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.eh-util__wa:hover { color: var(--eh-wa-hover) !important; }
.eh-util p {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: rgba(23, 23, 23, .68);
}
.eh-util__end {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.eh-util__end a {
  color: var(--eh-charcoal);
  text-decoration: none;
}
.eh-util__end a:hover { color: var(--eh-gold); }
@media (min-width: 1024px) {
  .eh-util { display: block; }
}

.eh-nav {
  position: relative;
  background: rgba(244, 239, 231, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 148, 85, .38);
}
.eh-nav__bar {
  max-width: 1280px;
  margin: 0 auto;
  min-height: var(--eh-nav-h);
  padding: 0 8px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  grid-template-areas: "menu brand search";
  align-items: center;
  column-gap: 8px;
  overflow: visible;
}
@media (min-width: 1024px) {
  .eh-nav__bar {
    display: flex;
    grid-template-areas: none;
    padding: 0 24px;
    gap: 16px;
  }
}

.eh-nav__start {
  display: contents;
}
@media (min-width: 1024px) {
  .eh-nav__start {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1;
  }
}

.eh-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--eh-charcoal);
  min-width: 0;
  grid-area: brand;
}
.eh-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.eh-brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  min-width: 0;
}
.eh-brand__ar {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
}
.eh-brand__rule {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--eh-gold);
  margin: 3px 0;
}
.eh-brand__en {
  display: block;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  color: rgba(23, 23, 23, .72);
}
@media (min-width: 1024px) {
  .eh-brand,
  .eh-nav__menu,
  .eh-nav__end {
    grid-area: auto;
    justify-self: auto;
  }
  .eh-brand { justify-content: flex-start; gap: 10px; }
  .eh-brand img { width: 48px; height: 48px; }
  .eh-brand__ar { font-size: 18px; }
  .eh-brand__en { font-size: 10px; letter-spacing: .24em; }
  .eh-brand__text { align-items: center; }
}

.eh-pills {
  display: none;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  margin-inline-start: 4px;
}
.eh-pills > a,
.eh-mega > a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--eh-charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.eh-pills > a:hover,
.eh-pills > a.is-on,
.eh-mega > a:hover,
.eh-mega > a.is-on {
  background: var(--eh-muted);
  color: var(--eh-charcoal);
}
.eh-pills > a:focus-visible,
.eh-mega > a:focus-visible,
.eh-brand:focus-visible,
.eh-nav__quote:focus-visible,
.eh-nav__icon:focus-visible,
.eh-nav__menu:focus-visible,
.eh-nav__search-btn:focus-visible,
.eh-search input:focus-visible,
.eh-lang__opt:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
@media (min-width: 1024px) {
  .eh-pills { display: flex; }
}

.eh-mega { position: relative; }
.eh-mega__panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--eh-line);
  border-radius: 16px;
  padding: 12px;
  z-index: 60;
  box-shadow: 0 18px 40px rgba(23, 23, 23, .08);
}
.eh-mega:hover .eh-mega__panel,
.eh-mega:focus-within .eh-mega__panel {
  display: grid;
  gap: 2px;
}
.eh-mega__label {
  margin: 0 4px 6px;
  padding: 4px 8px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--eh-gold);
}
.eh-mega__panel a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--eh-charcoal);
  text-decoration: none;
  font-size: 14px;
}
.eh-mega__panel a:hover { background: var(--eh-muted); }

.eh-nav__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  grid-area: search;
  justify-self: end;
}
.eh-nav__lang { display: none !important; }
.eh-nav__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--eh-charcoal);
  border-radius: 999px;
  touch-action: manipulation;
}
.eh-nav__search-btn:hover,
.eh-nav.is-search .eh-nav__search-btn {
  background: var(--eh-muted);
}
.eh-search {
  display: none;
  position: relative;
  align-items: center;
}
.eh-search svg {
  position: absolute;
  inset-inline-start: 12px;
  color: rgba(23, 23, 23, .45);
  pointer-events: none;
}
.eh-search input {
  height: 44px;
  border: 1px solid var(--eh-line);
  background: #fff;
  padding-block: 0;
  padding-inline-start: 36px;
  padding-inline-end: 14px;
  border-radius: 999px;
  width: 220px;
  font-size: 14px;
  color: var(--eh-charcoal);
}
.eh-nav.is-search .eh-search {
  display: flex;
  position: absolute;
  inset-inline: 12px;
  top: calc(100% + 8px);
  z-index: 51;
}
.eh-nav.is-search .eh-search input {
  width: 100%;
  box-shadow: 0 12px 32px rgba(23, 23, 23, .12);
}
@media (min-width: 1024px) {
  .eh-nav__search-btn { display: none; }
  .eh-search { display: flex; }
  .eh-nav.is-search .eh-search {
    position: relative;
    inset: auto;
    top: auto;
  }
  .eh-search input { width: 200px; }
}

.eh-nav__quote {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--eh-gold);
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color .15s ease;
}
.eh-nav__quote:hover { background: var(--eh-gold-2); color: #fff !important; }
@media (min-width: 1024px) {
  .eh-nav__quote { display: inline-flex; }
}

.eh-nav__icon {
  position: relative;
  color: var(--eh-charcoal);
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.eh-nav__icon:hover { background: var(--eh-muted); }
.eh-nav__badge {
  position: absolute;
  top: 4px;
  inset-inline-start: 4px;
  background: var(--eh-charcoal);
  color: #fff;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .eh-nav__icon--desk { display: inline-flex; }
}

.eh-nav__menu {
  background: none;
  border: 0;
  color: var(--eh-charcoal);
  min-height: 44px;
  min-width: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  grid-area: menu;
  justify-self: start;
  -webkit-tap-highlight-color: transparent;
}
.eh-nav__menu:hover { background: var(--eh-muted); }
.eh-nav__menu span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.eh-nav__menu i {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--eh-charcoal);
  transition: transform .2s ease, opacity .2s ease;
}
.eh-nav__menu.is-open i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.eh-nav__menu.is-open i:nth-child(2) { opacity: 0; }
.eh-nav__menu.is-open i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) {
  .eh-nav__menu { display: none; }
}

/* Mobile drawer — ivory sheet under letterhead. Above tab bar while open. */
.eh-drawer[hidden] { display: none !important; }
.eh-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
}
body.eh-menu-open .eh-tabs {
  display: none !important;
}
.eh-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, .4);
  border: 0;
}
.eh-drawer__panel {
  position: absolute;
  inset-inline: 0;
  top: var(--eh-chrome-h);
  bottom: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--eh-ivory);
  color: var(--eh-charcoal);
  padding: 12px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}
body.eh-menu-open .eh-footer,
body.eh-menu-open .eh-fab {
  display: none !important;
}
.eh-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.eh-drawer__block {
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--eh-line);
}
.eh-drawer__block:last-of-type { border-bottom: 0; }
.eh-drawer__label {
  margin: 0 0 4px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--eh-gold);
  pointer-events: none;
}
.eh-drawer__panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  padding-inline-start: 12px;
  border-radius: 10px;
  color: var(--eh-charcoal) !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  touch-action: manipulation;
}
.eh-drawer__panel a:hover,
.eh-drawer__panel a:focus-visible {
  background: var(--eh-muted);
}
.eh-drawer__panel a:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
.eh-drawer__lead {
  font-weight: 700 !important;
  padding-inline-start: 4px !important;
}
.eh-drawer__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.eh-drawer__cats a {
  min-height: 40px;
  font-size: 13px;
  color: rgba(23, 23, 23, .78) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eh-drawer__cta {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--eh-line);
}
.eh-drawer__quote,
.eh-drawer__sample,
.eh-drawer__wa {
  justify-content: center !important;
  min-height: 48px !important;
  padding-inline: 16px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}
.eh-drawer__quote {
  background: var(--eh-gold) !important;
  color: #fff !important;
}
.eh-drawer__quote:hover { background: var(--eh-gold-2) !important; }
.eh-drawer__sample {
  background: transparent !important;
  border: 1.5px solid var(--eh-line);
  color: var(--eh-charcoal) !important;
}
.eh-drawer__wa {
  background: var(--eh-wa) !important;
  color: #fff !important;
}
.eh-drawer__wa:hover { background: var(--eh-wa-hover) !important; }
.eh-drawer__lang {
  margin-top: auto;
  padding: 16px 0 4px;
  position: sticky;
  bottom: 0;
  background: var(--eh-ivory);
}

/* Bilingual letterhead stamp — عربي | EN */
.eh-lang {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 36px;
  border: 1px solid rgba(184, 148, 85, .55);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  isolation: isolate;
}
.eh-lang__opt {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 36px;
  padding: 0 12px !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(23, 23, 23, .72) !important;
  text-decoration: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.eh-lang__opt.is-on {
  background: var(--eh-charcoal) !important;
  color: var(--eh-ivory) !important;
}
.eh-lang__opt:not(.is-on):hover {
  background: var(--eh-muted) !important;
  color: var(--eh-charcoal) !important;
}
.eh-lang--drawer {
  display: grid;
  width: 100%;
  min-height: 48px;
}
.eh-lang--drawer .eh-lang__opt {
  min-height: 48px;
  font-size: 15px;
  padding: 0 16px !important;
}
.eh-lang--on-dark {
  background: transparent;
  border-color: rgba(184, 148, 85, .7);
}
.eh-lang--on-dark .eh-lang__opt {
  color: rgba(244, 239, 231, .72) !important;
}
.eh-lang--on-dark .eh-lang__opt.is-on {
  background: var(--eh-ivory) !important;
  color: var(--eh-charcoal) !important;
}
.eh-lang--on-dark .eh-lang__opt:not(.is-on):hover {
  background: rgba(244, 239, 231, .12) !important;
  color: var(--eh-ivory) !important;
}
.eh-lang--mast {
  height: 28px;
  min-height: 28px;
  border-color: rgba(184, 148, 85, .55);
}
.eh-lang--mast .eh-lang__opt {
  min-width: 40px;
  min-height: 28px;
  padding: 0 10px !important;
  font-size: 11px;
  letter-spacing: .02em;
}

@media (max-width: 1023.98px) {
  .eh-pills,
  .eh-nav__quote,
  .eh-nav__icon {
    display: none !important;
  }
  .eh-nav__end {
    width: 44px;
    min-width: 44px;
    max-width: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eh-nav__menu i,
  .eh-nav__quote,
  .eh-pills > a,
  .eh-mega > a {
    transition: none;
  }
}

/* Mobile tab bar — 1024px breakpoint, WhatsApp green */
.eh-tabs {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--eh-ivory);
  border-top: 1px solid rgba(184, 148, 85, .3);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  height: calc(56px + env(safe-area-inset-bottom, 0px));
  touch-action: manipulation;
}
.eh-tabs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(23, 23, 23, .7);
  text-decoration: none;
  min-height: 56px;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.eh-tabs a:active,
.eh-tabs a.is-press,
.eh-tabs a.is-on {
  color: var(--eh-gold);
}
.eh-tabs a:active,
.eh-tabs a.is-press {
  background: var(--eh-muted);
}
.eh-tabs__wa { color: var(--eh-wa) !important; }
@media (min-width: 1024px) {
  .eh-tabs { display: none; }
}

/* Homepage hero — photo clips in a non-interactive layer; the section itself never scrolls */
.eh-hero {
  position: relative;
  min-height: min(64dvh, 28rem);
  height: auto;
  overflow: visible;
  border-bottom: 1px solid var(--eh-taupe);
  background: var(--eh-ivory);
}
.eh-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.eh-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.eh-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 23, 23, .7), rgba(23, 23, 23, .25), transparent);
  pointer-events: none;
}
.eh-hero__copy {
  position: relative;
  z-index: 2;
  min-height: min(64dvh, 28rem);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px 32px;
}
.eh-kicker {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--eh-gold);
  margin: 0;
}
.eh-kicker--on-photo { color: var(--eh-gold); }
.eh-kicker--on-dark { color: var(--eh-gold); }
.eh-hero__rule {
  width: 4.5rem;
  height: 1px;
  background: var(--eh-gold);
  transform: scaleX(0);
  transform-origin: center;
  animation: eh-rule .85s .18s var(--eh-ease) forwards;
}
.eh-hero h1 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--eh-ivory);
  font-weight: 700;
  text-wrap: balance;
}
.eh-hero__copy > * {
  animation: eh-slip .7s var(--eh-ease) both;
}
.eh-hero__copy > *:nth-child(1) { animation-delay: .04s; }
.eh-hero__copy > *:nth-child(2) { animation-delay: .1s; }
.eh-hero__copy > *:nth-child(3) { animation-delay: .16s; }
.eh-hero__copy > *:nth-child(4) { animation-delay: .22s; }
.eh-hero__copy > *:nth-child(5) { animation-delay: .28s; }
.eh-hero__copy > *:nth-child(6) { animation-delay: .34s; }
.eh-hero__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244, 239, 231, .9);
}
.eh-hero__ship {
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(184, 148, 85, .6);
  background: rgba(23, 23, 23, .4);
  color: var(--eh-gold);
  font-size: 14px;
  padding: 6px 16px;
}
.eh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 1024px) {
  .eh-hero {
    min-height: 75vh;
  }
  .eh-hero__copy {
    min-height: 75vh;
    padding: 8rem;
    gap: 24px;
  }
  .eh-hero h1 { font-size: 3.75rem; }
  .eh-hero__lead { font-size: 18px; }
  .eh-hero__img {
    transform: scale(1.06);
    animation: eh-still 16s var(--eh-ease) forwards;
  }
}

/* Shipping band */
.eh-ship {
  background: var(--eh-charcoal);
  color: var(--eh-ivory);
  border-block: 1px solid rgba(184, 148, 85, .3);
}
.eh-ship__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 24px;
}
.eh-ship h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eh-ivory);
  line-height: 1.2;
}
.eh-ship p {
  margin: 12px 0 0;
  max-width: 40rem;
  color: rgba(244, 239, 231, .8);
  font-size: 14px;
  line-height: 1.7;
}
.eh-ship__places {
  color: rgba(184, 148, 85, .9) !important;
  font-size: 12px !important;
  letter-spacing: .14em;
}
@media (min-width: 1024px) {
  .eh-ship__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px 24px;
  }
  .eh-ship h2 { font-size: 2.25rem; }
  .eh-ship p { font-size: 16px; }
}

/* Featured photo range */
.eh-range {
  background: var(--eh-ivory);
  padding: 48px 0;
}
.eh-head { margin-bottom: 32px; }
.eh-head h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
  color: var(--eh-charcoal);
}
.eh-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.eh-text-link {
  color: var(--eh-charcoal);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.eh-text-link:hover { color: var(--eh-gold); }
.eh-photos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.eh-photos a {
  display: block;
  color: var(--eh-charcoal);
  text-decoration: none;
}
.eh-photos__frame {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--eh-muted);
}
.eh-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--eh-ease);
}
.eh-photos a:hover img { transform: scale(1.045); }
.eh-photos__name {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .eh-range { padding: 80px 0; }
  .eh-head h2 { font-size: 1.875rem; }
  .eh-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.eh-sectors { margin-top: 32px; }
.eh-sectors ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.eh-sectors a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--eh-taupe);
  color: var(--eh-charcoal);
  text-decoration: none;
  font-size: 14px;
}
.eh-sectors a {
  transition: border-color .2s ease, color .2s ease, transform .2s var(--eh-ease);
}
.eh-sectors a:hover {
  border-color: var(--eh-gold);
  color: var(--eh-gold);
  transform: translateY(-2px);
}

/* Featured products */
.eh-picks {
  background: var(--eh-ivory);
  padding: 0 0 48px;
}
.eh-picks__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.eh-picks__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.eh-card {
  display: flex;
  flex-direction: column;
  color: var(--eh-charcoal) !important;
  text-decoration: none;
}
.eh-card__frame {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--eh-muted);
}
.eh-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .45s var(--eh-ease);
}
.eh-card:hover img { transform: scale(1.04); }
.eh-card__cta {
  margin-top: 4px;
  font-size: 13px;
  color: var(--eh-gold);
  transition: color .2s ease, transform .2s var(--eh-ease);
}
.eh-card:hover .eh-card__cta { transform: translateX(-4px); }
body.eh-site[dir="ltr"] .eh-card:hover .eh-card__cta { transform: translateX(4px); }
.eh-card__name {
  margin-top: 12px;
  font-size: 14px;
}
.eh-card__cta {
  margin-top: 4px;
  font-size: 13px;
  color: var(--eh-gold);
}
@media (min-width: 1024px) {
  .eh-picks { padding: 0 0 96px; }
  .eh-picks__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

/* Footer */
.eh-footer {
  background: var(--eh-charcoal);
  color: var(--eh-ivory);
  border-top: 1px solid rgba(184, 148, 85, .3);
  padding: 40px 0 calc(24px + var(--eh-tab-offset));
}
.eh-footer__grid {
  display: grid;
  gap: 28px 20px;
}
@media (min-width: 520px) {
  .eh-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .eh-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}
.eh-footer__brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--eh-ivory) !important;
  text-decoration: none;
}
.eh-footer p { margin: 8px 0 0; font-size: 14px; color: rgba(244, 239, 231, .7); }
.eh-footer__ship { color: var(--eh-gold) !important; }
.eh-footer__wa {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  color: var(--eh-wa) !important;
  text-decoration: none;
  font-weight: 600;
}
.eh-footer__wa:hover { color: var(--eh-ivory) !important; }
.eh-footer__col p {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--eh-gold);
}
.eh-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.eh-footer a {
  color: rgba(244, 239, 231, .8);
  text-decoration: none;
  font-size: 13px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.eh-footer a:hover,
.eh-footer a:focus-visible { color: var(--eh-gold); }
.eh-footer a:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
.eh-footer__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(244, 239, 231, .1);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 12px;
}
.eh-footer__copy p { margin: 0; color: rgba(244, 239, 231, .5); }
@media (min-width: 1024px) {
  .eh-footer { padding: 64px 0 28px; }
  .eh-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .eh-footer__grid > div:first-child { grid-column: auto; }
  .eh-footer__col p { font-size: 14px; letter-spacing: 0; }
  .eh-footer a { font-size: 14px; }
}

/* Desktop WhatsApp FAB — hidden on mobile (tab bar has WA) */
.eh-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 55;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--eh-wa) !important;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(23, 23, 23, .18);
}
.eh-fab:hover {
  background: var(--eh-wa-hover) !important;
  transform: translateY(-3px);
}
.eh-fab {
  transition: background-color .2s ease, transform .2s var(--eh-ease);
}
@media (min-width: 1024px) {
  .eh-fab { display: inline-flex; align-items: center; }
}

/* Inner Martfury product bits on ivory */
body.eh-site .ps-container,
body.eh-site .ps-shopping-product,
body.eh-site .ck-content {
  background: transparent;
}
body.eh-site .ps-product {
  background: #fff;
  border: 1px solid var(--eh-line);
  transition: transform .28s var(--eh-ease), box-shadow .28s var(--eh-ease);
}
body.eh-site .ps-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(23, 23, 23, .08);
}
body.eh-site .ps-btn,
body.eh-site a.ps-btn {
  background: var(--eh-gold) !important;
  border-color: var(--eh-gold) !important;
  color: #fff !important;
  min-height: 48px;
  border-radius: 999px !important;
}
body.eh-site .ps-product__price,
body.eh-site .ps-product__price-block,
body.eh-site .product-price,
body.eh-site .tnw-product-price,
body.eh-site .tnw-product-price-block,
body.eh-site .ps-list--prices,
body.eh-site .tnw-summary-card__value,
body.eh-site .tnw-summary-card__total,
body.eh-site [data-bb-value="product-price"],
body.eh-site .ps-page--product .ps-product__price,
body.eh-site .ps-page--product .tnw-product-price {
  display: none !important;
}

body.eh-site .tnw-product-price-note {
  margin: 0 0 1rem;
  color: var(--eh-gold);
  font-weight: 600;
  font-size: 1.05rem;
}

body.eh-site .tnw-product-shopping .eh-btn,
body.eh-site .tnw-product-shopping .eh-product-wa {
  width: 100%;
}

body.eh-site .eh-product-wa,
body.eh-site a.eh-product-wa,
body.eh-site .eh-btn--wa,
body.eh-site a.eh-btn--wa,
body.eh-site .eh-product-wa.ps-btn {
  background: var(--eh-wa) !important;
  border-color: var(--eh-wa) !important;
  color: #fff !important;
}

body.eh-site .js-quick-view-button,
body.eh-site a[title="Quick View"],
body.eh-site .ps-product--standard .ps-product__actions,
body.eh-site .ps-product .ps-product__actions .js-add-to-cart-button {
  display: none !important;
}

/* Product page — quantity stepper + CTAs (RTL Martfury stretched the + button) */
body.eh-site .ps-page--product,
body.eh-site .tnw-product-page {
  background: var(--eh-ivory);
}
body.eh-site .tnw-product-info__title,
body.eh-site .ps-product--detail h1 {
  font-size: 1.35rem;
  line-height: 1.35;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  color: var(--eh-charcoal);
  margin: 0 0 12px;
}
body.eh-site .tnw-product-desc,
body.eh-site .ps-product__desc {
  color: rgba(23, 23, 23, .8);
  font-size: 15px;
  line-height: 1.7;
}
body.eh-site .tnw-stock--in {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--eh-muted);
  color: var(--eh-charcoal);
  font-size: 13px;
  font-weight: 600;
}
body.eh-site .bb-product-gallery-images img,
body.eh-site .tnw-product-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--eh-muted);
}
body.eh-site .ps-product__shopping,
body.eh-site .tnw-product-shopping {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
body.eh-site .ps-product__shopping figure {
  margin: 0 !important;
  width: auto !important;
  max-width: 100%;
  float: none !important;
}
body.eh-site .ps-product__shopping figcaption,
body.eh-site .ps-product__shopping figure > label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--eh-charcoal);
}

/* Compact LTR stepper: −  1  +  — no leftover empty track */
body.eh-site .form-group--number,
body.eh-site .product__qty,
body.eh-site .tnw-qty {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: stretch;
  justify-content: space-between;
  direction: ltr;
  width: 148px !important;
  max-width: 148px !important;
  min-height: 48px;
  height: 48px;
  margin: 0;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--eh-line);
  border-radius: 999px;
  background: #fff;
}
body.eh-site .form-group--number .down,
body.eh-site .form-group--number .up,
body.eh-site .tnw-qty .down,
body.eh-site .tnw-qty .up {
  position: static !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  float: none !important;
  width: 48px !important;
  min-width: 48px;
  min-height: 48px;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: var(--eh-charcoal) !important;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
body.eh-site .form-group--number .down:hover,
body.eh-site .form-group--number .up:hover,
body.eh-site .tnw-qty .down:hover,
body.eh-site .tnw-qty .up:hover {
  background: var(--eh-muted) !important;
}
body.eh-site .form-group--number .down:focus-visible,
body.eh-site .form-group--number .up:focus-visible,
body.eh-site .tnw-qty .down:focus-visible,
body.eh-site .tnw-qty .up:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: -2px;
}
body.eh-site .form-group--number input,
body.eh-site .tnw-qty input,
body.eh-site .qty-input {
  flex: 1 1 auto;
  width: 52px !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: center;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--eh-charcoal);
  box-shadow: none !important;
  -moz-appearance: textfield;
  appearance: textfield;
}
body.eh-site .form-group--number input::-webkit-outer-spin-button,
body.eh-site .form-group--number input::-webkit-inner-spin-button,
body.eh-site .qty-input::-webkit-outer-spin-button,
body.eh-site .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.eh-site .eh-product-wa,
body.eh-site a.whatsapp-btn.eh-product-wa {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 999px !important;
  background: var(--eh-wa) !important;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
}
body.eh-site .eh-product-wa:hover {
  background: var(--eh-wa-hover) !important;
}
body.eh-site .tnw-product-shopping .ps-btn,
body.eh-site .tnw-product-shopping .add-to-cart-button {
  width: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px !important;
  touch-action: manipulation;
}
body.eh-site .tnw-product-spec,
body.eh-site .ps-product__specification {
  font-size: 14px;
  color: rgba(23, 23, 23, .75);
}
body.eh-site .tnw-product-spec a {
  color: var(--eh-charcoal);
}
body.eh-site .tnw-product-spec a:hover { color: var(--eh-gold); }

/* PDP letterhead — kill TNAWRNA green, charcoal/gold packing cards */
body.eh-site .tnw-product-page,
body.eh-site .ps-page--product {
  --tnw-green-50: var(--eh-muted);
  --tnw-green-100: var(--eh-line);
  --tnw-green-200: var(--eh-taupe);
  --tnw-green-500: var(--eh-gold);
  --tnw-green-600: var(--eh-gold);
  --tnw-green-700: var(--eh-charcoal);
  --tnw-green-800: var(--eh-charcoal);
  --tnw-ink-900: var(--eh-charcoal);
  --tnw-ink-700: rgba(23, 23, 23, .78);
  --tnw-ink-500: rgba(23, 23, 23, .55);
  --tnw-ink-100: var(--eh-line);
  --tnw-surface: #fff;
}
body.eh-site .tnw-product-page .tnw-product-tabs,
body.eh-site .tnw-product-page .ps-product__content.ps-tab-root {
  margin-top: 24px;
  background: #fff;
  border: 1px solid rgba(184, 148, 85, .38);
  border-radius: 18px;
  padding: 8px 16px 20px;
  box-shadow: 0 10px 28px rgba(23, 23, 23, .04);
  position: relative;
  overflow: hidden;
}
body.eh-site .tnw-product-page .tnw-product-tabs::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 2px 4px;
  background: var(--eh-gold);
}
body.eh-site .tnw-product-page .ps-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(184, 148, 85, .28) !important;
  text-align: start;
}
body.eh-site .tnw-product-page .ps-tab-list li {
  margin: 0 !important;
}
body.eh-site .tnw-product-page .ps-tab-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  color: rgba(23, 23, 23, .62) !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none !important;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  margin-bottom: -1px;
  background: transparent !important;
  transition: color .15s ease, border-color .15s ease;
}
body.eh-site .tnw-product-page .ps-tab-list a:hover,
body.eh-site .tnw-product-page .ps-tab-list li.active a {
  color: var(--eh-charcoal) !important;
  border-bottom-color: var(--eh-gold) !important;
  background: transparent !important;
}
body.eh-site .tnw-product-page .ps-tab-list a:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
body.eh-site .tnw-product-page .ps-tab,
body.eh-site .tnw-product-page .ps-document,
body.eh-site .tnw-product-page .ck-content {
  color: rgba(23, 23, 23, .82) !important;
  font-size: 15px;
  line-height: 1.75;
  text-align: start;
}
body.eh-site .tnw-product-page .ck-content p {
  margin: 0 0 0.75rem;
}
body.eh-site .tnw-product-page .ps-page__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.eh-site .tnw-product-sidebar-card,
body.eh-site .tnw-product-video {
  background: #fff !important;
  border: 1px solid rgba(184, 148, 85, .38) !important;
  border-radius: 18px !important;
  padding: 16px 18px 18px !important;
  box-shadow: 0 10px 28px rgba(23, 23, 23, .04);
  position: relative;
  overflow: hidden;
}
body.eh-site .tnw-product-sidebar-card::before,
body.eh-site .tnw-product-video::before {
  content: "";
  display: block;
  height: 2px;
  margin: -16px -18px 14px;
  background: var(--eh-gold);
}
body.eh-site .tnw-product-sidebar-card__title,
body.eh-site .tnw-product-video .widget-title {
  margin: 0 0 14px !important;
  padding: 0 0 10px !important;
  border-bottom: 1px solid rgba(184, 148, 85, .28) !important;
  color: var(--eh-charcoal) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: .02em;
  text-transform: none !important;
  text-align: start;
  background: transparent !important;
}
body.eh-site .tnw-product-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.eh-site .tnw-product-sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(23, 23, 23, .78);
  text-align: start;
}
body.eh-site .tnw-product-sidebar-list strong {
  color: var(--eh-charcoal);
  font-weight: 700;
}
body.eh-site .tnw-product-sidebar-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--eh-muted) !important;
  color: var(--eh-gold) !important;
  border: 1px solid rgba(184, 148, 85, .4);
}
body.eh-site .header.header--product {
  display: none !important;
}

@media (min-width: 1024px) {
  body.eh-site .tnw-product-info__title {
    font-size: 2rem;
  }
  body.eh-site .eh-product-wa,
  body.eh-site .tnw-product-shopping .ps-btn {
    width: auto;
    min-width: 220px;
  }
  body.eh-site .ps-product__shopping,
  body.eh-site .tnw-product-shopping {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}

.eh-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: stretch;
  margin-top: auto;
  padding-top: 8px;
}
.eh-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  min-height: 40px;
  min-width: 40px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--eh-wa);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s ease, transform .18s ease;
}
.eh-card-wa:hover { background: var(--eh-wa-hover); color: #fff !important; }
.eh-card-wa:active { transform: scale(.98); }
.eh-card-wa:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
.eh-pick {
  display: flex;
  flex-direction: column;
}
.eh-card-atc {
  margin: 0;
  min-width: 0;
}
.eh-card-atc--pick {
  margin-top: 8px;
}
.eh-card-atc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: var(--eh-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .18s ease, transform .18s ease;
}
.eh-card-atc__btn:hover { background: var(--eh-gold-2); }
.eh-card-atc__btn:active { transform: scale(.98); }
.eh-card-atc__btn:focus-visible {
  outline: 2px solid var(--eh-charcoal);
  outline-offset: 2px;
}
.eh-reg-extra__hint {
  margin: 6px 0 0;
  font-size: 13px;
  color: #5c564e;
}

.eh-pdp-cta {
  display: none;
}
@media (max-width: 1023px) {
  body.eh-site .tnw-product-page .eh-product-wa {
    /* Sticky bar is the tap target on small screens */
    margin-bottom: 8px;
  }
  body.eh-has-pdp-cta {
    padding-bottom: calc(var(--eh-tab-offset) + 4.5rem);
  }
  .eh-pdp-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    position: fixed;
    inset-inline: 0;
    bottom: var(--eh-tab-offset);
    z-index: 75;
    padding: 8px 12px;
    background: rgba(244, 239, 231, .97);
    border-top: 1px solid rgba(184, 148, 85, .38);
  }
  .eh-pdp-cta__wa,
  .eh-pdp-cta__list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    border: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .eh-pdp-cta__wa {
    background: var(--eh-wa);
    color: #fff !important;
  }
  .eh-pdp-cta__wa:hover { background: var(--eh-wa-hover); }
  .eh-pdp-cta__list {
    background: var(--eh-charcoal);
    color: var(--eh-ivory);
    white-space: nowrap;
  }
}

@media (max-width: 1199px) {
  body.eh-site .ps-layout--shop .ps-layout__left.active {
    visibility: visible !important;
    z-index: 120 !important;
  }
  html[dir="rtl"] body.eh-site .ps-layout--shop .ps-layout__left .ps-layout__left-container {
    transform: translateX(100%);
  }
  html[dir="rtl"] body.eh-site .ps-layout--shop .ps-layout__left.active .ps-layout__left-container {
    transform: translateX(0);
  }
}

/* Catalog toolbar — packing-slip rail (gold rule, stamp controls) */
body.eh-site .tnw-shop-page,
body.eh-site .ps-page--shop {
  --tnw-green-50: var(--eh-ivory);
  --tnw-green-100: var(--eh-line);
  --tnw-green-200: var(--eh-taupe);
  --tnw-green-300: var(--eh-taupe);
  --tnw-green-600: var(--eh-gold);
  --tnw-green-700: var(--eh-charcoal);
  --tnw-green-800: var(--eh-charcoal);
  background: var(--eh-ivory);
}
body.eh-site .tnw-shop-toolbar,
body.eh-site .tnw-shop-toolbar.bg-light,
body.eh-site .tnw-shop-page .tnw-shop-toolbar.bg-light,
body.eh-site .eh-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  background: #fff !important;
  border: 1px solid var(--eh-line) !important;
  border-radius: 4px !important;
  padding: 8px 10px !important;
  margin-bottom: 12px !important;
  box-shadow: none !important;
  position: relative;
}
body.eh-site .eh-toolbar::before {
  content: "";
  position: absolute;
  inset-inline: 18px;
  top: 0;
  height: 2px;
  background: var(--eh-gold);
  border-radius: 0 0 2px 2px;
}
body.eh-site .eh-toolbar .container-fluid,
body.eh-site .eh-toolbar .row,
body.eh-site .eh-toolbar [class*="col-"] {
  display: contents;
}
body.eh-site .eh-toolbar__filter {
  order: 1;
  flex: 0 0 auto;
  margin: 0 !important;
}
body.eh-site .eh-toolbar__count,
body.eh-site .products-found {
  order: 2;
  margin: 0 !important;
  padding: 0 !important;
  display: none;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
body.eh-site .eh-toolbar__count strong,
body.eh-site .products-found strong {
  color: var(--eh-gold) !important;
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
body.eh-site .eh-toolbar__count span,
body.eh-site .products-found span {
  color: rgba(23, 23, 23, .62) !important;
  font-size: 13px;
  font-weight: 500;
}
body.eh-site .eh-toolbar__tools {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1 1 auto;
  width: auto;
  margin: 0;
  min-width: 0;
}
@media (min-width: 768px) {
  body.eh-site .eh-toolbar__count,
  body.eh-site .products-found { display: flex; }
  body.eh-site .eh-toolbar__tools {
    flex: 0 1 auto;
    width: auto;
    justify-content: flex-end;
    margin-inline-start: auto;
  }
}
body.eh-site #products-filter-sidebar,
body.eh-site .header__filter button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  min-height: 40px;
  padding: 0 14px !important;
  border: 1px solid var(--eh-charcoal) !important;
  border-radius: 4px !important;
  background: var(--eh-charcoal) !important;
  color: var(--eh-ivory) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  touch-action: manipulation;
  transition: background-color .2s ease, transform .18s ease;
}
body.eh-site #products-filter-sidebar:hover,
body.eh-site .header__filter button:hover {
  background: #2a2a2a !important;
  color: var(--eh-ivory) !important;
}
body.eh-site #products-filter-sidebar:active,
body.eh-site .header__filter button:active {
  transform: scale(.98);
}
body.eh-site #products-filter-sidebar i,
body.eh-site #products-filter-sidebar i::before {
  font-size: 0 !important;
  width: 0 !important;
  display: none !important;
}
body.eh-site .eh-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
body.eh-site .eh-sort__label {
  display: none;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--eh-gold);
  white-space: nowrap;
}
@media (min-width: 640px) {
  body.eh-site .eh-sort__label { display: block; }
}
body.eh-site .eh-sort__control {
  position: relative;
  min-width: 0;
}
body.eh-site select.ps-select,
body.eh-site .ps-select-shop-sort,
body.eh-site .eh-sort__select,
body.eh-site .tnw-shop-toolbar select {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: block !important;
  width: 100%;
  min-height: 44px;
  min-width: 148px;
  max-width: 220px;
  padding: 0 40px 0 16px !important;
  padding-inline: 16px 40px !important;
  border: 1px solid rgba(184, 148, 85, .5) !important;
  border-radius: 999px !important;
  background: var(--eh-ivory) !important;
  background-image: none !important;
  color: var(--eh-charcoal) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color .2s ease, background-color .2s ease;
}
body.eh-site .eh-sort__select:hover {
  border-color: var(--eh-gold) !important;
  background: #fff !important;
}
body.eh-site .eh-sort__select:focus,
body.eh-site .eh-sort__select:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
  border-color: var(--eh-gold) !important;
}
body.eh-site .eh-sort__chevron {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  display: flex;
  color: var(--eh-gold);
  pointer-events: none;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}
body.eh-site .eh-sort:focus-within .eh-sort__chevron {
  transform: translateY(-50%) rotate(180deg);
}
body.eh-site .ps-select::before,
body.eh-site .ps-select::after,
body.eh-site .select2-selection__arrow,
body.eh-site .ps-select-shop-sort + .select2,
body.eh-site .eh-sort .select2 {
  display: none !important;
}
body.eh-site .ps-select-shop-sort.select2-hidden-accessible {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
}
body.eh-site .ps-select-shop-sort option[value="price_asc"],
body.eh-site .ps-select-shop-sort option[value="price_desc"],
body.eh-site select option[value="price_asc"],
body.eh-site select option[value="price_desc"] {
  display: none;
}
body.eh-site .ps-shopping__view {
  margin: 0 !important;
  float: none !important;
}
body.eh-site .products-layout,
body.eh-site .eh-view {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 3px;
  width: 92px;
  height: 44px;
  background: var(--eh-ivory);
  border: 1px solid rgba(184, 148, 85, .5);
  border-radius: 999px;
  overflow: hidden;
}
body.eh-site .eh-view::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  inset-inline-start: 3px;
  width: calc(50% - 3px);
  background: var(--eh-charcoal);
  border-radius: 999px;
  z-index: 0;
  transform: translateX(0);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}
body.eh-site[dir="ltr"] .eh-view:has(li:last-child.active)::before,
html[lang="en"] body.eh-site .eh-view:has(li:last-child.active)::before {
  transform: translateX(calc(100% + 3px));
}
body.eh-site[dir="rtl"] .eh-view:has(li:last-child.active)::before,
html[lang="ar"] body.eh-site .eh-view:has(li:last-child.active)::before {
  transform: translateX(calc(-100% - 3px));
}
body.eh-site .products-layout li,
body.eh-site .eh-view li {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: flex;
}
body.eh-site .products-layout li a,
body.eh-site .eh-view li a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 36px !important;
  min-height: 36px;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(23, 23, 23, .72) !important;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color .2s ease;
}
body.eh-site .products-layout li.active a,
body.eh-site .eh-view li.active a {
  background: transparent !important;
  color: var(--eh-ivory) !important;
}
body.eh-site .eh-view li:not(.active) a:hover {
  color: var(--eh-charcoal) !important;
}
body.eh-site .eh-view li a:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
@keyframes eh-catalog-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
body.eh-site .ps-shopping-product .row > [class*="col-"] .ps-product {
  animation: eh-catalog-in .45s cubic-bezier(.22, 1, .36, 1) both;
}
body.eh-site .ps-shopping-product .row > [class*="col-"]:nth-child(1) .ps-product { animation-delay: 0ms; }
body.eh-site .ps-shopping-product .row > [class*="col-"]:nth-child(2) .ps-product { animation-delay: 40ms; }
body.eh-site .ps-shopping-product .row > [class*="col-"]:nth-child(3) .ps-product { animation-delay: 80ms; }
body.eh-site .ps-shopping-product .row > [class*="col-"]:nth-child(4) .ps-product { animation-delay: 120ms; }
body.eh-site .ps-shopping-product .row > [class*="col-"]:nth-child(5) .ps-product { animation-delay: 160ms; }
body.eh-site .ps-shopping-product .row > [class*="col-"]:nth-child(6) .ps-product { animation-delay: 200ms; }
body.eh-site .ps-shopping-product .row > [class*="col-"]:nth-child(n+7) .ps-product { animation-delay: 240ms; }
@media (max-width: 879px) {
  body.eh-site .ps-shop-brand { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  body.eh-site .eh-view::before,
  body.eh-site .eh-sort__chevron,
  body.eh-site #products-filter-sidebar,
  body.eh-site .header__filter button {
    transition: none;
  }
  body.eh-site .ps-shopping-product .row > [class*="col-"] .ps-product,
  body.eh-site .tnw-empty-state {
    animation: none;
  }
}
body.eh-site .bb-product-filter:has(.price-slider),
body.eh-site .bb-product-filter:has(#discounted_only),
body.eh-site .price-slider,
body.eh-site .bb-product-price-filter {
  display: none !important;
}

/* Filter sheet — packing list, not a file tree */
body.eh-site:has(.ps-layout__left.active) .eh-tabs {
  display: none !important;
}
body.eh-site .ps-layout__left,
body.eh-site .ps-filter__header,
body.eh-site .bb-shop-sidebar {
  background: var(--eh-ivory) !important;
}
body.eh-site .ps-layout__left-container {
  background: var(--eh-ivory) !important;
  overscroll-behavior: contain;
}
body.eh-site .ps-filter__header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0 !important;
  padding: 10px 12px 10px 8px !important;
  border-bottom: 1px solid rgba(184, 148, 85, .38);
}
body.eh-site .ps-filter__header h3 {
  margin: 0 !important;
  flex: 1;
  min-width: 0;
  color: var(--eh-charcoal) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
  text-align: start;
}
body.eh-site .ps-filter__header .ps-btn--close {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--eh-muted) !important;
  box-shadow: none !important;
  text-indent: 0 !important;
  font-size: 0 !important;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
body.eh-site .ps-filter__header .ps-btn--close::before,
body.eh-site .ps-filter__header .ps-btn--close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--eh-charcoal);
  border-radius: 2px;
}
body.eh-site .ps-filter__header .ps-btn--close {
  position: relative;
}
body.eh-site .ps-filter__header .ps-btn--close::before { transform: rotate(45deg); }
body.eh-site .ps-filter__header .ps-btn--close::after { transform: rotate(-45deg); }
body.eh-site .ps-filter__header .ps-btn--close:hover {
  background: #fff !important;
}
body.eh-site .ps-filter__header .ps-btn--close:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
body.eh-site .ps-layout__left-content {
  padding: 12px 12px calc(20px + var(--eh-tab-offset)) !important;
}
body.eh-site .bb-shop-sidebar {
  background: #fff !important;
  border: 1px solid rgba(184, 148, 85, .38);
  border-radius: 18px;
  padding: 4px 0 8px;
  box-shadow: 0 10px 28px rgba(23, 23, 23, .04);
  overflow: hidden;
}
body.eh-site .bb-shop-sidebar::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 18px;
  background: var(--eh-gold);
  border-radius: 0 0 2px 2px;
}
body.eh-site .bb-product-filter {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
body.eh-site .bb-product-filter-title {
  margin: 0 !important;
  padding: 14px 16px 8px !important;
  color: var(--eh-gold) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .16em;
  text-transform: none;
  border: 0 !important;
  border-bottom: 1px solid rgba(184, 148, 85, .28) !important;
}
@media (max-width: 1199px) {
  body.eh-site .ps-layout__left .bb-product-filter-title {
    display: none !important;
  }
}
body.eh-site .bb-product-filter-content,
body.eh-site .bb-product-filter-items {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  border: 0 !important;
}
body.eh-site .bb-product-filter-item {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  position: relative;
  list-style: none;
}
body.eh-site .bb-product-filter-item:has(> [data-bb-toggle="toggle-product-categories-tree"]) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  grid-template-areas: "link toggle" "kids kids";
  align-items: center;
}
body.eh-site .bb-product-filter-item:has(> [data-bb-toggle="toggle-product-categories-tree"]) > .bb-product-filter-link {
  grid-area: link;
}
body.eh-site .bb-product-filter-item:has(> [data-bb-toggle="toggle-product-categories-tree"]) > [data-bb-toggle="toggle-product-categories-tree"] {
  grid-area: toggle;
}
body.eh-site .bb-product-filter-item:has(> [data-bb-toggle="toggle-product-categories-tree"]) > ul {
  grid-area: kids;
}
body.eh-site .bb-product-filter-link,
body.eh-site .bb-product-filter a.bb-product-filter-link {
  display: flex !important;
  align-items: center;
  gap: 0;
  min-height: 48px;
  padding: 8px 16px !important;
  margin: 0 !important;
  color: var(--eh-charcoal) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35;
  text-align: start;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
body.eh-site .bb-product-filter-link .svg-icon-ti-ti-folder,
body.eh-site .bb-product-filter-link svg.icon {
  display: none !important;
}
body.eh-site .bb-product-filter-link.active,
body.eh-site .bb-product-filter-link:hover {
  color: var(--eh-gold) !important;
  background: var(--eh-muted) !important;
}
body.eh-site .bb-product-filter-link:focus-visible,
body.eh-site [data-bb-toggle="toggle-product-categories-tree"]:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: -2px;
}
body.eh-site .bb-product-filter-item > ul {
  margin: 0 !important;
  padding: 0 8px 8px !important;
  background: var(--eh-ivory);
  border-block: 1px solid rgba(184, 148, 85, .18);
}
body.eh-site .bb-product-filter-item > ul .bb-product-filter-link {
  min-height: 44px;
  padding-inline-start: 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(23, 23, 23, .78) !important;
}
body.eh-site [data-bb-toggle="toggle-product-categories-tree"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--eh-gold) !important;
  box-shadow: none !important;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
body.eh-site [data-bb-toggle="toggle-product-categories-tree"] svg {
  display: none !important;
}
body.eh-site [data-bb-toggle="toggle-product-categories-tree"]::after {
  content: "";
  width: 8px;
  height: 8px;
  border-inline-end: 2px solid var(--eh-gold);
  border-bottom: 2px solid var(--eh-gold);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .2s ease;
}
body.eh-site [data-bb-toggle="toggle-product-categories-tree"]:has(.svg-icon-ti-ti-plus[style*="display: none"])::after,
body.eh-site [data-bb-toggle="toggle-product-categories-tree"].is-open::after {
  transform: rotate(225deg) translate(-1px, -1px);
}
@media (prefers-reduced-motion: reduce) {
  body.eh-site [data-bb-toggle="toggle-product-categories-tree"]::after {
    transition: none;
  }
}
body.eh-site .ps-shopping-product .row,
body.eh-site .ps-section--default .row {
  align-items: stretch;
}
body.eh-site .ps-shopping-product .row > [class*="col-"],
body.eh-site .ps-section--default .row > [class*="col-"] {
  display: flex;
}
body.eh-site .ps-shopping-product .ps-product,
body.eh-site .ps-section--default .ps-product {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--eh-line);
  border-radius: 4px;
  overflow: hidden;
  min-width: 0;
}
body.eh-site .ps-shopping-product .ps-product:focus-within,
body.eh-site .ps-section--default .ps-product:focus-within {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
body.eh-site .ps-shopping-product .ps-product__thumbnail,
body.eh-site .ps-section--default .ps-product__thumbnail {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--eh-muted);
  overflow: hidden;
  flex: 0 0 auto;
}
body.eh-site .ps-shopping-product .ps-product__thumbnail > a,
body.eh-site .ps-section--default .ps-product__thumbnail > a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.eh-site .ps-shopping-product .ps-product__thumbnail img,
body.eh-site .ps-section--default .ps-product__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
body.eh-site .ps-shopping-product .ps-product__container,
body.eh-site .ps-shopping-product .ps-product__content,
body.eh-site .ps-section--default .ps-product__container,
body.eh-site .ps-section--default .ps-product__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px 12px 12px !important;
}
body.eh-site .ps-shopping-product .ps-product__title,
body.eh-site .ps-shopping-product a.ps-product__title,
body.eh-site .ps-section--default .ps-product__title,
body.eh-site .ps-section--default a.ps-product__title {
  color: var(--eh-charcoal) !important;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
  text-align: start;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}
body.eh-site .ps-shopping-product .ps-product__title:hover,
body.eh-site .ps-section--default .ps-product__title:hover {
  color: var(--eh-gold) !important;
}
body.eh-site .ps-product__actions {
  display: none !important;
}
body.eh-site .ps-pagination .page-item.active .page-link,
body.eh-site .ps-pagination .page-link:hover {
  background: var(--eh-charcoal) !important;
  border-color: var(--eh-charcoal) !important;
  color: var(--eh-ivory) !important;
}

/* Content pages — Next ContentPage chrome */
body.eh-site:has(.eh-page) .ps-breadcrumb {
  display: none !important;
}
.eh-page {
  background: var(--eh-ivory);
  color: var(--eh-charcoal);
  padding: 2rem 1.25rem 4rem;
}
.eh-page__kicker {
  color: var(--eh-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 0.5rem;
}
.eh-page h1 {
  font-family: "Be Vietnam Pro", "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.eh-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.eh-page__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 68ch;
  color: rgba(23, 23, 23, 0.8);
  margin: 0 0 0.75rem;
}
.eh-page__ship,
.eh-note {
  background: var(--eh-muted);
  border: 1px solid rgba(184, 148, 85, 0.35);
  border-radius: 12px;
  max-width: 68ch;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}
.eh-page__hero {
  margin: 1.5rem 0;
  border-radius: 16px;
  overflow: hidden;
  max-height: 16rem;
  background: var(--eh-muted);
}
.eh-page__hero img {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.eh-page__body {
  max-width: 68ch;
  line-height: 1.7;
}
.eh-page__body p { margin: 0 0 1rem; }
.eh-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.eh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none !important;
}
.eh-btn--charcoal { background: var(--eh-charcoal); color: #fff !important; }
.eh-btn--wa { background: var(--eh-wa) !important; color: #fff !important; }
.eh-btn--wa:hover { background: var(--eh-wa-hover) !important; }
.eh-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.eh-facts li {
  background: #fff;
  border: 1px solid var(--eh-line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}
.eh-list { padding-inline-start: 1.25rem; }
.eh-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.eh-steps li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.eh-steps span {
  flex: 0 0 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--eh-gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.eh-pills-row,
.eh-kit-grid {
  display: grid;
  gap: 0.75rem;
}
.eh-pills-row {
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  margin: 0 0 1.5rem;
}
.eh-pills-row a,
.eh-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--eh-taupe);
  border-radius: 999px;
  background: #fff;
  color: var(--eh-charcoal) !important;
  padding: 0 0.9rem;
  text-decoration: none !important;
}
.eh-pills-row a:hover,
.eh-chip:hover { border-color: var(--eh-gold); }
.eh-kit-grid { grid-template-columns: 1fr; margin-bottom: 2rem; }
@media (min-width: 720px) {
  .eh-kit-grid { grid-template-columns: 1fr 1fr; }
}
.eh-kit {
  display: flex;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--eh-line);
  border-radius: 16px;
  padding: 0.75rem;
  color: var(--eh-charcoal) !important;
  text-decoration: none !important;
}
.eh-kit img {
  width: 7rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 12px;
}
.eh-kit strong { display: block; }
.eh-kit em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(23, 23, 23, 0.7);
}
.eh-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .eh-cards { grid-template-columns: 1fr 1fr; }
}
.eh-cards > div {
  background: var(--eh-muted);
  border: 1px solid var(--eh-line);
  border-radius: 16px;
  padding: 1.25rem;
}
.eh-faq details {
  border: 1px solid var(--eh-line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
}
.eh-faq summary { font-weight: 600; cursor: pointer; }
.eh-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
}
.eh-table th,
.eh-table td {
  border: 1px solid var(--eh-line);
  padding: 0.65rem 0.75rem;
  text-align: start;
}
.eh-tool label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.eh-tool input {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 0.35rem;
  border: 1px solid var(--eh-taupe);
  border-radius: 12px;
  background: #fff;
  padding: 0 0.85rem;
  font-size: 1rem;
}
.eh-calc { display: grid; gap: 0.5rem; }
@media (min-width: 720px) {
  .eh-page { padding: 3rem 2rem 5rem; }
}

/* Contact form — Arabic-first, labels visible, example placeholders */
body.eh-site .ps-contact-form h3 {
  color: var(--eh-charcoal);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}
body.eh-site .eh-contact-lead {
  color: rgba(23, 23, 23, 0.72);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 36rem;
}
body.eh-site .ps-form--contact-us .form-label,
body.eh-site .contact-form .form-label {
  display: block !important;
  color: var(--eh-charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
body.eh-site .ps-form--contact-us .form-control,
body.eh-site .contact-form .form-control {
  min-height: 48px;
  border-color: var(--eh-line);
  border-radius: 12px;
}
body.eh-site .ps-form--contact-us textarea.form-control,
body.eh-site .contact-form textarea.form-control {
  min-height: 7rem;
}
body.eh-site .ps-form--contact-us .ps-btn,
body.eh-site .ps-form--contact-us button[type="submit"],
body.eh-site .contact-form button[type="submit"] {
  background: var(--eh-charcoal) !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-weight: 600;
  min-height: 48px;
  padding: 0 1.5rem;
}
body.eh-site .ps-form--contact-us .ps-btn:hover,
body.eh-site .contact-form button[type="submit"]:hover {
  background: #2a2a2a !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================================
   Remint leftover tnawrna mint on cart / checkout / track.
   Ivory + charcoal + gold. WhatsApp green ONLY on .tnw-btn--wa / .eh-btn--wa.
   ============================================================================ */
body.eh-site {
  --color-1st: var(--eh-gold);
  --color-2nd: var(--eh-charcoal);
  --tnw-green-50: var(--eh-muted);
  --tnw-green-100: var(--eh-line);
  --tnw-green-200: var(--eh-taupe);
  --tnw-green-300: var(--eh-taupe);
  --tnw-green-500: var(--eh-gold);
  --tnw-green-600: var(--eh-gold);
  --tnw-green-700: var(--eh-charcoal);
  --tnw-green-800: var(--eh-charcoal);
}

body.eh-site .tnw-cart-page,
body.eh-site .tnw-checkout-page,
body.eh-site .tnw-track-page {
  --tnw-green-50: var(--eh-muted);
  --tnw-green-100: var(--eh-line);
  --tnw-green-200: var(--eh-taupe);
  --tnw-green-300: var(--eh-taupe);
  --tnw-green-500: var(--eh-gold);
  --tnw-green-600: var(--eh-gold);
  --tnw-green-700: var(--eh-charcoal);
  --tnw-green-800: var(--eh-charcoal);
  --tnw-ink-900: var(--eh-charcoal);
  --tnw-ink-700: #2a2a2a;
  --tnw-ink-500: rgba(23, 23, 23, 0.68);
  --tnw-ink-300: var(--eh-taupe);
  --tnw-ink-100: var(--eh-line);
  --tnw-surface: #fff;
  --tnw-canvas: var(--eh-ivory);
  --tnw-font-sans: "IBM Plex Sans Arabic", "Be Vietnam Pro", sans-serif;
  --tnw-font-ar: "IBM Plex Sans Arabic", "Be Vietnam Pro", sans-serif;
  background: var(--eh-ivory);
  color: var(--eh-charcoal);
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

body.eh-site .tnw-cart-page__hero,
body.eh-site .tnw-checkout-page__hero,
body.eh-site .tnw-track-page__hero {
  background: var(--eh-muted) !important;
  border-bottom-color: var(--eh-line) !important;
}

body.eh-site .tnw-cart-page__title,
body.eh-site .tnw-empty-state__title,
body.eh-site .tnw-summary-card__title {
  text-wrap: pretty;
  color: var(--eh-charcoal);
}

body.eh-site .tnw-cart-page__count,
body.eh-site .tnw-empty-state__perk,
body.eh-site .tnw-cart-row__line-total,
body.eh-site .tnw-cart-row__unit-price,
body.eh-site .tnw-cart-row__price {
  color: var(--eh-gold) !important;
}

body.eh-site .tnw-cart-page__title svg,
body.eh-site .tnw-empty-state__icon {
  color: var(--eh-gold);
  background: var(--eh-gold-soft, var(--eh-muted));
}

body.eh-site .tnw-cart-row__name:hover,
body.eh-site .tnw-cart-row__meta a {
  color: var(--eh-gold) !important;
}

body.eh-site .tnw-cart-row__qty button:hover,
body.eh-site .tnw-cart-row__qty input.form-control:focus {
  background: var(--eh-muted) !important;
  color: var(--eh-charcoal) !important;
}

body.eh-site .tnw-cart-row__qty input.form-control:focus-visible,
body.eh-site .tnw-cart-row__qty button:focus-visible,
body.eh-site .tnw-cart-row__remove:focus-visible,
body.eh-site .tnw-cart-page .tnw-btn:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}

body.eh-site .tnw-summary-card__note {
  background: var(--eh-muted);
  border: 1px solid rgba(184, 148, 85, 0.35);
  border-radius: 12px;
  color: rgba(23, 23, 23, 0.78);
  padding: 0.75rem 1rem;
  text-align: start;
  line-height: 1.55;
}

body.eh-site .tnw-coupon-card,
body.eh-site .tnw-cart-page .cart-coupon,
body.eh-site .tnw-cart-page .btn-open-coupon-form,
body.eh-site .tnw-cart-page [data-bb-toggle="open-coupon-form"],
body.eh-site .tnw-checkout-page .btn-open-coupon-form,
body.eh-site .tnw-checkout-page [data-bb-toggle="open-coupon-form"],
body.eh-site .tnw-checkout-page .ps-block--coupon {
  display: none !important;
}

body.eh-site .tnw-cart-page .tnw-btn {
  border-radius: 999px;
  min-height: 48px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

body.eh-site .tnw-cart-page .tnw-btn--primary {
  background: var(--eh-gold) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px -8px rgba(23, 23, 23, 0.28) !important;
}

body.eh-site .tnw-cart-page .tnw-btn--primary:hover {
  background: var(--eh-gold-2) !important;
  color: #fff !important;
}

body.eh-site .tnw-cart-page .tnw-btn--secondary {
  background: #fff !important;
  color: var(--eh-charcoal) !important;
  border: 1.5px solid var(--eh-line) !important;
}

body.eh-site .tnw-cart-page .tnw-btn--secondary:hover {
  border-color: var(--eh-gold) !important;
  color: var(--eh-gold) !important;
  background: var(--eh-muted) !important;
}

body.eh-site .tnw-cart-page .tnw-btn--ghost {
  background: transparent !important;
  color: var(--eh-charcoal) !important;
  border: 1.5px solid var(--eh-line) !important;
}

body.eh-site .tnw-cart-page .tnw-btn--ghost:hover {
  border-color: var(--eh-gold) !important;
  color: var(--eh-gold) !important;
  background: var(--eh-muted) !important;
}

body.eh-site .tnw-cart-page .tnw-btn--wa,
body.eh-site .tnw-checkout-page .tnw-btn--wa,
body.eh-site a.tnw-btn--wa,
body.eh-site .tnw-btn--wa {
  background: var(--eh-wa) !important;
  border-color: var(--eh-wa) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.45) !important;
}

body.eh-site .tnw-cart-page .tnw-btn--wa:hover,
body.eh-site .tnw-checkout-page .tnw-btn--wa:hover,
body.eh-site a.tnw-btn--wa:hover,
body.eh-site .tnw-btn--wa:hover {
  background: var(--eh-wa-hover) !important;
  border-color: var(--eh-wa-hover) !important;
  color: #fff !important;
}

body.eh-site .tnw-cart-perks__icon {
  background: var(--eh-muted) !important;
  color: var(--eh-gold) !important;
}

body.eh-site .tnw-track-form__submit,
body.eh-site .tnw-checkout-page .tnw-btn--primary {
  background: var(--eh-gold) !important;
  box-shadow: 0 8px 20px -8px rgba(23, 23, 23, 0.28) !important;
}

body.eh-cart .breadcrumb,
body.eh-cart .ps-breadcrumb {
  display: none !important;
}
body.eh-site .tnw-empty-state {
  max-width: 28rem;
  margin: 1.25rem auto 2rem;
  padding: 1.25rem 1.15rem 1.35rem;
  background: #fff;
  border: 1px solid var(--eh-line);
  border-radius: 4px;
  box-shadow: 0 18px 40px -28px rgba(23, 23, 23, .35);
  animation: eh-auth-rise .45s ease-out both;
}
body.eh-site .tnw-empty-state__kicker {
  margin: 0 0 .3rem;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eh-gold);
}
body.eh-site .tnw-empty-state__title {
  margin: 0 0 .4rem;
  font-size: clamp(1.2rem, 4.2vw, 1.55rem) !important;
  line-height: 1.25 !important;
  font-weight: 700;
  overflow-wrap: anywhere;
}
body.eh-site .tnw-empty-state__desc {
  margin: 0 0 1rem;
  max-width: 40ch;
  color: #5C564C;
  font-size: .92rem;
  line-height: 1.55;
}
body.eh-site .tnw-empty-state__actions {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
body.eh-site .tnw-empty-state__actions .tnw-btn {
  width: 100%;
  justify-content: center;
  border-radius: 4px !important;
}
body.eh-site .tnw-empty-state__back {
  margin: .85rem 0 0;
  text-align: start;
}
body.eh-site .tnw-empty-state__back a {
  color: var(--eh-gold) !important;
}
body.eh-site .tnw-empty-state__perks {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: .75rem 0 0;
  border-top: 2px solid var(--eh-gold);
}
body.eh-site .tnw-empty-state__perk,
body.eh-site .tnw-empty-state .tnw-empty-state__perk {
  margin: 0;
  padding: .22rem .5rem;
  border: 1px solid var(--eh-line);
  color: var(--eh-charcoal) !important;
  font-size: .75rem;
  line-height: 1.35;
  background: transparent;
}

/* Auth — form first, carton score, no Botble chrome, no clipped titles */
body.eh-auth .breadcrumb,
body.eh-auth .ps-breadcrumb,
body.eh-auth .page-header,
body.eh-auth .ps-page__header,
body.eh-auth .auth-card__header,
body.eh-auth .auth-card__header-title,
body.eh-auth .auth-card__header-description,
body.eh-site .tnw-auth-page .auth-card__header,
body.eh-site .tnw-auth-page .auth-card__header-title,
body.eh-site .tnw-auth-form .auth-card,
body.eh-site .tnw-auth-form h2:not(.tnw-auth-card__title),
body.eh-site .tnw-auth-form h3 {
  display: none !important;
}
body.eh-auth .auth-card.card,
body.eh-auth .auth-card,
body.eh-site:has(.tnw-auth-page) .auth-card.card,
body.eh-site:has(.tnw-auth-page) .auth-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.eh-auth .col-xl-6,
body.eh-auth .col-lg-8,
body.eh-auth .container,
body.eh-auth .ps-container,
body.eh-site:has(.tnw-auth-page) .col-xl-6,
body.eh-site:has(.tnw-auth-page) .col-lg-8,
body.eh-site:has(.tnw-auth-page) .container,
body.eh-site:has(.tnw-auth-page) .ps-container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.eh-site .tnw-auth-page {
  --eh-auth-pad: clamp(1rem, 4vw, 1.5rem);
  background: var(--eh-ivory);
  color: var(--eh-charcoal);
  overflow-x: clip;
  padding: 0 0 2.75rem;
}
body.eh-site .tnw-auth-page__grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: var(--eh-auth-pad);
}
body.eh-site .tnw-auth-page__form-panel { order: 1; padding: 0; }
body.eh-site .tnw-auth-page__brand { order: 2; }
body.eh-site .tnw-auth-page__brand {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: .9rem 1rem 1rem;
  color: var(--eh-ivory) !important;
  background: var(--eh-charcoal);
  border-radius: 4px;
}
body.eh-site .tnw-auth-page__brand::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: .75rem;
  background: var(--eh-gold);
  transform-origin: right center;
  animation: eh-auth-rule .7s ease-out both;
}
body.eh-site .tnw-auth-page__kicker,
body.eh-site .tnw-auth-card__kicker {
  margin: 0 0 .3rem;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}
body.eh-site .tnw-auth-page__kicker { color: var(--eh-gold) !important; }
body.eh-site .tnw-auth-card__kicker { color: var(--eh-gold); }
body.eh-site .tnw-auth-page__hero-title,
body.eh-site .tnw-auth-page h2.tnw-auth-page__hero-title {
  margin: 0 0 .35rem;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem) !important;
  line-height: 1.3 !important;
  font-weight: 650;
  color: var(--eh-ivory) !important;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
body.eh-site .tnw-auth-page__hero-text {
  margin: 0;
  max-width: 38ch;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(244, 239, 231, .86) !important;
}
body.eh-site .tnw-auth-page__perks {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  list-style: none;
  margin: .7rem 0 0;
  padding: 0;
}
body.eh-site .tnw-auth-page__perks li {
  margin: 0;
  padding: .22rem .5rem;
  border: 1px solid rgba(184, 148, 85, .45);
  color: var(--eh-ivory) !important;
  font-size: .75rem;
  line-height: 1.35;
}
body.eh-site .tnw-auth-page__perk-icon { display: none; }
body.eh-site .tnw-auth-card {
  background: #fff;
  border: 1px solid var(--eh-line);
  border-radius: 4px;
  box-shadow: 0 18px 40px -28px rgba(23, 23, 23, .35);
  padding: 1.2rem 1.15rem 1.35rem;
  animation: eh-auth-rise .45s ease-out both;
}
body.eh-site .tnw-auth-card__title,
body.eh-site .tnw-auth-page h1.tnw-auth-card__title {
  margin: 0 0 .35rem;
  font-size: clamp(1.2rem, 4.2vw, 1.55rem) !important;
  line-height: 1.25 !important;
  font-weight: 700;
  color: var(--eh-charcoal);
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
body.eh-site .tnw-auth-card__subtitle,
body.eh-site .tnw-auth-card__note {
  color: #5C564C;
  max-width: 42ch;
  line-height: 1.55;
  font-size: .9rem;
}
body.eh-site .tnw-auth-card__note { margin-top: .85rem; }
body.eh-site .tnw-auth-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.1rem;
  margin: 1rem 0 0;
}
@keyframes eh-auth-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes eh-auth-rule {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (min-width: 880px) {
  body.eh-site .tnw-auth-page__grid {
    display: grid;
    grid-template-columns: minmax(20rem, 1.05fr) minmax(16rem, .95fr);
    max-width: 72rem;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem var(--eh-auth-pad) 0;
  }
  body.eh-site .tnw-auth-page__brand,
  body.eh-site .tnw-auth-page__form-panel { order: 0; margin: 0; padding: 0; }
  body.eh-site .tnw-auth-page__brand {
    min-height: 28rem;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    background:
      linear-gradient(180deg, rgba(23, 23, 23, .72), rgba(23, 23, 23, .9)),
      url('/photos/paper-cups-gold.jpg') center/cover no-repeat,
      var(--eh-charcoal);
    border-radius: 0 4px 4px 0;
  }
  [dir="ltr"] body.eh-site .tnw-auth-page__brand { border-radius: 0 4px 4px 0; }
  [dir="rtl"] body.eh-site .tnw-auth-page__brand { border-radius: 4px 0 0 4px; }
  body.eh-site .tnw-auth-card {
    min-height: 28rem;
    border-radius: 4px 0 0 4px;
    padding: 1.85rem 1.7rem;
  }
  [dir="ltr"] body.eh-site .tnw-auth-card { border-radius: 4px 0 0 4px; }
  [dir="rtl"] body.eh-site .tnw-auth-card { border-radius: 0 4px 4px 0; }
}
@media (prefers-reduced-motion: reduce) {
  body.eh-site .tnw-auth-card,
  body.eh-site .tnw-auth-page__brand::after {
    animation: none !important;
  }
}
body.eh-site .tnw-auth-form .form-label {
  font-weight: 600;
  color: var(--eh-charcoal);
}
body.eh-site .tnw-auth-form input,
body.eh-site .tnw-auth-form select,
body.eh-site .tnw-auth-form .form-control {
  min-height: 48px;
  border-radius: 4px;
  border-color: var(--eh-line);
}
body.eh-site .tnw-auth-form input:focus,
body.eh-site .tnw-auth-form select:focus,
body.eh-site .tnw-auth-form .form-control:focus {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
  border-color: var(--eh-gold);
}
body.eh-site .tnw-auth-form__submit,
body.eh-site .tnw-auth-form__submit.ps-btn,
body.eh-site .tnw-auth-page .ps-btn {
  background: var(--eh-gold) !important;
  border-color: var(--eh-gold) !important;
  color: #fff !important;
  border-radius: 4px !important;
  min-height: 48px;
  transition: transform .18s ease, background .18s ease;
}
body.eh-site .tnw-auth-form__submit:hover,
body.eh-site .tnw-auth-page .ps-btn:hover {
  background: var(--eh-gold-2) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
body.eh-site .tnw-auth-form__submit:active {
  transform: translateY(0) scale(.99);
}
body.eh-site .tnw-auth-page a:not(.ps-btn):not(.eh-btn) {
  color: var(--eh-gold) !important;
}
body.eh-site .tnw-auth-form .text-center,
body.eh-site .tnw-auth-form .form-group.row:has(a[href*="password"]),
body.eh-site .tnw-auth-form p:has(> a[href*="register"]) {
  display: none !important;
}
body.eh-site #recommended-products:empty,
body.eh-site .ps-section:has(#recommended-products:empty) {
  display: none !important;
}

body.eh-site a.whatsapp-btn,
body.eh-site .ck-content a.whatsapp-btn,
body.eh-site .whatsapp-btn:not(.eh-tabs__wa) {
  background: var(--eh-wa) !important;
  border-color: var(--eh-wa) !important;
  color: #fff !important;
}
body.eh-site a.whatsapp-btn:hover,
body.eh-site .ck-content a.whatsapp-btn:hover {
  background: var(--eh-wa-hover) !important;
  color: #fff !important;
}
body.eh-site .rating_wrap,
body.eh-site .tnw-product-flash,
body.eh-site .ps-product__countdown {
  display: none !important;
}
span.eh-lang__opt {
  cursor: default;
  pointer-events: none;
}
body.eh-site .tnw-perks__title {
  text-transform: none !important;
  color: var(--eh-charcoal) !important;
  font-size: 16px !important;
  letter-spacing: .02em;
}
body.eh-site .tnw-perks__icon {
  background: var(--eh-muted) !important;
  color: var(--eh-gold) !important;
  border: 1px solid rgba(184, 148, 85, .4);
}
body.eh-site .eh-cross-sell {
  margin-top: 28px;
}
body.eh-site .eh-cross-sell h2 {
  font-size: 1.15rem;
  color: var(--eh-charcoal);
  text-align: start;
}
body.eh-site .eh-checkout .tnw-checkout-page__footer a {
  color: var(--eh-gold) !important;
}

body.eh-site .eh-empty-list {
  padding: 28px 8px 12px;
  text-align: center;
}
body.eh-site .eh-empty-list p {
  margin: 0 0 10px;
  color: rgba(23, 23, 23, 0.72);
}
body.eh-site .eh-empty-list a {
  color: var(--eh-gold);
  font-weight: 600;
  text-decoration: none;
}
body.eh-site .eh-empty-list a:hover {
  text-decoration: underline;
}

body.eh-site .eh-thanks__card {
  max-width: 36rem;
  margin: 24px auto 8px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--eh-line);
  text-align: center;
}
body.eh-site .eh-thanks__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--eh-gold);
}
body.eh-site .eh-thanks__title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  color: var(--eh-charcoal);
  text-wrap: balance;
}
body.eh-site .eh-thanks__lead {
  margin: 0 0 18px;
  color: rgba(23, 23, 23, 0.72);
}
body.eh-site .eh-thanks__home {
  display: block;
  margin-top: 14px;
  color: var(--eh-charcoal);
  text-decoration: none;
}
body.eh-site .eh-thanks__home:hover {
  color: var(--eh-gold);
}
body.eh-site .eh-thanks .customer-order-info-section h2 {
  font-size: 1.05rem;
  color: var(--eh-charcoal);
}
body.eh-site .eh-thanks .customer-order-info-section td {
  padding: 6px 0;
}

body.eh-site .eh-error {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 72px;
  background: var(--eh-ivory);
}
body.eh-site .eh-error__inner {
  max-width: 36rem;
  text-align: center;
}
body.eh-site .eh-error__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--eh-gold);
}
body.eh-site .eh-error__code {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  line-height: 1;
  color: var(--eh-charcoal);
}
body.eh-site .eh-error__title {
  margin: 12px 0 8px;
  font-size: 1.35rem;
  color: var(--eh-charcoal);
  text-wrap: balance;
}
body.eh-site .eh-error__text {
  margin: 0 0 22px;
  color: rgba(23, 23, 23, 0.72);
}
body.eh-site .eh-error__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
body.eh-site .eh-error__ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid var(--eh-line);
  color: var(--eh-charcoal);
  text-decoration: none;
  font-weight: 600;
}
body.eh-site .eh-error__ghost:hover {
  border-color: var(--eh-gold);
  color: var(--eh-gold);
}
body.eh-site .eh-error__search {
  margin-top: 28px;
  text-align: start;
}
body.eh-site .eh-error__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(23, 23, 23, 0.72);
}
body.eh-site .eh-error__search-row {
  display: flex;
  gap: 8px;
}
body.eh-site .eh-error__search-row input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--eh-line);
  background: #fff;
  color: var(--eh-charcoal);
}
body.eh-site .eh-error__search-row input:focus-visible {
  outline: 2px solid var(--eh-gold);
  outline-offset: 2px;
}
body.eh-site .eh-error__search-row button {
  height: 44px;
  padding: 0 16px;
  border: 0;
  background: var(--eh-charcoal);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
body.eh-site .eh-order-follow {
  margin: 0 0 18px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--eh-line);
}
body.eh-site .eh-order-follow p {
  margin: 0 0 10px;
  color: rgba(23, 23, 23, 0.72);
}

@keyframes eh-slip {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes eh-rule {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes eh-still {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.eh-reveal {
  opacity: 0;
  transform: translateY(18px);
}
.eh-reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .65s var(--eh-ease), transform .65s var(--eh-ease);
}

body.eh-site .owl-carousel,
body.eh-site .owl-stage-outer,
body.eh-site .owl-stage,
body.eh-site .slick-list,
body.eh-site .slick-slider {
  touch-action: pan-y;
}

@media (prefers-reduced-motion: reduce) {
  .eh-hero__img,
  .eh-hero__rule,
  .eh-hero__copy > *,
  .eh-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .eh-btn:hover,
  .eh-fab:hover,
  .eh-sectors a:hover,
  .eh-card:hover img,
  .eh-photos a:hover img,
  body.eh-site .ps-product:hover {
    transform: none !important;
  }
}

/* Customer wholesale dashboard */
.eh-dash { max-width: 44rem; margin: 0 auto 2rem; }
.eh-dash__kicker {
  margin: 0 0 .35rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eh-gold);
}
.eh-dash__title { margin: 0 0 .75rem; font-size: 1.6rem; color: var(--eh-charcoal); }
.eh-dash__status { margin: 0 0 1rem; padding: .75rem 1rem; border: 1px solid var(--eh-line); background: #fff; }
.eh-dash__status--pending { border-color: var(--eh-gold); }
.eh-dash__status--approved { border-color: var(--eh-wa); }
.eh-dash__status--rejected { border-color: #BA1A1A; }
.eh-dash__hint { margin: 0 0 1.25rem; color: #5C564C; line-height: 1.7; }
.eh-dash__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.eh-dash__list h2 { font-size: 1.1rem; margin: 0 0 .75rem; }
.eh-dash__empty { padding: 1.25rem; border: 1px dashed var(--eh-line); background: #fff; }
.eh-dash__items { list-style: none; margin: 0; padding: 0; border: 1px solid var(--eh-line); background: #fff; }
.eh-dash__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--eh-line);
}
.eh-dash__item:last-child { border-bottom: 0; }
.eh-dash__item-name { font-weight: 600; }
.eh-dash__qty { display: flex; align-items: center; gap: .5rem; }
.eh-dash__qty input { width: 4.5rem; min-height: 44px; text-align: center; }
.eh-dash__save { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.eh-note--qty { background: #fff; border: 1px solid var(--eh-gold); padding: .75rem 1rem; }
.eh-flash { padding: .75rem 1rem; margin: 0 0 1rem; border: 1px solid var(--eh-line); background: #fff; }
.eh-flash--ok { border-color: var(--eh-wa); }
.eh-flash--err { border-color: #BA1A1A; }
.eh-flash--warn { border-color: var(--eh-gold); }
.eh-carton-meta, .eh-humid { margin: .35rem 0 0; color: #5C564C; font-size: .9rem; }
.eh-oos { color: #BA1A1A; font-weight: 600; }
.eh-pkg { max-width: 52rem; margin: 0 auto 2.5rem; padding: 0 1rem; }
.eh-pkg__hero h1, .eh-pkg h1 { color: var(--eh-charcoal); margin: 0 0 .6rem; }
.eh-pkg__kicker, .eh-pkg__progress { color: var(--eh-gold); font-size: .8rem; letter-spacing: .06em; }
.eh-pkg__actions, .eh-pkg__cta { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0; }
.eh-pkg__chips, .eh-pkg__cadence, .eh-pkg__choices { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.eh-pkg__chips a, .eh-pkg__cadence a, .eh-pkg-choice {
  min-height: 44px; padding: .55rem 1rem; border: 1px solid var(--eh-line); background: #fff; color: var(--eh-charcoal); text-decoration: none;
}
.eh-pkg__chips a.is-on, .eh-pkg__cadence a.is-on { background: var(--eh-charcoal); color: #fff; border-color: var(--eh-charcoal); }
.eh-pkg__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .eh-pkg__grid { grid-template-columns: 1fr 1fr; } }
.eh-pkg-card, .eh-cardx { background: #fff; border: 1px solid var(--eh-line); padding: 1rem 1.1rem; }
.eh-pkg-card h2 { margin: 0 0 .4rem; font-size: 1.1rem; }
.eh-pkg-lines { list-style: none; margin: 0 0 1rem; padding: 0; border: 1px solid var(--eh-line); background: #fff; }
.eh-pkg-line { padding: .85rem 1rem; border-bottom: 1px solid var(--eh-line); }
.eh-pkg-line:last-child { border-bottom: 0; }
.eh-pkg-line.is-oos { background: #FBF6EE; }
.eh-acc-nav { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1.25rem; }
.eh-acc-nav a { min-height: 40px; padding: .4rem .75rem; border: 1px solid var(--eh-line); background: #fff; color: var(--eh-charcoal); text-decoration: none; }
.eh-acc-nav a.is-on { background: var(--eh-charcoal); color: #fff; }
.eh-dash__cards { display: grid; gap: 1rem; margin: 0 0 1.5rem; }
@media (min-width: 800px) { .eh-dash__cards { grid-template-columns: 1fr 1fr 1fr; } .eh-dash { max-width: 56rem; } }
.eh-dash__search { margin: 0 0 1.5rem; }
.eh-dash__search-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.eh-dash__search input { flex: 1; min-height: 44px; min-width: 12rem; padding: .5rem .75rem; }
.eh-onb { background: #fff; border: 1px solid var(--eh-gold); padding: 1rem; margin: 0 0 1.25rem; }
.eh-onb ol { margin: .5rem 0; padding-inline-start: 1.2rem; }
.eh-onb li.is-done { text-decoration: line-through; color: #5C564C; }
.eh-form { display: grid; gap: .75rem; max-width: 28rem; }
.eh-form label { display: grid; gap: .3rem; }
.eh-form input, .eh-form select, .eh-form textarea { min-height: 44px; padding: .5rem .7rem; border: 1px solid var(--eh-line); }
.eh-table { width: 100%; border-collapse: collapse; background: #fff; margin: 1rem 0; }
.eh-table th, .eh-table td { border: 1px solid var(--eh-line); padding: .55rem .7rem; text-align: start; }
.eh-pay label { display: block; margin: .4rem 0; }
.eh-linkish { background: none; border: 0; color: var(--eh-gold); text-decoration: underline; cursor: pointer; }
