/* נוי השדה homepage clone — tokens from live site */

@font-face {
  font-display: swap;
  font-family: Marom;
  font-style: normal;
  font-weight: 400;
  src: url("../assets/brand/RAG-Marom1.0-Low.DRACbO03.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: ArbelG;
  font-style: normal;
  font-weight: 400;
  src: url("../assets/brand/ArbelG-Regular.GcJer4mz.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: ArbelG;
  font-style: normal;
  font-weight: 700;
  src: url("../assets/brand/ArbelG-Bold.Bfq963T7.woff2") format("woff2");
}

/* Flag emoji (e.g. 🇮🇱) — Twemoji Country Flags for Windows / stacks without color regional glyphs */
@font-face {
  font-display: swap;
  font-family: "Twemoji Country Flags";
  font-style: normal;
  font-weight: 400;
  src: url("https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2")
    format("woff2");
}

:root {
  --green-band: #a4d668;
  --green-top: #b2d684;
  --green-dark: #1e3e20;
  --yellow-btn: #ebd614;
  --yellow-btn-text: #264022;
  --bg-page: #f5f5f4;
  --text: #1a1a1a;
  --muted: #5c5c5c;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height, 155px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: ArbelG, "Heebo", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fontMarom {
  font-family: Marom, "Heebo", sans-serif !important;
}

.container {
  width: min(1240px, 100% - 32px);
  margin-inline: auto;
}

.container-header {
  /* Live: ~1700px content band + 17px gutters */
  width: min(1700px, 100% - 34px);
  max-width: 1700px;
  margin-inline: auto;
  padding-inline: 17px;
  box-sizing: border-box;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  /* Top padding balances fixed #site-header (sticky was blocked by overflow-x on ancestors) */
  padding-top: var(--site-header-height, 155px);
}

.site-content {
  flex: 1;
}

/* Fixed header: sticky was disabled by overflow-x on html/body/.site-wrapper (scroll ancestor) */
#site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  max-width: 100vw;
  overflow: visible;
  box-shadow: 0 4px 14px rgba(30, 62, 32, 0.1);
}

/* Mobile / desktop visibility (matches live breakpoints ~1024) */
.no_mobile,
.no_mobile_1024 {
  display: block;
}

.mobile_only {
  display: none;
}

@media (max-width: 1023px) {
  .no_mobile,
  .no_mobile_1024 {
    display: none !important;
  }

  .mobile_only {
    display: block !important;
  }

  .show-mobile-center {
    text-align: center;
    padding: 20px 0 30px;
  }
}

/* ----- Header top ----- */
.header-top {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.94);
  min-height: 36px;
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
}

.header-top__links,
.header-top__contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 0;
}

.header-top a {
  color: rgba(255, 255, 255, 0.95);
  padding: 2px 4px;
}

.header-top a:hover {
  text-decoration: underline;
  color: #fff;
}

.header-top__a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top .sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 6px;
  user-select: none;
}

.header-top img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

@media (max-width: 900px) {
  .header-top__inner {
    flex-direction: column;
    align-items: stretch;
    max-height: none;
  }
}

/* ----- Main header ----- */
.header-main {
  background: var(--green-band);
  position: relative;
  z-index: 101;
  font-size: 16px;
  overflow: visible;
}

.header-main__dots {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  background: url("../assets/brand/dots-desk_menu.cpZ070xU.png") center top / cover no-repeat;
  margin: 0 auto;
  min-height: 0;
  min-width: 100%;
}

.header-main__grid {
  position: relative;
  display: grid;
  /* Center column keeps width so logo never sits inside the search field */
  grid-template-columns: minmax(0, 1fr) minmax(138px, 184px) minmax(0, 1fr);
  align-items: center;
  min-height: calc(62px * 1.25 + 10px);
  gap: 8px;
  padding: calc(2px * 1.25) 0 calc(4px * 1.25);
}

.header-main__actions {
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 2;
  padding-block: 2px;
}

