@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
:root {
  --oak-bg: #f5f5f7;
  --oak-bg-2: #fbfbfd;
  --oak-card: rgba(255, 255, 255, .82);
  --oak-card-solid: #ffffff;
  --oak-text: #1d1d1f;
  --oak-muted: #6e6e73;
  --oak-line: rgba(60, 60, 67, .16);
  --oak-line-strong: rgba(60, 60, 67, .26);
  --oak-blue: #007aff;
  --oak-blue-dark: #005ecb;
  --oak-green: #31a24c;
  --oak-orange: #b76b00;
  --oak-red: #d70015;
  --oak-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  --oak-shadow-soft: 0 8px 30px rgba(0, 0, 0, .06);
  --oak-radius: 28px;
  --oak-radius-sm: 18px;
  --oak-blur: saturate(180%) blur(24px);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--oak-bg); }
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% -10%, rgba(0, 122, 255, .16), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(52, 199, 89, .10), transparent 30rem),
    linear-gradient(180deg, var(--oak-bg-2), var(--oak-bg));
  color: var(--oak-text);
  line-height: 1.45;
  letter-spacing: 0;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.oak-shell { width: min(1480px, calc(100% - 36px)); margin-inline: auto; }
.oak-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 253, .72);
  backdrop-filter: var(--oak-blur);
  -webkit-backdrop-filter: var(--oak-blur);
  border-bottom: 1px solid rgba(60, 60, 67, .10);
}
.oak-topbar__inner {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.oak-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--oak-text);
  white-space: nowrap;
}
.oak-brand strong { font-weight: 800; letter-spacing: 0; }
.oak-brand__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(135deg, #111, #65656a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 6px 16px rgba(0,0,0,.14);
}
.oak-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(60, 60, 67, .13);
  background: rgba(255, 255, 255, .78);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.82);
}
.oak-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  color: rgba(29,29,31,.72);
}
.oak-nav a.is-active {
  background: var(--oak-blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,122,255,.28);
}
.oak-nav a.is-active .oak-count {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.oak-count {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 122, 255, .12);
  color: var(--oak-blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.oak-glass, .oak-card {
  background: var(--oak-card);
  backdrop-filter: var(--oak-blur);
  -webkit-backdrop-filter: var(--oak-blur);
  border: 1px solid var(--oak-line);
  box-shadow: var(--oak-shadow-soft);
}
.oak-hero {
  margin: 30px 0 22px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  position: relative;
}
.oak-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -42% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,255,.16), transparent 66%);
  pointer-events: none;
}
.oak-hero h1 {
  margin: 6px 0 10px;
  max-width: 840px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}
.oak-hero p {
  margin: 0;
  max-width: 700px;
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--oak-muted);
}
.oak-eyebrow, .oak-overline {
  margin: 0 0 8px;
  color: var(--oak-blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.oak-eyebrow--green {
  color: var(--oak-green);
}

.oak-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 280px;
  position: relative;
  z-index: 1;
}
.oak-hero__stats div, .oak-summary-box div {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(60,60,67,.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.oak-hero__stats strong, .oak-summary-box strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}
.oak-hero__stats span, .oak-summary-box span {
  display: block;
  margin-top: 5px;
  color: var(--oak-muted);
  font-size: 13px;
  font-weight: 700;
}
.oak-hero--request { align-items: center; }
.oak-hero__actions { position: relative; z-index: 1; }

.oak-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "filters"
    "results";
  gap: 18px;
  align-items: start;
  padding-bottom: 48px;
}
.oak-card {
  border-radius: var(--oak-radius);
  padding: 22px;
}
.oak-filter-card {
  grid-area: filters;
  position: static;
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(300px, .85fr) minmax(380px, 1fr);
  gap: 20px;
  align-items: start;
}
.oak-filter-block {
  min-width: 0;
  height: 100%;
}
.oak-filter-block:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid rgba(60,60,67,.13);
}
.oak-list-card, .oak-request-side { position: sticky; top: 88px; }
.oak-list-card { grid-area: list; }
.oak-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.oak-card__head--compact { align-items: center; margin-bottom: 12px; }
.oak-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}
.oak-divider {
  height: 1px;
  background: rgba(60,60,67,.13);
  margin: 22px 0;
}
.oak-help {
  margin: 8px 0 0;
  color: var(--oak-muted);
  font-size: 14px;
  font-weight: 540;
}
.oak-filter-card .oak-card__head {
  margin-bottom: 12px;
}
.oak-format-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.oak-format-toolbar .oak-segment {
  margin: 0;
}
.oak-btn--compact {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 14px;
}
.oak-filter-card .oak-chip-row {
  margin-top: 10px;
}

