:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #edf0f2;
  color: #172129;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  padding: 24px 14px;
  background:
    linear-gradient(180deg, #26333d 0, #26333d 168px, #edf0f2 168px);
}

.shell {
  width: min(720px, 100%);
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid #d5dadd;
  border-radius: 18px;
  background: #f8f9fa;
  box-shadow: 0 18px 48px rgb(16 26 34 / 18%);
}

.shell--message {
  padding: 38px;
  text-align: center;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: #f2f4f5;
  border-bottom: 1px solid #dfe3e5;
}

.brand-logo {
  display: block;
  width: min(190px, 48vw);
  height: auto;
}

.language-links {
  display: flex;
  gap: 6px;
}

.language-links a {
  display: inline-flex;
  min-width: 42px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdc5c9;
  border-radius: 9px;
  color: #26333d;
  font-weight: 700;
  text-decoration: none;
}

.language-links a[aria-current="page"] {
  border-color: #d9aa23;
  background: #f4c43c;
  color: #172129;
}

.card-body {
  padding: 26px;
}

.inventory-number {
  margin: 0 0 6px;
  color: #58656e;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  line-height: 1.15;
}

.photo-frame {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 22px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d8dde0;
  border-radius: 14px;
  background: #e7eaec;
  color: #66737b;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.facts {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  margin: 0;
  border-top: 1px solid #dfe3e5;
}

.facts dt,
.facts dd {
  margin: 0;
  padding: 13px 4px;
  border-bottom: 1px solid #dfe3e5;
}

.facts dt {
  color: #5b6870;
  font-weight: 700;
}

.facts dd {
  overflow-wrap: anywhere;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.status::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #498a56;
  content: "";
}

.privacy-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 4px solid #d9aa23;
  background: #fff8df;
  color: #455159;
  font-size: 0.94rem;
}

@media (max-width: 520px) {
  body {
    padding: 12px 8px;
  }

  .shell {
    margin-top: 12px;
    border-radius: 13px;
  }

  .card-header,
  .card-body,
  .shell--message {
    padding: 20px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .facts dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .facts dd {
    padding-top: 2px;
  }
}