.header-main__center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
  /* Logo is absolutely positioned so a large mark doesn’t stretch the green band */
  min-height: 1px;
}

.header-main__center .header-main__logo {
  pointer-events: auto;
}

.header-main__actions--right {
  justify-self: start;
}

.header-main__shell {
  position: relative;
  z-index: 2;
}

.header-main__end-cluster {
  grid-column: 3;
  justify-self: end;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-inline-start: 12px;
  margin-top: 0;
}

.header-main__mobile-util {
  display: none;
  align-items: center;
  gap: 0;
}

.header-main__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
}

.header-main__icon-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.log_dahlil {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  margin-inline-start: 10px;
  padding-inline: 12px 14px;
  padding-inline-start: 50px;
  background: #f5f5f4;
  border-radius: 60px;
  color: var(--green-dark);
  cursor: pointer;
  overflow: hidden;
}

.log_dahlil:hover {
  background: #eaeae7;
}

.log_dahlil .dahlila-ic {
  position: absolute;
  inset-inline-start: 12px;
  bottom: -4px;
  width: 32px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.log_dahlil.reorder {
  padding-inline-start: 56px;
}

.log_dahlil.reorder .reorder-ic {
  position: absolute;
  inset-inline-start: 8px;
  bottom: 8px;
  width: 42px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='32' fill='none'%3E%3Cpath fill='%23EBD614' d='m.875 15.969 5.25.031.656-1.313L7.875 10.5l3.938-5.906L17.719 1.313 21.656.875 24.5 1.532l-.656.437-4.156 2.625-5.031 5.031-1.094 6.125 5.25.219.437.875-9.188 8.969L.875 16.844v-.875Z'/%3E%3Cpath fill='%231E3E20' d='M24.876 3.047c-5.044 1.762-10.228 6.122-10.686 11.964h4.098c.336-.001.665.098.944.285s.498.452.627.763a1.23 1.23 0 0 1-.405 11.117l-8.296 8.28a1.33 1.33 0 0 1-1.882 0l-8.296-8.278a1.234 1.234 0 0 1 .193-1.853 1.23 1.23 0 0 1 .568-.17h4.153c.191-4.06 1.942-7.89 4.888-10.69 2.945-2.797 6.856-4.347 10.916-4.324 1.007.01 2.01.112 2.999.306h.011a.86.86 0 0 1 .145 1.404ZM21.653 1.668c-3.696-.021-7.251 1.413-9.9 3.994-2.648 2.581-4.176 6.102-4.255 9.801a1.68 1.68 0 0 1-.243.862 1.64 1.64 0 0 1-.869.354H1.675l8.336 8.281 8.277-8.333h-4.533a.66.66 0 0 1-.657-.26.63.63 0 0 1-.088-.47c.25-6.498 5.547-11.399 10.957-13.58-.598-.085-1.2-.129-1.804-.132Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.login_btn {
  color: var(--green-dark);
  font-size: 15px;
  white-space: nowrap;
  line-height: 1;
}

.dahlila-ic {
  flex-shrink: 0;
}

.reorder-ic {
  display: block;
}

.header-main__logo {
  position: absolute;
  left: 50%;
  top: -74px;
  transform: translateX(-50%);
  width: 164px;
  max-width: 164px;
  margin: 0;
  text-align: center;
  display: block;
  z-index: 6;
  pointer-events: auto;
}

.header-main__logo img {
  width: auto;
  max-width: 142px;
  max-height: 136px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .header-top {
    display: none;
  }

  .log_dahlil {
    height: 44px;
    margin-inline-start: 8px;
    padding-inline-start: 50px;
  }

  .log_dahlil .login_btn {
    font-size: 15px;
  }

  .log_dahlil .dahlila-ic {
    width: 32px;
    inset-inline-start: 12px;
    bottom: -2px;
  }

  .log_dahlil.reorder .reorder-ic {
    inset-inline-start: 8px;
    bottom: 6px;
    width: 38px;
    height: 28px;
  }

  .header-main__dots {
    min-height: calc(56px * 1.25 + 10px);
    inset: 0;
  }

  .header-main__grid {
    display: flex;
    flex-direction: row;
    direction: ltr;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: calc(54px * 1.25 + 10px);
    padding: calc(4px * 1.25) 0 calc(10px * 1.25);
    margin: 0;
  }

  .header-main__actions--right {
    display: none !important;
  }

  .header-main__end-cluster {
    display: contents;
    grid-column: unset;
    justify-self: unset;
    padding: 0;
    margin: 0;
    gap: 0;
  }

  .header-main__center {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .header-main__logo {
    position: relative;
    left: auto;
    transform: none;
    top: 0;
    margin: 0 auto;
    max-width: 120px;
    width: auto;
  }

  .header-main__logo img {
    max-width: 100px;
    margin: 0 auto;
  }

  .header-main__mobile-util {
    display: flex;
    order: 3;
    flex-shrink: 0;
    margin-inline-start: auto;
    align-items: center;
    gap: 6px;
  }

  .header-main__icon-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid var(--green-dark);
    box-sizing: border-box;
    color: var(--green-dark);
  }

  .header-main__icon-btn:hover {
    background: #fafaf9;
  }

  .search-form {
    display: none !important;
  }

  .header-main--search-open .search-form {
    display: block !important;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    z-index: 130;
    margin: 0;
    padding: 6px 14px 6px 42px;
    box-shadow: 0 12px 28px rgba(30, 62, 32, 0.14);
  }

  .cart-button__link {
    order: 1;
    flex-shrink: 0;
    background: #fff !important;
    border: 2px solid var(--green-dark) !important;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-height: 48px;
    min-width: 48px;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: visible;
    position: relative;
    z-index: 1;
  }

  .cart-button__link .cart-ic-wrap img {
    display: block;
    width: 28px;
    height: auto;
    flex-shrink: 0;
  }

  .cart_count {
    inset-inline-end: -6px;
    inset-block-end: -4px;
    font-size: 11px;
    min-width: 17px;
    height: 17px;
    line-height: 15px;
    border-width: 1.5px;
  }
}

@media (min-width: 1024px) {
  .mobile-flyout {
    display: none !important;
  }
}

/* Mobile menu flyout (matches live header hamburger) */
.mobile-flyout {
  position: fixed;
  inset: 0;
  z-index: 10040;
  pointer-events: none;
  visibility: hidden;
}

.mobile-flyout.is-open {
  pointer-events: auto;
  visibility: visible;
}

body.mobile-flyout-open {
  overflow: hidden;
}

.mobile-flyout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 62, 32, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-flyout.is-open .mobile-flyout__backdrop {
  opacity: 1;
}

.mobile-flyout__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(320px, 90vw);
  max-width: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  direction: rtl;
}

