:root {
  color-scheme: light;
  --cream: #f7ead8;
  --cream-soft: #fff8ee;
  --ink: #10151d;
  --navy: #153a73;
  --navy-dark: #0e2b59;
  --red: #c62c35;
  --green: #168a4a;
  --line: rgba(21, 58, 115, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 3px solid var(--red);
  background: var(--navy-dark);
  box-shadow: 0 3px 14px rgba(8, 23, 45, 0.18);
}

.site-header__inner {
  display: grid;
  width: min(100% - 48px, 1320px);
  min-height: 62px;
  grid-template-columns: 205px minmax(280px, 570px) auto auto;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  align-self: start;
  width: 200px;
  height: auto;
  margin-top: 5px;
  text-decoration: none;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__tagline {
  margin-top: 2px;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__search {
  display: flex;
  min-width: 0;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 5px;
  background: #fff;
}

.site-header__search input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.site-header__search input:focus {
  outline: 0;
}

.site-header__search:focus-within {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.site-header__search button {
  min-width: 78px;
  border: 0;
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.site-header__search button:hover {
  background: #a9212c;
}

.site-header__search input:disabled {
  color: #7b8290;
  background: #f4f5f7;
  cursor: not-allowed;
}

.site-header__search button:disabled {
  background: #9d5a61;
  cursor: not-allowed;
}

.site-header__client {
  justify-self: end;
  display: inline-flex;
  min-width: 176px;
  height: 46px;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__client:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.site-header__client-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.site-header__client-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header__lia {
  justify-self: end;
  display: inline-flex;
  min-width: 214px;
  height: 46px;
  align-items: center;
  gap: 9px;
  padding: 4px 10px 4px 5px;
  border: 1px solid #55e4c1;
  border-radius: 7px;
  color: #fff;
  background: #128c7e;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__lia:hover {
  color: #fff;
  border-color: #075e54;
  background: #075e54;
}

.site-header__lia-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #eaf5fb;
}

.site-header__lia-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.72);
  transform-origin: left center;
}

.site-header__lia-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.site-header__lia-copy > span {
  margin-bottom: 2px;
  font-size: 10px;
  text-shadow:
    -0.5px -0.5px 0 rgba(0, 0, 0, 0.72),
    0.5px 0.5px 0 rgba(0, 0, 0, 0.72);
}

.site-header__lia-copy strong {
  font-size: 15px;
  text-shadow:
    -0.5px -0.5px 0 rgba(0, 0, 0, 0.72),
    0.5px 0.5px 0 rgba(0, 0, 0, 0.72);
}

.site-header__lia-arrow {
  margin-left: auto;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: var(--cream);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 246, 232, 0.04) 0%,
      rgba(255, 246, 232, 0) 44%,
      rgba(8, 23, 45, 0.06) 100%
    );
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 1480px);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) clamp(28px, 5vw, 80px)
    clamp(34px, 5vw, 68px);
}

.brand {
  width: min(320px, 29vw);
  height: auto;
  object-fit: contain;
}

