.fok-smart-search {
  --fok-search-primary: #009ca6;
  --fok-search-primary-dark: #007f88;
  --fok-search-accent: #91c11e;
  --fok-search-text: #30383b;
  --fok-search-muted: #647176;
  --fok-search-line: #d8e2e4;
  --fok-search-surface: #f3f7f7;
  color: var(--fok-search-text);
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.fok-smart-search * { box-sizing: border-box; }
.fok-smart-search__intro { max-width: 760px; }
.fok-smart-search__intro h2 { color: var(--fok-search-text); font-size: 1.65rem; line-height: 1.2; margin: 0 0 8px; }
.fok-smart-search__intro > p:last-child { color: var(--fok-search-muted); font-size: 1rem; line-height: 1.55; margin: 0 0 20px; }
.fok-smart-search__eyebrow { color: var(--fok-search-primary); font-size: .78rem; font-weight: 700; letter-spacing: 0; margin: 0 0 6px; text-transform: uppercase; }
.fok-smart-search__form { margin: 0; }
.fok-smart-search__field {
  align-items: stretch;
  background: #fff;
  border: 2px solid var(--fok-search-primary);
  display: grid;
  grid-template-columns: 50px minmax(0,1fr) auto;
  min-height: 62px;
}
.fok-smart-search__field:focus-within { box-shadow: 0 0 0 3px rgba(0,156,166,.16); }
.fok-smart-search__icon { align-self: center; height: 20px; justify-self: center; position: relative; width: 20px; }
.fok-smart-search__icon::before { border: 2px solid var(--fok-search-primary); border-radius: 50%; content: ""; height: 13px; left: 0; position: absolute; top: 0; width: 13px; }
.fok-smart-search__icon::after { background: var(--fok-search-primary); content: ""; height: 2px; position: absolute; right: 0; top: 15px; transform: rotate(45deg); width: 8px; }
.fok-smart-search__input {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--fok-search-text);
  font-size: 1.06rem;
  height: auto !important;
  margin: 0 !important;
  min-width: 0;
  padding: 13px 8px !important;
}
.fok-smart-search__submit {
  background: var(--fok-search-primary);
  border: 0;
  color: #fff;
  font-weight: 700;
  margin: 6px;
  min-width: 112px;
  padding: 0 22px;
}
.fok-smart-search__submit:hover,
.fok-smart-search__submit:focus { background: var(--fok-search-primary-dark); color: #fff; }
.fok-smart-search__quick,
.fok-smart-search__related { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.fok-smart-search__quick > span,
.fok-smart-search__related > span { color: var(--fok-search-muted); font-size: .88rem; }
.fok-smart-search__quick button,
.fok-smart-search__related button,
.fok-smart-search__suggestion button {
  background: #fff;
  border: 1px solid var(--fok-search-line);
  color: var(--fok-search-primary);
  font-size: .88rem;
  font-weight: 600;
  margin: 0;
  min-height: 34px;
  padding: 5px 10px;
}
.fok-smart-search__quick button:hover,
.fok-smart-search__quick button:focus,
.fok-smart-search__related button:hover,
.fok-smart-search__related button:focus { background: var(--fok-search-surface); border-color: var(--fok-search-primary); }
.fok-smart-search__status { color: var(--fok-search-muted); font-size: .92rem; font-weight: 600; margin: 22px 0 12px; }
.fok-smart-search__suggestion { background: #f5f9e9; border-left: 4px solid var(--fok-search-accent); margin: 0 0 18px; padding: 11px 13px; }
.fok-smart-search__suggestion button { background: transparent; border: 0; min-height: 0; padding: 0 2px; text-decoration: underline; }
.fok-smart-search__results { display: grid; gap: 28px; }
.fok-smart-search__section-head { align-items: end; border-bottom: 1px solid var(--fok-search-line); display: flex; justify-content: space-between; margin: 0 0 12px; padding: 0 0 10px; }
.fok-smart-search__section-head p { color: var(--fok-search-text); font-size: 1.28rem; font-weight: 700; margin: 0 0 2px; }
.fok-smart-search__section-head span { color: var(--fok-search-muted); font-size: .88rem; line-height: 1.4; }
.fok-smart-search__group { margin: 0 0 24px; }
.fok-smart-search__group:last-child { margin-bottom: 0; }
.fok-smart-search__group h3 { color: var(--fok-search-primary); font-size: .93rem; margin: 0 0 7px; }
.fok-smart-search__list { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.fok-smart-search__card {
  align-items: start;
  background: #fff;
  border: 1px solid var(--fok-search-line);
  border-radius: 6px;
  color: var(--fok-search-text);
  display: grid;
  gap: 15px;
  grid-template-columns: 92px minmax(0,1fr);
  min-height: 156px;
  padding: 15px;
  text-decoration: none;
}
.fok-smart-search__card:hover,
.fok-smart-search__card:focus,
.fok-smart-search__card.is-active,
.fok-smart-search__helpful-card:hover,
.fok-smart-search__helpful-card:focus,
.fok-smart-search__helpful-card.is-active { background: var(--fok-search-surface); color: var(--fok-search-text); outline: 2px solid transparent; }
.fok-smart-search__card img,
.fok-smart-search__placeholder { aspect-ratio: 1 / 1; background: #e8eeee; display: block; height: 88px; object-fit: contain; width: 88px; }
.fok-smart-search__placeholder { position: relative; }
.fok-smart-search__placeholder::after { color: #98a7aa; content: "FOK"; font-size: .72rem; font-weight: 700; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); }
.fok-smart-search__copy { display: grid; gap: 3px; min-width: 0; }
.fok-smart-search__copy strong,
.fok-smart-search__helpful-card strong { color: var(--fok-search-text); font-size: 1rem; line-height: 1.32; }
.fok-smart-search__copy > span:not(.fok-smart-search__type):not(.fok-smart-search__detail):not(.fok-smart-search__cta),
.fok-smart-search__helpful-card > span:not(.fok-smart-search__type):not(.fok-smart-search__cta) { color: var(--fok-search-muted); font-size: .89rem; line-height: 1.42; }
.fok-smart-search__copy > span:not(.fok-smart-search__type):not(.fok-smart-search__detail):not(.fok-smart-search__cta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.fok-smart-search__type { color: var(--fok-search-primary); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.fok-smart-search__detail { color: var(--fok-search-primary) !important; font-size: .82rem !important; font-weight: 700; }
.fok-smart-search__cta { color: var(--fok-search-primary); font-size: .86rem; font-weight: 700; margin-top: 4px; }
.fok-smart-search__helpful-grid { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.fok-smart-search__helpful-card { border: 1px solid var(--fok-search-line); border-radius: 6px; color: var(--fok-search-text); display: grid; gap: 6px; min-height: 164px; padding: 16px; text-decoration: none; }
.fok-smart-search__topics { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.fok-smart-search__topic { background: #fff; border: 1px solid var(--fok-search-line); color: var(--fok-search-text); display: grid; gap: 6px; min-height: 142px; padding: 16px; text-decoration: none; }
.fok-smart-search__topic:hover,
.fok-smart-search__topic:focus { border-color: var(--fok-search-primary); color: var(--fok-search-text); }
.fok-smart-search__topic strong { color: var(--fok-search-text); font-size: .98rem; }
.fok-smart-search__topic > span:not(.fok-smart-search__topic-link) { color: var(--fok-search-muted); font-size: .86rem; line-height: 1.4; }
.fok-smart-search__topic-link { align-self: end; color: var(--fok-search-primary); font-size: .85rem; font-weight: 700; }
.fok-smart-search__empty { background: var(--fok-search-surface); border-left: 4px solid var(--fok-search-accent); display: grid; gap: 5px; padding: 16px; }
.fok-smart-search__empty strong { font-size: 1rem; }
.fok-smart-search__empty span { color: var(--fok-search-muted); font-size: .9rem; line-height: 1.45; }
.fok-smart-search__related { margin-top: -12px; }
.fok-smart-search__loading { display: grid; gap: 10px; }
.fok-smart-search__loading span { animation: fok-search-pulse 1s ease-in-out infinite; background: var(--fok-search-surface); display: block; height: 82px; }
.fok-smart-search__loading span:nth-child(2) { animation-delay: .12s; }
.fok-smart-search__loading span:nth-child(3) { animation-delay: .24s; }

@keyframes fok-search-pulse { 0%,100% { opacity: .45; } 50% { opacity: 1; } }

body.fok-smart-search-bridge-active #ajaxsearchliteres1 { display: none !important; }
.fok-header-search {
  background: #fff;
  border: 1px solid #cfdadc;
  box-shadow: 0 16px 36px rgba(18,35,39,.22);
  color: #30383b;
  left: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: calc(100% + 9px);
  z-index: 100001;
}
.fok-header-search[hidden] { display: none !important; }
.fok-header-search * { box-sizing: border-box; }
.fok-header-search__list { display: grid; }
.fok-header-search__item {
  align-items: center;
  border-bottom: 1px solid #e1e8e9;
  color: #30383b;
  display: grid;
  gap: 12px;
  grid-template-columns: 48px minmax(0,1fr);
  min-height: 68px;
  padding: 8px 12px;
  text-decoration: none;
}
.fok-header-search__item:hover,
.fok-header-search__item:focus,
.fok-header-search__item.is-active { background: #f3f7f7; color: #30383b; outline: 0; }
.fok-header-search__item img,
.fok-header-search__placeholder { background: #eef3f3; display: block; height: 48px; object-fit: contain; width: 48px; }
.fok-header-search__placeholder { position: relative; }
.fok-header-search__placeholder::after { color: #91a0a3; content: "FOK"; font-size: 10px; font-weight: 700; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); }
.fok-header-search__copy { display: grid; gap: 1px; min-width: 0; }
.fok-header-search__copy strong { color: #30383b; font-size: 15px; line-height: 1.25; }
.fok-header-search__copy > span:last-child { color: #647176; font-size: 12px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fok-header-search__type { color: #009ca6; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.fok-header-search__more { align-items: center; background: #f3f7f7; color: #007f88; display: flex; font-size: 14px; font-weight: 700; justify-content: space-between; min-height: 48px; padding: 11px 14px; text-decoration: none; }
.fok-header-search__more:hover,
.fok-header-search__more:focus { background: #e8f1f1; color: #006d75; }
.fok-header-search__more span { font-size: 22px; line-height: 1; }
.fok-header-search__empty { display: grid; gap: 3px; padding: 16px; }
.fok-header-search__empty strong { font-size: 15px; }
.fok-header-search__empty span { color: #647176; font-size: 13px; line-height: 1.4; }
.fok-header-search__suggestion { background: #f5f9e9; border-bottom: 1px solid #dce8bd; color: #52651e; font-size: 12px; margin: 0; padding: 7px 12px; }
.fok-header-search__loading { color: #647176; font-size: 13px; padding: 18px 14px; }

@media (max-width: 760px) {
  .fok-smart-search__list { grid-template-columns: 1fr; }
  .fok-smart-search__topics { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .fok-smart-search__helpful-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .fok-smart-search__intro h2 { font-size: 1.35rem; }
  .fok-smart-search__field { grid-template-columns: 42px minmax(0,1fr); }
  .fok-smart-search__submit { grid-column: 1 / -1; min-height: 44px; }
  .fok-smart-search__card { gap: 10px; grid-template-columns: 62px minmax(0,1fr); min-height: 126px; padding: 12px; }
  .fok-smart-search__card img,
  .fok-smart-search__placeholder { height: 58px; width: 58px; }
  .fok-smart-search__topics { grid-template-columns: 1fr; }
  .fok-smart-search__topic { min-height: 112px; }
  body:has(.ghost-button) .fok-smart-search { padding-right: 90px; }
  body:has(.ghost-button) .fok-smart-search__results { padding-right: 20px; }
  .fok-header-search { left: -10px; right: -10px; top: calc(100% + 7px); }
  .fok-header-search__item { grid-template-columns: 40px minmax(0,1fr); min-height: 60px; padding: 7px 10px; }
  .fok-header-search__item img,
  .fok-header-search__placeholder { height: 40px; width: 40px; }
  .fok-header-search__copy > span:last-child { display: none; }
}

@media (max-width: 420px) {
  body:has(.ghost-button) .fok-smart-search { padding-right: 72px; }
  body:has(.ghost-button) .fok-smart-search__results { padding-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .fok-smart-search * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