.mobile-flyout.is-open .mobile-flyout__panel {
  transform: translateX(0);
}

.mobile-flyout__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e8ebe8;
  flex-shrink: 0;
}

.mobile-flyout__title {
  margin: 0;
  font-family: Marom, "Heebo", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--green-dark);
}

.mobile-flyout__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f3f8ef;
  color: var(--green-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.mobile-flyout__nav {
  padding: 12px 0 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-flyout__nav a {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}

.mobile-flyout__nav a:hover {
  background: #f7faf6;
  color: var(--green-dark);
}

.mobile-flyout__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  box-sizing: border-box;
}

.mobile-flyout__row:hover {
  background: #f7faf6;
  color: var(--green-dark);
}

.mobile-flyout__thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}

.mobile-flyout__row span {
  flex: 1;
  min-width: 0;
}

.mobile-flyout__sep {
  border: 0;
  border-top: 8px solid var(--bg-page);
  margin: 8px 0;
}

/* Search */
.search-form {
  direction: ltr;
  background: #f5f5f4;
  border-radius: 24px;
  padding: 2px 14px 2px 38px;
  position: relative;
  width: 363px;
  max-width: 46vw;
}

.search-form__input {
  background: transparent;
  border: 0;
  color: #898989;
  line-height: 22px;
  padding: 3px 4px;
  width: 100%;
  font-size: 15px;
}