.oak-field { display: block; margin: 0 0 12px; }
.oak-field span {
  display: block;
  margin: 0 0 7px;
  color: rgba(29,29,31,.82);
  font-size: 13px;
  font-weight: 800;
}
.oak-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(60,60,67,.18);
  border-radius: 16px;
  min-height: 46px;
  padding: 11px 13px;
  background: rgba(255,255,255,.86);
  color: var(--oak-text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
textarea { resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(0,122,255,.55);
  box-shadow: 0 0 0 4px rgba(0,122,255,.12), inset 0 1px 0 rgba(255,255,255,.8);
  background: #fff;
}
.oak-field--search input { font-size: 17px; }
.oak-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.oak-segment {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(118,118,128,.12);
  border: 1px solid rgba(60,60,67,.10);
  margin: 2px 0 12px;
}
.oak-segment label { cursor: pointer; }
.oak-segment input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.oak-segment span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(29,29,31,.72);
  font-weight: 850;
  font-size: 13px;
}
.oak-segment input:checked + span {
  background: #fff;
  color: var(--oak-text);
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}
.oak-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 12px; }
.oak-chip {
  border: 1px solid rgba(60,60,67,.16);
  background: rgba(255,255,255,.72);
  color: rgba(29,29,31,.82);
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 800;
  cursor: pointer;
}
.oak-chip:hover { background: rgba(0,122,255,.08); border-color: rgba(0,122,255,.26); }

