/* bottom-links component - hitkabalta.co.il - 2026-08-08 */
#site-bottom-links,
[data-bottom-links] {
  width: 100%;
  background-color: white;
  z-index: 2;
  position: relative;
}

.siteBottomLinks {
  width: 100%;
  padding: 17px 16px 18px;
  box-sizing: border-box;
  direction: rtl;
  background: transparent;
  opacity: 1;

}

.siteBottomLinks__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  text-align: center;
}

.siteBottomLinks__link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 3px 0;
  margin: 0;
  color: #747474;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.siteBottomLinks__link:hover,
.siteBottomLinks__link:focus-visible {
  color: #222222;
  text-decoration: underline;
  outline: none;
}

.contentUseModal[hidden] {
  display: none !important;
}

.contentUseModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  direction: rtl;
}

.contentUseModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 14, 0.62);
  backdrop-filter: blur(4px);
}

.contentUseModal__dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: min(82vh, 680px);
  overflow: auto;
  box-sizing: border-box;
  padding: 30px 30px 26px;
  border-radius: 22px;
  background: #FAF8F5;
  color: #222222;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(55, 101, 83, 0.18);
}

.contentUseModal__dialog h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.25;
  color: #376553;
}

.contentUseModal__dialog p {
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.contentUseModal__dialog p:last-child {
  margin-bottom: 0;
}

.contentUseModal__close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(55, 101, 83, 0.10);
  color: #222222;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.contentUseModal__close:hover,
.contentUseModal__close:focus-visible {
  background: #376553;
  color: #ffffff;
  outline: none;
}

.contentUseModalOpen {
  overflow: hidden;
}

@media (max-width: 760px) {
  .siteBottomLinks {
    margin-top: 28px;
    padding: 0 12px 16px;
  }

  .siteBottomLinks__inner {
    gap: 7px 11px;
  }

  .siteBottomLinks__link {
    font-size: 0.76rem;
  }

  .contentUseModal {
    align-items: flex-end;
    padding: 10px;
  }

  .contentUseModal__dialog {
    width: 100%;
    max-height: 86vh;
    padding: 26px 18px 22px;
    border-radius: 20px 20px 14px 14px;
  }

  .contentUseModal__dialog p {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}
