* {
  box-sizing: border-box;
}

body.ofcp-body {
  margin: 0;
  min-height: 100vh;
  background: #f3f5f8;
  color: #14213d;
  font-family: Roboto, Arial, sans-serif;
}

.ofcp-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 24px;
}

.ofcp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.ofcp-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.ofcp-brand img,
.ofcp-brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #dce2ea;
  object-fit: contain;
  padding: 8px;
  flex: 0 0 auto;
}

.ofcp-brand-mark {
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: #1f6feb;
  font-size: 34px;
  font-weight: 800;
}

.ofcp-brand p,
.ofcp-brand h1 {
  margin: 0;
}

.ofcp-brand p {
  color: #667085;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.ofcp-brand h1 {
  font-size: 30px;
  line-height: 1.15;
}

.ofcp-clock {
  color: #667085;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.ofcp-panel,
.ofcp-results {
  background: #ffffff;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 33, 61, 0.08);
}

.ofcp-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(240px, 1fr) minmax(320px, 1.6fr);
  gap: 16px;
  padding: 18px;
  margin-bottom: 22px;
}

.ofcp-field label {
  display: block;
  margin-bottom: 8px;
  color: #475467;
  font-size: 15px;
  font-weight: 700;
}

.ofcp-field select,
.ofcp-field input {
  width: 100%;
  height: 58px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  padding: 0 16px;
}

.ofcp-field input:focus,
.ofcp-field select:focus,
.ofcp-brand-select:focus,
.ofcp-clear:focus {
  outline: 3px solid rgba(31, 111, 235, 0.24);
  border-color: #1f6feb;
}

.ofcp-section {
  margin-bottom: 22px;
}

.ofcp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ofcp-section-head h2,
.ofcp-filter-label {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.ofcp-section-head span {
  color: #667085;
  font-weight: 700;
}

.ofcp-clear {
  height: 44px;
  border: 1px solid #c2413b;
  border-radius: 8px;
  background: #c2413b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 0 18px;
}

.ofcp-clear:hover {
  background: #a9322d;
  border-color: #a9322d;
}

.ofcp-filter-actions {
  display: flex;
  justify-content: flex-end;
  margin: -10px 0 22px;
}

.ofcp-brand-select {
  width: 100%;
  height: 58px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  padding: 0 16px;
}

.ofcp-brand-select:focus {
  outline: 3px solid rgba(31, 111, 235, 0.24);
  border-color: #1f6feb;
}

.ofcp-results {
  padding: 18px;
}

.ofcp-selected-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -2px 0 16px;
  padding: 12px 16px;
  border-left: 5px solid #1f6feb;
  background: #eef5ff;
  color: #14213d;
}

.ofcp-selected-filter-label {
  color: #475467;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.ofcp-selected-filter strong {
  color: #1f6feb;
  font-size: 22px;
}

.ofcp-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.ofcp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 16px;
}

.ofcp-card h3 {
  width: 100%;
  margin: 0;
  color: #111827;
  font-size: 19px;
  line-height: 1.2;
  text-align: center;
}

.ofcp-price {
  align-self: center;
  color: #067647;
  font-size: 26px;
  font-weight: 900;
  white-space: nowrap;
}

.ofcp-empty,
.ofcp-loading {
  grid-column: 1 / -1;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #667085;
  font-size: 18px;
  font-weight: 700;
  padding: 28px;
  text-align: center;
}

@media (max-width: 760px) {
  .ofcp-shell {
    padding: 16px;
  }

  .ofcp-header,
  .ofcp-panel {
    grid-template-columns: 1fr;
  }

  .ofcp-header {
    align-items: flex-start;
  }

  .ofcp-panel {
    display: grid;
  }

  .ofcp-brand h1 {
    font-size: 24px;
  }

  .ofcp-list {
    grid-template-columns: 1fr;
  }

  .ofcp-card {
    align-items: stretch;
  }
}