.oak-filter-block--source h2,
.oak-filter-block--search h2 { margin-bottom: 12px; }
.oak-source-grid { display: grid; gap: 9px; }
.oak-source-grid button {
  border: 1px solid rgba(60,60,67,.16);
  background: rgba(255,255,255,.74);
  color: var(--oak-text);
  border-radius: 18px;
  padding: 13px 14px;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.oak-source-grid button small {
  display: block;
  margin-top: 3px;
  color: var(--oak-muted);
  font-weight: 680;
}
.oak-source-grid button.is-active {
  border-color: rgba(0,122,255,.38);
  background: rgba(0,122,255,.11);
  color: var(--oak-blue);
}
.oak-source-grid button.is-active small { color: rgba(0,94,203,.74); }

.oak-btn {
  appearance: none;
  border: 1px solid var(--oak-blue);
  background: var(--oak-blue);
  color: #fff;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(0,122,255,.20);
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease, background .16s ease;
  white-space: nowrap;
}
.oak-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,122,255,.24); }
.oak-btn:active { transform: translateY(0); }
.oak-btn:disabled { opacity: .46; cursor: not-allowed; transform: none; box-shadow: none; }
.oak-btn--secondary {
  background: rgba(255,255,255,.78);
  color: var(--oak-blue);
  border-color: rgba(0,122,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 6px 18px rgba(0,0,0,.05);
}
.oak-btn--secondary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 24px rgba(0,0,0,.08); }
.oak-btn--danger {
  color: var(--oak-red);
  border-color: rgba(215,0,21,.22);
  background: rgba(255,255,255,.78);
  box-shadow: none;
}
.oak-btn--small { min-height: 34px; padding: 0 12px; font-size: 13px; }
.oak-btn--full { width: 100%; margin-top: 10px; }
.oak-search-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.oak-results-area { grid-area: results; min-width: 0; }
.oak-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.oak-results-head .oak-help { margin-top: 5px; }
.oak-message {
  margin: 12px 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--oak-line);
  color: var(--oak-text);
  font-weight: 700;
}
.oak-message.is-error {
  background: rgba(255, 59, 48, .10);
  color: #9f0712;
  border-color: rgba(255, 59, 48, .26);
}
.oak-message.is-success {
  background: rgba(52, 199, 89, .12);
  color: #176b2c;
  border-color: rgba(52, 199, 89, .30);
}
.oak-message.is-info {
  background: rgba(0,122,255,.10);
  color: #005ecb;
  border-color: rgba(0,122,255,.24);
}
.oak-message.is-warning {
  background: rgba(255, 204, 0, .16);
  color: #7a4b00;
  border-color: rgba(255, 204, 0, .34);
}
.oak-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.oak-card-motif {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(60,60,67,.14);
  box-shadow: 0 12px 34px rgba(0,0,0,.07);
  min-width: 0;
}
.oak-card-motif__image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(118,118,128,.12);
  overflow: hidden;
}
.oak-card-motif__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oak-card-motif__source {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 70px);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(29,29,31,.86);
  font-size: 12px;
  font-weight: 850;
}
.oak-fav-star {
  appearance: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(60,60,67,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  color: rgba(29,29,31,.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .16s ease, color .16s ease, box-shadow .16s ease, background .16s ease;
}
.oak-fav-star:hover { transform: scale(1.04); }
.oak-fav-star.is-active {
  color: #ffcc00;
  background: rgba(255,255,255,.96);
  box-shadow: 0 0 0 5px rgba(255,204,0,.18), 0 12px 28px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.92);
}
.oak-card-motif__body { padding: 14px; }
.oak-card-motif__title {
  min-height: 44px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}
.oak-card-motif__meta {
  margin-top: 6px;
  color: var(--oak-muted);
  font-size: 13px;
  font-weight: 650;
}
.oak-card-motif__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 13px;
}
.oak-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(118,118,128,.12);
  border: 1px solid rgba(60,60,67,.10);
  color: rgba(29,29,31,.72);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.oak-pill--ok { color: #136d2c; background: rgba(52,199,89,.14); border-color: rgba(52,199,89,.26); }
.oak-pill--warn { color: #8a4d00; background: rgba(255,149,0,.16); border-color: rgba(255,149,0,.28); }
.oak-pill--bad { color: #a00612; background: rgba(255,59,48,.12); border-color: rgba(255,59,48,.26); }
.oak-quality { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 10px; }
.oak-load-row { display: flex; justify-content: center; padding: 18px; }

.oak-small-list { display: grid; gap: 9px; }
.oak-small-item, .oak-review-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid rgba(60,60,67,.12);
  background: rgba(255,255,255,.70);
  border-radius: 18px;
  padding: 9px;
}
.oak-small-item img, .oak-review-item img {
  width: 66px;
  height: 56px;
  object-fit: cover;
  border-radius: 13px;
  background: rgba(118,118,128,.14);
}
.oak-small-item strong, .oak-review-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
}
.oak-small-item span, .oak-review-item span {
  display: block;
  margin-top: 3px;
  color: var(--oak-muted);
  font-size: 12px;
  font-weight: 650;
}
.oak-small-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }
.oak-small-actions button {
  border: 1px solid rgba(0,122,255,.20);
  background: rgba(0,122,255,.08);
  color: var(--oak-blue);
  border-radius: 999px;
  padding: 5px 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}
.oak-small-actions button.danger { color: var(--oak-red); background: rgba(255,59,48,.08); border-color: rgba(255,59,48,.20); }
.oak-empty {
  grid-column: 1 / -1;
  text-align: center;
  border: 1px dashed rgba(60,60,67,.18);
  border-radius: 28px;
  padding: 44px 22px;
  background: rgba(255,255,255,.62);
  color: var(--oak-muted);
}
.oak-empty h3 { margin: 0 0 8px; color: var(--oak-text); letter-spacing: 0; }
.oak-empty p { margin: 0 auto; max-width: 560px; }
.oak-empty__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118,118,128,.12);
  color: rgba(29,29,31,.54);
  font-weight: 900;
}
.oak-empty--small { padding: 28px 18px; }