.search-form__input::placeholder {
  color: #afafaf;
}

.search-form__button {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart */
.cart-button__link {
  position: relative;
  border: 0;
  background: #f5f5f4;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 3px 12px 3px 10px;
  min-height: 42px;
  box-sizing: border-box;
  cursor: pointer;
  margin-inline-start: 10px;
  margin-inline-end: 16px;
}

@media (max-width: 1280px) {
  .cart-button__link {
    margin-inline-end: 14px;
  }
}

.cart_total_price {
  font-weight: 700;
  font-size: 15px;
  color: var(--green-dark);
}

.cart-ic-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.cart_count {
  position: absolute;
  inset-inline-end: -5px;
  inset-block-end: -4px;
  inset-inline-start: auto;
  inset-block-start: auto;
  margin: 0;
  background: var(--green-dark);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  height: 18px;
  min-width: 18px;
  line-height: 18px;
  text-align: center;
  z-index: 2;
  border: 2px solid #fff;
  box-sizing: border-box;
}

body.cart-drawer-open {
  overflow: hidden;
}

/* Cart drawer (mini-cart) */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 10100;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 62, 32, 0.35);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  max-width: min(760px, 94vw);
  width: 100%;
  background: #fff;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.cart-drawer__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px 20px;
  padding: 14px 16px 16px;
  border-bottom: 1px solid #e8ebe8;
  direction: ltr;
}

.cart-drawer__toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: start;
}

.cart-drawer__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
}

.cart-drawer__icon-btn:hover {
  background: #f0f4ef;
}

.cart-drawer__titles {
  direction: rtl;
  text-align: right;
  justify-self: end;
  min-width: 0;
}

.cart-drawer__title {
  margin: 0;
  font-family: Marom, "Heebo", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.2;
}

.cart-drawer__subtitle {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.cart-line {
  position: relative;
  list-style: none;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cart-line:hover,
.cart-line:focus-within {
  background: #fafbf9;
}

.cart-line__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.cart-line:hover .cart-line__remove,
.cart-line:focus-within .cart-line__remove {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: none) {
  .cart-line__remove {
    opacity: 0.65;
    pointer-events: auto;
  }
}

.cart-line__remove:hover,
.cart-line__remove:focus-visible {
  color: #b42318;
  background: #fef3f2;
}

.cart-line__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding-inline-end: 28px;
}

.cart-line__leading {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 4.75rem;
}

.cart-line__price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  text-align: start;
}

.cart-line__qty {
  min-height: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.cart-line__qty-collapsed {
  display: block;
  color: var(--muted);
}

.cart-line.is-qty-expanded .cart-line__qty-collapsed {
  display: none;
}

.cart-line__qty-stepper {
  display: none;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  direction: ltr;
}

.cart-line.is-qty-expanded .cart-line__qty-stepper {
  display: flex;
}

.cart-line__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #c5d4c0;
  border-radius: 6px;
  background: #fff;
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.cart-line__qty-btn:hover {
  background: #f3f8ef;
}

.cart-line__qty-btn:active {
  transform: scale(0.96);
}

.cart-line__qty-value {
  min-width: 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
}

.cart-line__qty-unit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-line__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.cart-line__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
  flex: 1;
  min-width: 0;
}

.cart-line__name {
  font-weight: 600;
  color: var(--text);
}

