.otk-consent26,
.otk-consent26 * { box-sizing: border-box; }

.otk-consent26 {
  --otk-ink: #1f1e1b;
  --otk-muted: #66645f;
  --otk-line: #d9d5cd;
  --otk-paper: #fffefa;
  --otk-smoke: #f3f2ef;
  --otk-accent: #b8883b;
  color: var(--otk-ink);
  font-family: inherit;
  position: relative;
  z-index: 2147483000;
}

.otk-consent26__banner {
  position: fixed;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 22px;
  background: rgba(255, 254, 250, .98);
  border: 1px solid var(--otk-line);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(24, 22, 18, .18);
  backdrop-filter: blur(12px);
}

.otk-consent26__banner[hidden],
.otk-consent26__overlay[hidden] { display: none !important; }

.otk-consent26__copy strong { display: block; margin-bottom: 6px; font-size: 17px; }
.otk-consent26__copy p { max-width: 720px; margin: 0; color: var(--otk-muted); font-size: 13px; line-height: 1.65; }
.otk-consent26 a { color: var(--otk-ink); text-underline-offset: 3px; }

.otk-consent26__actions,
.otk-consent26__dialog-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 8px;
}

.otk-consent26__actions button,
.otk-consent26__dialog-actions button {
  min-height: 44px;
  padding: 10px 15px;
  color: var(--otk-ink);
  background: var(--otk-paper);
  border: 1px solid var(--otk-ink);
  border-radius: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.otk-consent26__actions button:hover,
.otk-consent26__actions button:focus-visible,
.otk-consent26__dialog-actions button:hover,
.otk-consent26__dialog-actions button:focus-visible {
  color: #fff;
  background: var(--otk-ink);
  outline: none;
  transform: translateY(-1px);
}

.otk-consent26__manage {
  position: fixed;
  bottom: 14px;
  left: 14px;
  padding: 9px 13px;
  color: var(--otk-ink);
  background: var(--otk-paper);
  border: 1px solid var(--otk-line);
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(24, 22, 18, .12);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.otk-consent26[data-has-choice="0"] .otk-consent26__manage { display: none; }

.otk-consent26__overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 19, 17, .48);
}

.otk-consent26__dialog {
  width: min(720px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  overflow: auto;
  padding: 26px;
  background: var(--otk-paper);
  border: 1px solid var(--otk-line);
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(20, 19, 17, .25);
}

.otk-consent26__dialog-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.otk-consent26__dialog-head span { color: var(--otk-accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.otk-consent26__dialog h2 { margin: 4px 0 0; font-family: Georgia, serif; font-size: clamp(28px, 5vw, 40px); font-weight: 500; line-height: 1.08; }
.otk-consent26__close { width: 38px; height: 38px; color: var(--otk-ink); background: var(--otk-smoke); border: 1px solid var(--otk-line); border-radius: 50%; font-size: 24px; cursor: pointer; }
.otk-consent26__intro { margin: 16px 0 20px; color: var(--otk-muted); font-size: 13px; line-height: 1.65; }

.otk-consent26__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--otk-line);
}
.otk-consent26__option strong { display: block; margin-bottom: 4px; font-size: 15px; }
.otk-consent26__option p { margin: 0 0 5px; color: var(--otk-muted); font-size: 12px; line-height: 1.55; }
.otk-consent26__option small { color: #817e77; font-size: 10px; line-height: 1.5; }
.otk-consent26__option code { padding: 1px 4px; background: var(--otk-smoke); border-radius: 4px; font-size: 10px; }

.otk-consent26__switch { display: grid; grid-template-columns: auto; justify-items: center; gap: 5px; cursor: pointer; }
.otk-consent26__switch input { position: absolute; opacity: 0; pointer-events: none; }
.otk-consent26__switch span { position: relative; width: 46px; height: 25px; background: #c8c6c0; border-radius: 999px; transition: background .2s ease; }
.otk-consent26__switch span::after { content: ''; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; background: #fff; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,.2); transition: transform .2s ease; }
.otk-consent26__switch input:checked + span { background: var(--otk-accent); }
.otk-consent26__switch input:checked + span::after { transform: translateX(21px); }
.otk-consent26__switch input:focus-visible + span { outline: 2px solid var(--otk-ink); outline-offset: 3px; }
.otk-consent26__switch input:disabled + span { opacity: .7; }
.otk-consent26__switch em { color: var(--otk-muted); font-size: 9px; font-style: normal; }
.otk-consent26__dialog-actions { margin-top: 22px; }
.otk-consent26-open { overflow: hidden; }

@media (max-width: 820px) {
  .otk-consent26__banner { grid-template-columns: 1fr; gap: 15px; right: 10px; bottom: 10px; left: 10px; padding: 18px; border-radius: 15px; }
  .otk-consent26__actions { grid-template-columns: 1fr; }
  .otk-consent26__actions button { width: 100%; }
  .otk-consent26__dialog { max-height: calc(100vh - 20px); padding: 20px 16px; border-radius: 16px; }
  .otk-consent26__option { align-items: start; gap: 12px; }
  .otk-consent26__dialog-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .otk-consent26 * { scroll-behavior: auto !important; transition: none !important; }
}