.oak-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: start;
  padding-bottom: 48px;
}
.oak-request-main { display: grid; gap: 18px; min-width: 0; }
.oak-review-list { display: grid; gap: 12px; margin-top: 15px; }
.oak-review-list--compact .oak-review-item { grid-template-columns: 58px minmax(0, 1fr) auto; }
.oak-review-item {
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
}
.oak-review-item img { width: 96px; height: 74px; border-radius: 16px; }
.oak-review-item__title { font-size: 16px; }
.oak-review-item__actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.oak-review-item__actions a { color: var(--oak-blue); font-weight: 850; }
.oak-summary-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.oak-summary-box div { padding: 12px; border-radius: 18px; }
.oak-summary-box strong { font-size: 20px; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 1260px) {
  .oak-filter-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }
  .oak-filter-block--format {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(60,60,67,.13);
  }
  .oak-filter-block--source { padding-right: 18px; }
  .oak-list-card { position: static; }
  .oak-results { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .oak-hero { align-items: stretch; flex-direction: column; }
  
.oak-eyebrow--green {
  color: var(--oak-green);
}

.oak-hero__stats { min-width: 0; width: 100%; }
  .oak-search-grid, .oak-request-grid { grid-template-columns: 1fr; }
  .oak-filter-card {
    grid-template-columns: 1fr;
  }
  .oak-filter-block,
  .oak-filter-block--format,
  .oak-filter-block--source {
    grid-column: auto;
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(60,60,67,.13);
  }
  .oak-filter-block--search {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .oak-list-card, .oak-request-side { position: static; }
  .oak-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .oak-results-head { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 700px) {
  .oak-shell { width: min(100% - 24px, 1480px); }
  .oak-topbar__inner { min-height: 62px; align-items: stretch; flex-direction: column; justify-content: center; padding: 10px 0; }
  .oak-brand { justify-content: center; }
  .oak-nav { width: 100%; justify-content: center; }
  .oak-nav a { flex: 1; justify-content: center; padding: 0 8px; font-size: 14px; }
  .oak-hero { margin-top: 18px; border-radius: 28px; }
  .oak-hero h1 { font-size: clamp(38px, 13vw, 56px); }
  .oak-hero__stats, .oak-field-grid, .oak-search-actions, .oak-summary-box { grid-template-columns: 1fr; }
  .oak-results { grid-template-columns: 1fr; }
  .oak-card { padding: 18px; border-radius: 24px; }
  .oak-card-motif__actions { grid-template-columns: 1fr; }
  .oak-review-item, .oak-review-list--compact .oak-review-item { grid-template-columns: 72px minmax(0, 1fr); }
  .oak-review-item img { width: 72px; height: 58px; }
  .oak-review-item__actions { grid-column: 1 / -1; justify-content: flex-start; }
}

.oak-upload-panel {
  margin-top: 12px;
}
.oak-upload-drop {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px dashed rgba(0,122,255,.34);
  border-radius: 22px;
  background: rgba(0,122,255,.07);
  cursor: pointer;
}
.oak-upload-drop:hover {
  background: rgba(0,122,255,.10);
}
.oak-upload-drop input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.oak-upload-drop strong {
  color: var(--oak-blue);
  font-size: 15px;
  font-weight: 900;
}
.oak-upload-drop span {
  color: var(--oak-muted);
  font-size: 13px;
  font-weight: 650;
}
.oak-upload-drop code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}
.oak-upload-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.oak-upload-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(60,60,67,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
}
.oak-upload-row span {
  min-width: 0;
}
.oak-upload-row strong,
.oak-upload-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.oak-upload-row small {
  margin-top: 2px;
  color: var(--oak-muted);
  font-size: 12px;
  font-weight: 700;
}
.oak-upload-row em {
  flex: 0 0 auto;
  color: var(--oak-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
.oak-upload-row.is-success em { color: var(--oak-green); }
.oak-upload-row.is-error em { color: var(--oak-red); }

/* Update 2026-05-06: vereinfachte Suche, Hero-Navigation und Anfrageansicht */
.oak-brand__icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-block;
  box-shadow: 0 6px 16px rgba(0,0,0,.10);
}
.oak-hero__copy,
.oak-hero__side {
  position: relative;
  z-index: 1;
}
.oak-hero__side {
  display: grid;
  gap: 14px;
  justify-items: end;
  align-content: end;
  min-width: min(100%, 430px);
}
.oak-nav--hero {
  justify-self: end;
  width: auto;
}
.oak-search-actions--single {
  display: flex;
  justify-content: flex-end;
}
.oak-search-actions--single .oak-btn {
  min-width: 150px;
}
.oak-results-area {
  margin-top: 0;
}
.oak-summary-box--two {
  grid-template-columns: repeat(2, 1fr);
}
.oak-icon-remove {
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(60,60,67,.14);
  background: rgba(118,118,128,.10);
  color: rgba(29,29,31,.72);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.oak-icon-remove:hover {
  transform: scale(1.04);
  background: rgba(255,59,48,.10);
  color: var(--oak-red);
}
@media (max-width: 980px) {
  .oak-hero__side {
    justify-items: stretch;
    width: 100%;
    min-width: 0;
  }
  .oak-nav--hero {
    justify-self: stretch;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .oak-search-actions--single {
    justify-content: stretch;
  }
  .oak-search-actions--single .oak-btn {
    width: 100%;
  }
}

/* Update 2026-05-06: Quellenabhängige dritte Spalte, objectiv-Rubriken, Upload-Spalte */
.oak-filter-block[hidden] {
  display: none !important;
}
.oak-search-actions--single,
.oak-search-actions--single .oak-btn,
.oak-btn--full-inline {
  width: 100%;
}
.oak-search-actions--single {
  display: block;
}
.oak-filter-block--search .oak-field,
.oak-filter-block--rubric .oak-field {
  margin-bottom: 12px;
}
.oak-field--search input,
.oak-field--select select {
  min-height: 58px;
  border-radius: 24px;
  padding-inline: 18px;
  font-size: 18px;
}
.oak-field--select select {
  cursor: pointer;
  background-color: rgba(255,255,255,.90);
}
.oak-filter-block--upload .oak-upload-panel {
  margin-top: 12px;
}
.oak-filter-block--upload .oak-upload-drop {
  min-height: 146px;
  align-content: center;
}
.oak-filter-block--upload .oak-upload-drop strong {
  font-size: 18px;
}
.oak-filter-block--upload .oak-upload-drop span {
  font-size: 14px;
}
.oak-hero__copy h1 {
  margin-top: 0;
}
@media (max-width: 700px) {
  .oak-field--search input,
  .oak-field--select select {
    min-height: 54px;
    border-radius: 20px;
    font-size: 17px;
  }
}

/* Update 2026-05-06: objectiv-Logo, Startvorauswahl, Kategorie/Upload-Feinschliff */
.oak-topbar__inner {
  justify-content: flex-start;
}
.oak-brand--logo {
  gap: 0;
  line-height: 0;
}
.oak-brand__logo {
  display: block;
  width: min(250px, 54vw);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
.oak-brand__icon,
.oak-brand span {
  display: none !important;
}
.oak-hero__side {
  width: min(100%, 430px);
  justify-items: stretch;
}
.oak-nav--hero,
.oak-hero__stats {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}
.oak-hero__stats div {
  min-width: 0;
}
.oak-search-actions--single,
.oak-search-actions--single .oak-btn,
.oak-btn--full-inline {
  width: 100%;
  min-width: 0;
}
.oak-filter-block--rubric h2,
.oak-filter-block--upload h2 {
  margin-bottom: 22px;
}
.oak-filter-block--rubric .oak-field {
  margin-top: 0;
}
.oak-upload-drop {
  position: relative;
}
.oak-upload-drop.is-dragover {
  background: rgba(0,122,255,.13);
  border-color: rgba(0,122,255,.58);
  box-shadow: 0 0 0 5px rgba(0,122,255,.10), inset 0 1px 0 rgba(255,255,255,.78);
}
@media (max-width: 700px) {
  .oak-brand__logo {
    width: min(220px, 68vw);
    max-height: 36px;
  }
}


/* Update 2026-05-06: persistente Filter, gleich breite Hero-Tabs und Motiv-Vorschau */
.oak-nav--hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.oak-nav--hero a {
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding-inline: 14px;
  text-align: center;
}
.oak-preview-trigger {
  cursor: zoom-in;
}
.oak-modal-open {
  overflow: hidden;
}
.oak-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
}
.oak-preview-modal.is-open {
  display: flex;
}
.oak-preview-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.oak-preview-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(88vh, 980px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.46);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
.oak-preview-modal__image {
  width: 100%;
  max-height: calc(88vh - 94px);
  object-fit: contain;
  display: block;
  background: rgba(0,0,0,.06);
}
.oak-preview-modal__caption {
  display: grid;
  gap: 4px;
  padding: 18px 22px 20px;
}
.oak-preview-modal__caption strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
  letter-spacing: 0;
}
.oak-preview-modal__caption span {
  color: var(--oak-muted);
  font-size: 14px;
  font-weight: 700;
}
.oak-preview-modal__close {
  appearance: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(60,60,67,.16);
  background: rgba(255,255,255,.86);
  color: rgba(29,29,31,.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.82);
}
.oak-preview-modal__close:hover {
  background: #fff;
}
@media (max-width: 700px) {
  .oak-preview-modal {
    padding: 12px;
  }
  .oak-preview-modal__panel {
    border-radius: 24px;
  }
  .oak-preview-modal__caption {
    padding: 14px 16px 16px;
  }
}

/* Update 2026-05-08: Headline-Typografie wie objectiv.de Elementor-Heading; Titel-Laufweite auf 0 */
:root {
  --oak-display-font: "Roboto", sans-serif;
  --oak-display-weight: 900;
  --oak-display-line-height: .93;
  --oak-display-letter-spacing: 0;
}
.oak-hero h1,
.oak-card h2,
.oak-filter-block h2,
.oak-review-item__title {
  font-family: var(--oak-display-font) !important;
  font-weight: var(--oak-display-weight);
  font-style: normal;
  font-synthesis: none;
  letter-spacing: 0;
}
.oak-hero h1 {
  font-size: clamp(52px, 7.35vw, 112px);
  line-height: var(--oak-display-line-height);
}
.oak-card h2,
.oak-filter-block h2 {
  letter-spacing: 0;
}
.oak-brand__logo {
  background: transparent !important;
}
.oak-pill--price {
  background: rgba(0,122,255,.10) !important;
  border-color: rgba(0,122,255,.24) !important;
  color: #0066d6 !important;
  line-height: 1.25;
  text-align: right;
  white-space: normal;
  font-size: 13px;
  min-width: 190px;
}
.oak-format-note {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--oak-muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 720;
}
.oak-nav--hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}
.oak-nav--hero a {
  display: flex !important;
  justify-content: center !important;
  inline-size: 100% !important;
  min-width: 0 !important;
  text-align: center;
}
.oak-review-price {
  display: inline-block;
  text-align: right;
  color: #005ecb;
  background: rgba(0,122,255,.08);
  border: 1px solid rgba(0,122,255,.18);
  border-radius: 14px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}
.oak-review-price small {
  display: none;
}
.oak-scroll-top {
  appearance: none;
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,122,255,.28);
  background: rgba(255,255,255,.88);
  color: var(--oak-blue);
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.82);
  backdrop-filter: var(--oak-blur);
  -webkit-backdrop-filter: var(--oak-blur);
  opacity: 0;
  transform: translateY(14px) scale(.92);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.oak-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.oak-scroll-top:hover {
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 700px) {
  .oak-pill--price {
    width: 100%;
    text-align: left;
    min-width: 0;
  }
  .oak-card__head {
    flex-direction: column;
    align-items: stretch;
  }
  .oak-review-price {
    text-align: left;
  }
  .oak-scroll-top {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}


/* Update 2026-05-06: Kostenfreie Bildlizenz, direkte Button-Tooltips und objectiv-nähere Titel */
.oak-tooltip-wrap {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.oak-tooltip-wrap .oak-btn--full {
  margin-top: 0;
}
.oak-tooltip-wrap::after,
.oak-tooltip-wrap::before {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .12s ease, transform .12s ease;
  z-index: 20;
}
.oak-tooltip-wrap::after {
  content: attr(data-tooltip);
  width: min(320px, 92vw);
  padding: 11px 13px;
  border-radius: 15px;
  background: rgba(29,29,31,.94);
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 760;
  text-align: left;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.oak-tooltip-wrap::before {
  content: "";
  bottom: calc(100% + 4px);
  width: 12px;
  height: 12px;
  background: rgba(29,29,31,.94);
  transform: translate(-50%, 6px) rotate(45deg);
}
.oak-tooltip-wrap:hover::after,
.oak-tooltip-wrap:hover::before,
.oak-tooltip-wrap:focus-within::after,
.oak-tooltip-wrap:focus-within::before {
  opacity: 1;
  transform: translate(-50%, 0);
}
.oak-tooltip-wrap:hover::before,
.oak-tooltip-wrap:focus-within::before {
  transform: translate(-50%, 0) rotate(45deg);
}
.oak-review-price {
  min-width: 168px;
}
@supports (font-stretch: normal) {
  .oak-hero h1 {
    font-stretch: normal;
  }
}
@media (max-width: 700px) {
  .oak-tooltip-wrap::after {
    width: min(280px, 88vw);
  }
}

/* Update 2026-05-06: Sticky-Umschalter im Header und Preislabel Akustikpaneel */
.oak-topbar__inner {
  position: relative;
}
.oak-nav--topbar {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(520px, calc(100% - 300px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-50% - 6px));
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.oak-nav--topbar a {
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding-inline: 12px;
  text-align: center;
  min-height: 42px;
}
body.oak-show-sticky-nav .oak-nav--topbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%);
}
@media (max-width: 840px) {
  .oak-nav--topbar {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 74px;
    width: auto;
    z-index: 49;
    transform: translateY(-8px);
  }
  body.oak-show-sticky-nav .oak-nav--topbar {
    transform: translateY(0);
  }
}
@media (max-width: 560px) {
  .oak-nav--topbar {
    left: 12px;
    right: 12px;
    top: 68px;
  }
  .oak-nav--topbar a {
    min-height: 40px;
    font-size: 14px;
  }
}


.oak-footer {
  max-width: 1180px;
  margin: 34px auto 28px;
  padding: 0 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.oak-footer a { color: var(--muted); text-decoration: none; }
.oak-footer a:hover { color: var(--blue); text-decoration: underline; }
.oak-footer span { margin: 0 7px; color: #c7c7cc; }


/* Update 2026-05-08: Hero-Titel auf exakt zwei Zeilen führen */
.oak-hero__copy {
  min-width: 0;
}
.oak-hero h1.oak-title-two-line {
  max-width: none;
  font-size: clamp(46px, 5.55vw, 96px);
  line-height: .94;
}
.oak-title-two-line .oak-title-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .oak-hero h1.oak-title-two-line {
    font-size: clamp(34px, 7vw, 58px);
  }
}
@media (max-width: 560px) {
  .oak-hero h1.oak-title-two-line {
    font-size: clamp(28px, 8vw, 40px);
  }
}