.cart-line__meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.cart-line__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-drawer__foot {
  padding: 16px;
  background: linear-gradient(180deg, #f3f8ef 0%, #e8f0e4 100%);
  border-top: 1px solid #dce8d6;
}

.cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  padding: 14px 20px;
  border: 0;
  border-radius: 6px;
  background: var(--green-dark);
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.cart-drawer__checkout:hover {
  filter: brightness(1.06);
}

.cart-drawer__checkout-sep {
  opacity: 0.7;
  font-weight: 400;
}

.cart-drawer__legal {
  margin: 12px 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.cart-drawer__recs {
  width: min(200px, 32vw);
  flex-shrink: 0;
  padding: 16px 12px;
  background: #fafaf9;
  border-inline-start: 1px solid #e5e5e2;
  overflow-y: auto;
}

.cart-drawer__recs-title {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: right;
  line-height: 1.3;
}

.cart-drawer__recs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-rec-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 10px 8px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ebebea;
}

.cart-rec-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.cart-rec-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.cart-rec-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.cart-rec-card__price {
  font-size: 0.8rem;
  color: var(--muted);
}

.cart-rec-card__add {
  padding: 8px 10px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-rec-card__add:hover {
  background: #f3f8ef;
}

@media (max-width: 640px) {
  .cart-drawer__panel {
    max-width: 100%;
  }

  .cart-drawer__recs {
    display: none;
  }
}

/* ----- Category bar ----- */
.header-cats {
  position: relative;
  background: #fff;
  z-index: 100;
  overflow: visible;
  /* Stays under .header-main (101) so a larger logo can overlap this bar */
}

/* Original site: dot texture only on the green band, not on the white category row */
.header-cats__dots {
  display: none;
}

.header-cats__menu {
  position: relative;
  z-index: 2;
}

.header-cats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.menu_item {
  position: relative;
  flex: 1;
  text-align: center;
  height: 70px;
  padding: 0;
}

@media (max-width: 1367px) {
  .menu_item {
    height: 64px;
  }
}

@media (max-width: 1110px) {
  .menu_item {
    height: 60px;
  }
}

.menu_item + .menu_item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  margin: auto;
  border-right: 2px solid hsla(0, 1%, 75%, 0.5);
}

/* Live desktop nav is text-forward; side thumbs broke layout locally — keep off */
.menu_item__img {
  display: none;
}

.cat-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  margin: unset;
  padding: 8px 10px 2px;
  box-sizing: border-box;
  font-family: Marom, "Hadassah Friedlaender", "Heebo", sans-serif;
  font-size: clamp(15px, 1.85vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  color: #1e3e20;
  position: relative;
  z-index: 99;
  text-align: center;
}

@media (max-width: 1367px) {
  .cat-link {
    height: 64px;
    font-size: clamp(14px, 1.65vw, 26px);
  }
}

@media (max-width: 1110px) {
  .cat-link {
    height: 60px;
    font-size: clamp(13px, 1.5vw, 22px);
  }
}

.cat-link:hover {
  opacity: 0.92;
}

.cat-link .text_wrapper {
  display: block;
}

.menu_item--deal .cat-link {
  font-weight: 700;
}

/* Mega */
.open_menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: min(100%, max-content);
  width: max-content;
  max-width: calc(100vw - 20px);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out, visibility 0.25s;
  z-index: 200;
}

.has--child:hover .open_menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.open_menu__inner {
  display: flex;
  gap: 0;
  background: #fff url("../assets/brand/texture_menu.1DNHdddw.png") 100% 100% no-repeat;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  min-width: min(520px, calc(100vw - 40px));
  max-width: calc(100vw - 24px);
  padding: 25px clamp(40px, 6vw, 100px) 25px 25px;
  box-sizing: border-box;
}

.open_menu__inner.simple-mega {
  min-width: 360px;
  padding: 25px;
}

.open_menu__inner--promo-only {
  min-width: 300px;
  max-width: 340px;
  padding: 18px;
  justify-content: center;
  box-sizing: border-box;
}

.open_menu__inner--promo-only .mega-promo {
  flex: unset;
  width: 100%;
}

.mega-sub {
  list-style: none;
  margin: 0;
  padding: 0 20px 0 0;
  flex: 0 0 240px;
  background: transparent;
}

.mega-sub li a {
  display: block;
  padding: 10px 6px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
  font-size: 16px;
}

.mega-sub li a:hover {
  color: var(--green-dark);
}

.mega-promo {
  flex: 1;
  display: block;
  line-height: 0;
  background: #f8f8f8;
}