.hero__copy {
  width: min(100%, 530px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 530px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.hero__copy > p.hero__disclaimer {
  max-width: 470px;
  margin-top: 16px;
  color: #4e5865;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: #fff;
  background: var(--navy);
}

.button--secondary {
  color: var(--navy-dark);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary:hover {
  background: var(--navy-dark);
}

.button--secondary:hover {
  border-color: var(--navy);
  background: #fff;
}

.button:focus-visible,
.site-header__client:focus-visible,
.contact-band a:focus-visible,
.whatsapp:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.client-login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 5%, #f4d7bd 0, transparent 31%),
    var(--cream-soft);
}

.client-login-header {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 3px solid var(--red);
  color: #fff;
  background: var(--navy-dark);
}

.client-login-header__brand {
  display: flex;
  width: 210px;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
}

.client-login-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.client-login-header__brand span {
  margin-top: 2px;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.client-login-header__back {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.client-login-main {
  display: grid;
  min-height: calc(100vh - 70px);
  place-items: center;
  padding: 36px 20px;
}

.client-login-panel {
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid rgba(21, 58, 115, 0.17);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(8, 23, 45, 0.12);
}

.client-login-panel__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-dark);
  background: var(--cream);
}

.client-login-panel__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.client-login-panel__eyebrow {
  margin: 18px 0 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.client-login-panel h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 34px;
  line-height: 1.02;
}

.client-login-panel__intro {
  margin: 16px 0 0;
  color: #526073;
  line-height: 1.45;
}

.client-login-form {
  display: grid;
}

.client-login-form label {
  margin-top: 18px;
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 700;
}

.client-login-form input {
  height: 46px;
  margin-top: 7px;
  border: 1px solid #bcc5d1;
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
}

.client-login-form button {
  width: 100%;
  margin-top: 24px;
  border: 0;
  border-radius: 6px;
  padding: 14px;
  color: #fff;
  background: var(--navy-dark);
  font: inherit;
  font-weight: 700;
}

.client-login-form input:disabled,
.client-login-form button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.client-login-panel__notice {
  margin: 22px 0 0;
  padding-top: 17px;
  border-top: 1px solid #e2e6eb;
  color: #657083;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 190px minmax(180px, 1fr) auto auto;
  }

  .site-header__client {
    min-width: 46px;
    width: 46px;
    padding: 6px;
    overflow: hidden;
  }

  .site-header__client-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

.contact-band {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(28px, calc((100% - 1320px) / 2));
  color: #fff;
  background: var(--navy-dark);
}

.contact-band p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-band a {
  flex: 0 0 auto;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 10;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(14, 43, 89, 0.26);
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.whatsapp:hover {
  background: #0d743c;
  transform: translateY(-2px);
}

.whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 98px);
  }

  .hero__image {
    height: 44%;
    object-position: 70% center;
  }

  .hero::before {
    position: absolute;
    top: 31%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(247, 234, 216, 0) 0%,
      var(--cream) 18%,
      var(--cream) 100%
    );
  }

  .hero::after {
    display: none;
  }

  .hero__inner {
    justify-content: flex-start;
    min-height: calc(100svh - 98px);
    padding: 24px 22px 30px;
  }

  .brand {
    width: min(220px, 58vw);
  }

  .hero__copy {
    margin-top: auto;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  h1 {
    max-width: 390px;
    font-size: 34px;
    line-height: 1.05;
  }

  .hero__copy > p:not(.eyebrow) {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero__actions {
    margin-top: 19px;
  }

  .button {
    flex: 1 1 100%;
    min-height: 46px;
  }

  .contact-band {
    min-height: 98px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 17px 76px 17px 22px;
  }

  .contact-band p {
    font-size: 13px;
  }

  .contact-band a {
    font-size: 13px;
  }

  .whatsapp {
    right: 16px;
    bottom: 21px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 30px;
  }

  .hero__copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .button {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .whatsapp {
    transition: none;
  }
}

.catalog-page {
  min-height: 100vh;
  background: var(--cream-soft);
}

.catalog-main {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: 54px 0 80px;
}

.catalog-intro {
  max-width: 720px;
  padding: 22px 28px;
  border-left: 4px solid var(--red);
  background: transparent;
}

.catalog-intro h1 {
  font-size: 48px;
  line-height: 1.05;
}

.catalog-intro > p:last-child {
  margin: 15px 0 0;
  color: #47515f;
  font-size: 16px;
  line-height: 1.5;
}

.catalog-tools {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(21, 58, 115, 0.25);
}

.catalog-search {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.catalog-search input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(21, 58, 115, 0.34);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.catalog-search input:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(21, 58, 115, 0.14);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-filter {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.catalog-filter[aria-pressed="true"] {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.catalog-results {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid #d8dee7;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(14, 43, 89, 0.06);
}

.catalog-results__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.catalog-results__heading h2,
.catalog-results__heading p {
  margin: 0;
}

.catalog-results__heading h2 {
  font-size: 22px;
}

.catalog-results__heading p {
  color: #5e6671;
  font-size: 14px;
}

.catalog-results__controls {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.catalog-page-size {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5e6671;
  font-size: 13px;
  font-weight: 700;
}

.catalog-page-size select {
  min-width: 66px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid rgba(21, 58, 115, 0.34);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.catalog-page-size select:focus-visible,
.catalog-page-button:focus-visible {
  outline: 3px solid rgba(21, 58, 115, 0.25);
  outline-offset: 2px;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.catalog-page-button {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.catalog-page-button:hover:not(:disabled),
.catalog-page-button[aria-current="page"] {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.catalog-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.catalog-pagination__gap {
  min-width: 20px;
  color: #5e6671;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid #d5dce6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(14, 43, 89, 0.05);
}

.product-card__media {
  display: grid;
  aspect-ratio: 4 / 3;
  margin: -4px -4px 16px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #f7f8fa;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.product-card__category,
.product-card__sku {
  color: #5b6673;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.product-card__category {
  color: var(--red);
  text-transform: uppercase;
}

.product-card__brand {
  margin: 16px 0 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.product-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.product-card__footer strong {
  font-size: 19px;
}

.product-card__footer a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.catalog-empty {
  padding: 54px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.catalog-empty h2,
.catalog-empty p {
  margin: 0;
}

.catalog-empty h2 {
  font-size: 21px;
}

.catalog-empty p {
  margin-top: 8px;
  color: #5e6671;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: #5e6671;
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: 20px 0;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    width: min(100% - 32px, 1240px);
    min-height: 108px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 10px 0;
  }

  .site-header__brand {
    width: 148px;
  }

  .site-header__tagline {
    display: none;
  }

  .site-header__search {
    height: 38px;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-header__search button {
    min-width: 70px;
  }

  .site-header__client {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 5px;
  }

  .site-header__client-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .site-header__lia {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 4px;
    overflow: hidden;
  }

  .site-header__lia-avatar {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .site-header__lia-copy > span {
    font-size: 9px;
  }

  .site-header__lia-copy strong {
    font-size: 12px;
  }

  .site-header__lia-copy,
  .site-header__lia-arrow {
    display: none;
  }

  .site-header__lia-arrow {
    font-size: 22px;
  }

  .catalog-main {
    width: min(100% - 32px, 1240px);
    padding: 34px 0 54px;
  }

  .catalog-intro h1 {
    font-size: 36px;
  }

  .catalog-tools {
    justify-content: flex-start;
    margin-top: 28px;
    padding: 0 0 20px;
  }

  .catalog-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .catalog-filter {
    flex: 0 0 auto;
  }

  .catalog-results__controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .catalog-pagination {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-results {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 370px;
  }
}

.admin-page {
  min-height: 100vh;
  background: #eef1f5;
  color: #111827;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0e2b59;
  border-bottom: 4px solid #c62c35;
}

.admin-header__inner {
  display: flex;
  width: min(100% - 48px, 1240px);
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.admin-brand {
  display: grid;
  width: 225px;
  gap: 3px;
  color: #fff;
  text-decoration: none;
}

.admin-brand img {
  display: block;
  width: 188px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.admin-brand span {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
}

.admin-header__context {
  display: grid;
  justify-items: end;
  color: #fff;
}

.admin-header__context span,
.admin-eyebrow {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-header__context span {
  color: #dce6f7;
}

.admin-header__context strong {
  font-size: 16px;
}

.admin-main {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 42px 0 56px;
}

.admin-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.admin-intro .admin-eyebrow,
.admin-results-head .admin-eyebrow {
  color: #c62c35;
}

.admin-intro h1 {
  margin: 6px 0 10px;
  color: #0e2b59;
  font-size: 38px;
  line-height: 1.05;
}

.admin-intro p:last-child {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.5;
}

.admin-workspace {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d5dce7;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(15, 36, 75, 0.08);
}

.admin-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 24px;
  border-bottom: 1px solid #d5dce7;
  background: #f8fafc;
}

.admin-tab {
  flex: 0 0 auto;
  min-height: 53px;
  padding: 0 17px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #36506f;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.admin-tab:hover,
.admin-tab:focus-visible {
  color: #0e2b59;
  background: #edf2f8;
}

.admin-tab.is-active {
  border-bottom-color: #c62c35;
  color: #0e2b59;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(145px, 170px) minmax(145px, 170px) 105px auto;
  gap: 14px;
  align-items: end;
  padding: 24px;
  border-bottom: 1px solid #d5dce7;
}

.admin-filter {
  display: grid;
  gap: 6px;
}

.admin-filter span {
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.admin-filter input,
.admin-filter select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #b8c6d9;
  border-radius: 5px;
  background: #fff;
  color: #172033;
  font: inherit;
  padding: 0 11px;
}

.admin-filter input:focus,
.admin-filter select:focus {
  outline: 3px solid rgba(30, 93, 174, 0.2);
  border-color: #1e5dae;
}

.admin-filter-actions {
  display: flex;
  gap: 8px;
}

.admin-filter-actions button,
.admin-pagination button {
  min-height: 42px;
  border-radius: 5px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-filter-submit {
  border: 1px solid #0e2b59;
  background: #0e2b59;
  color: #fff;
}

.admin-filter-clear,
.admin-pagination button {
  border: 1px solid #b8c6d9;
  background: #fff;
  color: #0e2b59;
}

.admin-filter-actions button:hover,
.admin-pagination button:hover:not(:disabled) {
  filter: brightness(0.96);
}

.admin-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.admin-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
}

.admin-results-head h2 {
  margin: 4px 0 0;
  color: #0e2b59;
  font-size: 23px;
}

.admin-results-head > p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  text-align: right;
}

.admin-table-wrap {
  overflow: auto;
  border-top: 1px solid #d5dce7;
  border-bottom: 1px solid #d5dce7;
}

.admin-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  max-width: 340px;
  border-bottom: 1px solid #e6ebf2;
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.admin-table th {
  position: sticky;
  top: 0;
  background: #f5f7fa;
  color: #314963;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-table td {
  color: #26364b;
  line-height: 1.4;
}

.admin-table tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.admin-table tbody tr:hover {
  background: #f1f6fb;
}

.admin-table-empty {
  padding: 34px !important;
  color: #64748b !important;
  text-align: center !important;
}

.admin-pagination {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 24px;
}

.admin-pagination span {
  min-width: 76px;
  color: #64748b;
  font-size: 14px;
  text-align: center;
}

.admin-footer {
  margin-top: 0;
}

@media (max-width: 850px) {
  .admin-header__inner,
  .admin-main {
    width: min(100% - 32px, 1240px);
  }

  .admin-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-filter--search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .admin-header__inner {
    min-height: 71px;
  }

  .admin-brand {
    width: 160px;
  }

  .admin-brand img {
    width: 150px;
    height: 34px;
  }

  .admin-brand span,
  .admin-header__context {
    display: none;
  }

  .admin-main {
    padding: 28px 0 38px;
  }

  .admin-intro h1 {
    font-size: 31px;
  }

  .admin-intro p:last-child {
    font-size: 15px;
  }

  .admin-tabs {
    padding: 0 12px;
  }

  .admin-tab {
    padding: 0 13px;
  }

  .admin-filters {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .admin-filter--search {
    grid-column: auto;
  }

  .admin-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .admin-results-head {
    display: block;
    padding: 20px 18px;
  }

  .admin-results-head h2 {
    font-size: 21px;
  }

  .admin-results-head > p {
    margin-top: 8px;
    text-align: left;
  }

  .admin-pagination {
    justify-content: space-between;
    padding: 0 18px;
  }
}

.admin-page {
  min-height: 100vh;
  background: #eef1f5;
  color: #111827;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0e2b59;
  border-bottom: 4px solid #c62c35;
}

.admin-header__inner {
  display: flex;
  width: min(100% - 48px, 1240px);
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.admin-brand {
  display: grid;
  width: 225px;
  gap: 3px;
  color: #fff;
  text-decoration: none;
}

.admin-brand img {
  display: block;
  width: 188px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.admin-brand span {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
}

.admin-header__context {
  display: grid;
  justify-items: end;
  color: #fff;
}

.admin-header__context span,
.admin-eyebrow {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-header__context span {
  color: #dce6f7;
}

.admin-header__context strong {
  font-size: 16px;
}

.admin-main {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 42px 0 56px;
}

.admin-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.admin-intro .admin-eyebrow,
.admin-results-head .admin-eyebrow {
  color: #c62c35;
}

.admin-intro h1 {
  margin: 6px 0 10px;
  color: #0e2b59;
  font-size: 38px;
  line-height: 1.05;
}

.admin-intro p:last-child {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.5;
}

.admin-workspace {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d5dce7;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(15, 36, 75, 0.08);
}

.admin-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 24px;
  border-bottom: 1px solid #d5dce7;
  background: #f8fafc;
}

.admin-tab {
  flex: 0 0 auto;
  min-height: 53px;
  padding: 0 17px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #36506f;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.admin-tab:hover,
.admin-tab:focus-visible {
  color: #0e2b59;
  background: #edf2f8;
}

.admin-tab.is-active {
  border-bottom-color: #c62c35;
  color: #0e2b59;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(145px, 170px) minmax(145px, 170px) 105px auto;
  gap: 14px;
  align-items: end;
  padding: 24px;
  border-bottom: 1px solid #d5dce7;
}

.admin-filter {
  display: grid;
  gap: 6px;
}

.admin-filter span {
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.admin-filter input,
.admin-filter select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #b8c6d9;
  border-radius: 5px;
  background: #fff;
  color: #172033;
  font: inherit;
  padding: 0 11px;
}

.admin-filter input:focus,
.admin-filter select:focus {
  outline: 3px solid rgba(30, 93, 174, 0.2);
  border-color: #1e5dae;
}

.admin-filter-actions {
  display: flex;
  gap: 8px;
}

.admin-filter-actions button,
.admin-pagination button {
  min-height: 42px;
  border-radius: 5px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-filter-submit {
  border: 1px solid #0e2b59;
  background: #0e2b59;
  color: #fff;
}

.admin-filter-clear,
.admin-pagination button {
  border: 1px solid #b8c6d9;
  background: #fff;
  color: #0e2b59;
}

.admin-filter-actions button:hover,
.admin-pagination button:hover:not(:disabled) {
  filter: brightness(0.96);
}

.admin-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.admin-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
}

.admin-results-head h2 {
  margin: 4px 0 0;
  color: #0e2b59;
  font-size: 23px;
}

.admin-results-head > p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  text-align: right;
}

.admin-table-wrap {
  overflow: auto;
  border-top: 1px solid #d5dce7;
  border-bottom: 1px solid #d5dce7;
}

.admin-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  max-width: 340px;
  border-bottom: 1px solid #e6ebf2;
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.admin-table th {
  position: sticky;
  top: 0;
  background: #f5f7fa;
  color: #314963;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-table td {
  color: #26364b;
  line-height: 1.4;
}

.admin-table tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.admin-table tbody tr:hover {
  background: #f1f6fb;
}

.admin-table-empty {
  padding: 34px !important;
  color: #64748b !important;
  text-align: center !important;
}

.admin-pagination {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 24px;
}

.admin-pagination span {
  min-width: 76px;
  color: #64748b;
  font-size: 14px;
  text-align: center;
}

.admin-footer {
  margin-top: 0;
}

@media (max-width: 850px) {
  .admin-header__inner,
  .admin-main {
    width: min(100% - 32px, 1240px);
  }

  .admin-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-filter--search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .admin-header__inner {
    min-height: 71px;
  }

  .admin-brand {
    width: 160px;
  }

  .admin-brand img {
    width: 150px;
    height: 34px;
  }

  .admin-brand span,
  .admin-header__context {
    display: none;
  }

  .admin-main {
    padding: 28px 0 38px;
  }

  .admin-intro h1 {
    font-size: 31px;
  }

  .admin-intro p:last-child {
    font-size: 15px;
  }

  .admin-tabs {
    padding: 0 12px;
  }

  .admin-tab {
    padding: 0 13px;
  }

  .admin-filters {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .admin-filter--search {
    grid-column: auto;
  }

  .admin-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .admin-results-head {
    display: block;
    padding: 20px 18px;
  }

  .admin-results-head h2 {
    font-size: 21px;
  }

  .admin-results-head > p {
    margin-top: 8px;
    text-align: left;
  }

  .admin-pagination {
    justify-content: space-between;
    padding: 0 18px;
  }
}