.mega-promo img {
  width: 100%;
  max-width: 290px;
  height: auto;
  object-fit: cover;
}

.mega-sub--cols {
  columns: 2;
  column-gap: 24px;
  min-width: 400px;
}

@media (max-width: 1150px) {
  .header-cats__list {
    display: none;
  }

  /* Drop empty desktop mega strip on mobile/tablet — pills use .header-cats-mobile */
  .header-cats {
    display: none;
  }
}

.header-cats-mobile {
  display: none;
  position: relative;
  z-index: 1;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

@media (max-width: 1150px) {
  .header-cats-mobile {
    display: block;
  }

  /* Category PLP: same links appear as subchips under the hero — hide duplicate strip */
  body:has(main.cat-page) .header-cats-mobile {
    display: none !important;
  }
}

.header-cats-mobile__scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.header-cats-mobile__scroll a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: #f0f4e8;
  color: var(--green-dark);
  font-family: Marom, sans-serif;
  font-size: 15px;
  white-space: nowrap;
  text-decoration: none;
}

.header-cats-mobile__scroll a img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(30, 62, 32, 0.12);
}

/* ----- Hero ----- */
.hp_top {
  position: relative;
  background: #eef6e0;
}

.hp-hero-slider__viewport {
  overflow: hidden;
  direction: ltr;
}

.hp-hero-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}

.hp-hero-slide {
  flex: 0 0 100%;
}

.hp-hero-slide picture {
  display: block;
  width: 100%;
}

.hp-hero-slide img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

.hp-hero-slider__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 20px;
}

.hp-hero-slider__pagination button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c8c8c8;
  padding: 0;
}

.hp-hero-slider__pagination button.is-active {
  background: var(--green-dark);
}

.leaf-1 {
  position: absolute;
  left: 3%;
  bottom: -30px;
  max-width: 100px;
  z-index: 3;
  pointer-events: none;
}

/* ----- Home products strip ----- */
.home-products {
  background-color: #f5f5f4;
  background-image: url("../assets/brand/texture_hp1.Cn8uVYcK.png");
  background-position: right bottom -25%;
  background-repeat: no-repeat;
  padding: 60px 0 40px;
}

.home-products__titles {
  margin-bottom: 12px;
}

.home-products__titles--row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-rec-all {
  font-family: ArbelG, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

.hp-rec-all:hover {
  text-decoration: underline;
}

.home-products__titles .h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0;
  color: var(--green-dark);
  line-height: 1.05;
}

.hp-products-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-products-viewport {
  overflow: hidden;
  flex: 1;
  direction: ltr;
}

.hp-products-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.hp-product {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.hp-product__img {
  aspect-ratio: 1;
  background: #fafafa;
}

.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-product__title {
  padding: 10px 12px 4px;
  font-weight: 700;
  font-size: 16px;
}

.hp-product__price {
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: 14px;
}

.hp-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff center/18px 18px no-repeat;
  flex-shrink: 0;
}

.hp-nav--prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e3e20'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.hp-nav--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e3e20'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
}

.btn_yellow {
  background-color: var(--yellow-btn);
  color: var(--yellow-btn-text);
  border-radius: 60px;
  display: inline-block;
  font-family: ArbelG, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 24px;
  cursor: pointer;
  border: none;
}

a.btn_yellow,
a.hp-all-rec__link {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .home-products {
    background-image: none;
    padding-top: 36px;
  }

  .hp-nav {
    display: none;
  }

  .hp-products-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hp-products-track {
    padding-bottom: 8px;
  }

  .hp-product {
    scroll-snap-align: start;
  }
}

/* ----- Banners ----- */
.home-banners {
  position: relative;
  padding: 20px 0 80px;
  background: #fff;
}

.banners_section_title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.banners_sub {
  color: var(--muted);
  font-size: 18px;
}

.banners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.banner-card {
  flex: 1 1 18%;
  min-width: 140px;
  text-align: center;
}

.banner-card__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 558 / 386;
  background: #f3f3f3;
}

.banner-card__text {
  display: block;
  margin-top: 10px;
  font-family: Marom, sans-serif;
  font-size: 20px;
  color: var(--green-dark);
}

.leaf-2 {
  position: absolute;
  right: 2%;
  bottom: 10px;
  max-width: 80px;
  opacity: 0.85;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .banners-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
  }

  .banner-card {
    flex: 0 0 72%;
    scroll-snap-align: center;
  }
}

/* ----- Video block ----- */
.video_hp_top {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #fff 0%, #f7faf4 100%);
}

.video-block {
  width: min(1180px, 100% - 32px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.video-block--stack {
  grid-template-columns: 1fr;
}

.video-block__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.play-faux {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(160px, 40vw);
  height: min(160px, 40vw);
  border: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' fill='none'%3E%3Ccircle cx='80' cy='76' r='70' fill='black' fill-opacity='0.35'/%3E%3Ccircle cx='80' cy='76' r='38' stroke='white' stroke-width='6'/%3E%3Cpath fill='white' d='m92 73 18 10a3 3 0 0 1 0 5l-18 10c-2 1-4 0-4-3V76c0-2 2-4 4-3Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  cursor: pointer;
}

.video_h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  margin: 0 0 12px;
  color: var(--green-dark);
  line-height: 1.1;
}

.home_text {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 20px;
}

.button_url .btn_yellow.video {
  margin-top: 4px;
}

.leaf-video-d {
  max-width: 90px;
  margin: 16px auto 0;
}

.video-block__copy.center {
  text-align: center;
  padding: 20px 16px 0;
}

@media (max-width: 1023px) {
  .video-block {
    grid-template-columns: 1fr;
  }
}

/* Night banner */
.banner_features {
  padding: 20px 0 40px;
  background: #f5f5f4;
}

.night-banner {
  text-align: center;
}

.night-banner img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Recipes */
.recipes_area {
  background: #fff;
  padding: 30px 0 50px;
}

.recipe-slider__viewport {
  overflow: hidden;
  width: min(1180px, 100% - 32px);
  margin: 0 auto;
  direction: ltr;
}

.recipe-slider__track {
  display: flex;
  transition: transform 0.45s ease;
}

.recipe-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #faf9f7;
  border-radius: 12px;
  overflow: hidden;
  min-height: 360px;
}

.recipe-slide__img {
  min-height: 280px;
}

.recipe-slide__body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.recipes_title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--green-dark);
  font-weight: 400;
}

.recipe_short_description {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.recipe_btn {
  display: inline-block;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.recipe-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.recipe-slider__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #cfcfcf;
  padding: 0;
}

.recipe-slider__dots button.is-active {
  background: var(--green-dark);
}

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

  .recipe-slide__img {
    min-height: 220px;
  }

  .recipe-slide__body {
    padding: 24px 18px 32px;
  }
}

/* Branches */
.home-snifim {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #f5f5f4 0%, #fff 40%);
}

.home-snifim__title {
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--green-dark);
  margin: 0 0 12px;
}

.home-snifim-text {
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 17px;
  color: var(--muted);
}

.home-snifim-text a {
  color: var(--green-dark);
  text-decoration: underline;
}

.branches-slider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.branches-viewport {
  overflow: hidden;
  flex: 1;
  direction: ltr;
}

.branches-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
}

.branch-card {
  flex: 0 0 28%;
  min-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.branch-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.95;
}

.branch-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
}

@media (max-width: 1023px) {
  .branches-slider .hp-nav {
    display: none;
  }

  .branches-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .branches-track {
    padding-bottom: 8px;
  }

  .branch-card {
    scroll-snap-align: start;
    flex: 0 0 80%;
    min-width: 80%;
  }
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  margin-top: auto;
}

.footer_credit {
  padding: 18px 0 28px;
  font-size: 14px;
  color: var(--muted);
}

.footer_credit_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer_builder {
  font-size: 13px;
}

.footer_stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.z-1 {
  position: relative;
  z-index: 1;
}

.center {
  text-align: center;
}
