:root {
  --bg: #f4f1eb;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #fbfaf7;
  --panel-3: #efede6;
  --text: #111111;
  --muted: #5d626b;
  --soft: #22262c;
  --accent: #c61f25;
  --accent-2: #a5181d;
  --accent-3: #111111;
  --success: #0f8f59;
  --line: rgba(17, 17, 17, 0.09);
  --line-strong: rgba(17, 17, 17, 0.18);
  --shadow: 0 18px 50px rgba(14, 14, 14, 0.08);
  --radius: 22px;
  --radius-lg: 32px;
  --container: min(1080px, calc(100vw - 30px));
  --header-height: 184px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #faf8f3 0%, #f4f1eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.012), rgba(0, 0, 0, 0.012)),
    repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.01) 0,
      rgba(0, 0, 0, 0.01) 1px,
      transparent 1px,
      transparent 9px
    );
  mix-blend-mode: multiply;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

#app,
#admin-app {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: none;
  background: #050505;
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0.5rem 0 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
}

.utility-links,
.language-switch {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.utility-separator {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  line-height: 1;
}

.site-header__search {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: 0.18s ease;
}

.site-header__search:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-header__search svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-links a {
  padding: 0;
  opacity: 1;
  color: rgba(255, 255, 255, 0.82);
}

.utility-links a:hover {
  color: #fff;
}

.language-switch__btn,
.icon-button,
.button,
.pagination__button,
.filter-link,
.admin-tab,
.admin-action,
.segment-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.language-switch__btn {
  padding: 0.35rem 0.2rem;
  border-radius: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0;
  text-transform: none;
  transition: 0.18s ease;
}

.language-switch__btn.is-active {
  background: transparent;
  color: #fff;
  border-color: transparent;
}

.language-switch__btn--header {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  column-gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 1;
}

.language-switch__btn--header:hover {
  color: #fff;
}

.language-switch__flag {
  display: grid;
  place-items: center;
  width: 2.05em;
  height: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.language-switch__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.1rem;
  line-height: 1;
}

.language-switch__caret {
  display: inline-flex;
  align-items: center;
  min-height: 1.1rem;
  font-size: 0.64rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
}

.site-header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.75rem;
  min-height: 150px;
}

.site-header .brand {
  min-width: 0;
  gap: 0;
}

.site-header .brand__logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.site-header .brand__text {
  display: none;
}

.site-header .icon-button {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  flex: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__mark {
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  font-size: 1.52rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__tag {
  display: block;
  color: var(--accent-2);
  font-size: 0.68rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.site-nav {
  flex: 1;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.28rem;
  min-height: 0;
  padding: 0 0 0.7rem;
  border-radius: 0;
  border-bottom: 4px solid transparent;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.97rem;
  font-weight: 700;
  transition: 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #fff;
  border-color: var(--accent);
  background: transparent;
}

.site-nav__caret {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.64rem;
  line-height: 1;
}

.site-nav__item--menu:hover .site-nav__submenu,
.site-nav__item--menu:focus-within .site-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  min-width: min(620px, 78vw);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
  z-index: 20;
}

.site-nav__item--menu:nth-last-child(-n + 2) .site-nav__submenu {
  left: auto;
  right: 0;
}

.site-nav__submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.18s ease;
}

.site-nav__submenu-link:hover,
.site-nav__submenu-link.is-active {
  color: #fff;
  border-color: rgba(198, 31, 37, 0.45);
  background: rgba(198, 31, 37, 0.18);
}

.site-nav__submenu-title {
  font-size: 0.84rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav__submenu-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  flex: none;
}

.watch-list {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  padding: 0 0 0.65rem;
  border-bottom: 3px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.97rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.18s ease;
}

.icon-button:hover,
.button:hover,
.pagination__button:hover,
.filter-link:hover,
.admin-tab:hover,
.admin-action:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.menu-toggle {
  display: none;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
  background: rgba(245, 242, 236, 0.82);
}

.mobile-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(92vw, 380px);
  padding: 1.3rem;
  transform: translateX(102%);
  transition: 0.22s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 245, 239, 0.99));
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.nav-open .mobile-drawer {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

.mobile-drawer__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-drawer__link {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.mobile-drawer__link.is-active {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.mobile-drawer__sublinks {
  display: grid;
  gap: 0.4rem;
  margin-left: 0.6rem;
  padding-left: 0.65rem;
  border-left: 1px solid var(--line);
}

.mobile-drawer__sublink {
  padding: 0.78rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-drawer__sublink.is-active {
  background: rgba(198, 31, 37, 0.18);
  color: #fff;
  border-color: rgba(198, 31, 37, 0.45);
}

.site-main {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.hero,
.page-hero,
.product-detail,
.catalog,
.admin-shell {
  width: var(--container);
  margin: 1.5rem auto 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1.4rem;
  align-items: stretch;
}

.hero__copy,
.hero__visual,
.page-hero__copy,
.page-hero__visual,
.panel-card,
.category-card,
.product-card,
.detail-panel,
.admin-card,
.static-card,
.cookie-banner,
.trust-card,
.event-card,
.cert-card,
.sidebar-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero__copy {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  padding: clamp(1.4rem, 2.8vw, 2.4rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.85rem;
}

.hero__copy::before,
.page-hero__copy::before,
.panel-card::before,
.category-card::before,
.product-card::before,
.detail-panel::before,
.static-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(255, 255, 255, 0.06), transparent 45%),
    radial-gradient(700px 400px at 100% 0%, rgba(255, 138, 42, 0.08), transparent 50%);
  opacity: 0.9;
}

.hero__eyebrow,
.page-hero__eyebrow,
.section__eyebrow,
.panel-card__eyebrow,
.category-card__eyebrow,
.product-card__category,
.static-card__eyebrow,
.admin-section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero__tagline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero__title,
.page-hero__title,
.section__title,
.panel-card__title,
.category-card__title,
.product-card__title,
.static-card__title,
.detail-title,
.admin-title {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.94;
}

.hero__title {
  max-width: 11ch;
  font-size: clamp(3rem, 6.4vw, 6.9rem);
}

.hero__description,
.page-hero__summary,
.section__summary,
.panel-card__copy,
.category-card__copy,
.product-card__summary,
.detail-copy,
.static-card__copy,
.admin-note,
.admin-help {
  color: var(--muted);
  line-height: 1.7;
}

.hero__description {
  max-width: 56ch;
  font-size: 1.02rem;
}

.hero__actions,
.page-hero__actions,
.detail-actions,
.section__actions,
.admin-toolbar__actions,
.admin-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button,
.pagination__button,
.filter-link,
.admin-action,
.segment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.18s ease;
}

.button--primary,
.pagination__button.is-active,
.admin-action.is-primary,
.segment-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #ff6530);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.82);
}

.hero__controls {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero__dots {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero__dot {
  width: 1.9rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 17, 17, 0.15);
  cursor: pointer;
  transition: 0.18s ease;
}

.hero__dot.is-active {
  background: var(--accent);
}

.hero__arrows {
  display: flex;
  gap: 0.5rem;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.hero__visual-inner {
  position: absolute;
  inset: 0;
  padding: 1rem;
}

.hero__visual-meta {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.hero__copy-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__rule {
  width: min(86%, 960px);
  height: 4px;
  margin: 1.15rem 0 1rem;
  background: linear-gradient(90deg, #781017 0%, var(--accent) 50%, #781017 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.hero--immersive {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: clamp(720px, 82vh, 980px);
  background: #050505;
}

.hero--immersive .hero__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  z-index: 0;
}

.hero--immersive .hero__visual-inner {
  inset: 0;
  padding: 0;
}

.hero--immersive .art-shell {
  border-radius: 0;
}

.hero--immersive .art-shell__image {
  object-position: center center;
}

.hero--immersive .art-shell__shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 12%, rgba(0, 0, 0, 0.14) 34%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.56));
}

.hero--immersive .art-shell__caption {
  display: none;
}

.hero--immersive .hero__copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: min(72vw, 1280px);
  margin-left: auto;
  padding: clamp(6rem, 14vh, 11rem) clamp(2rem, 4.5vw, 4rem) clamp(3rem, 5vh, 4.5rem) 0;
  border: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero--immersive .hero__copy::before {
  display: none;
}

.hero--immersive .hero__eyebrow {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.hero--immersive .hero__tagline {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.hero--immersive .hero__title {
  max-width: 13ch;
  font-size: clamp(3.6rem, 5vw, 6.5rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.hero--immersive .hero__description {
  max-width: 62ch;
  font-size: 1.03rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.54);
}

.hero--immersive .hero__actions,
.hero--immersive .hero__controls {
  display: none;
}

.art-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.art-shell__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.art-shell__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.08), rgba(6, 8, 12, 0.68)),
    radial-gradient(900px 500px at 20% 10%, rgba(255, 255, 255, 0.12), transparent 58%);
  pointer-events: none;
}

.art-shell--card .art-shell__shade {
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.02), rgba(6, 8, 12, 0.14)),
    radial-gradient(900px 500px at 20% 10%, rgba(255, 255, 255, 0.08), transparent 58%);
}

.art-shell--page .art-shell__shade {
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.08), rgba(6, 8, 12, 0.6)),
    radial-gradient(900px 500px at 20% 10%, rgba(255, 255, 255, 0.1), transparent 58%);
}

.art-shell--card .art-shell__image {
  object-fit: contain;
  padding: 1rem;
  background:
    radial-gradient(500px 260px at 12% 0%, rgba(255, 255, 255, 0.11), transparent 50%),
    radial-gradient(380px 220px at 80% 20%, rgba(255, 138, 42, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.art-shell--page .art-shell__image,
.art-shell--hero .art-shell__image {
  object-fit: cover;
}

.section {
  width: var(--container);
  margin: 1.7rem auto 0;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.section__summary {
  max-width: 72ch;
  margin-top: 0.35rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panel-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: 0.2s ease;
}

.panel-card--feature {
  min-height: 380px;
}

.panel-card:hover,
.category-card:hover,
.product-card:hover,
.static-card:hover,
.trust-card:hover,
.event-card:hover,
.cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.panel-card__title {
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  max-width: 12ch;
}

.panel-card__copy {
  max-width: 36ch;
}

.panel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid var(--line);
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 230px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
  transition: 0.2s ease;
}

.category-card__title {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  max-width: 12ch;
}

.category-card__copy {
  max-width: 34ch;
}

.category-card__footer,
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: 0.2s ease;
}

.product-card__art {
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(500px 260px at 12% 0%, rgba(255, 255, 255, 0.11), transparent 50%),
    radial-gradient(380px 220px at 80% 20%, rgba(255, 138, 42, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.product-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1rem;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.64rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.product-card__title {
  font-size: 1rem;
  line-height: 1.4;
}

.product-card__category {
  margin-top: 0.2rem;
}

.product-card__summary {
  margin: 0;
  font-size: 0.93rem;
}

.product-card__specs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.banner-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.banner-card__title {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.95;
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  max-width: 12ch;
}

.banner-card__copy {
  color: var(--muted);
  line-height: 1.7;
  max-width: 54ch;
}

.banner-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-grid,
.event-grid,
.cert-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-card,
.event-card,
.cert-card,
.static-card,
.sidebar-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 1rem;
}

.trust-card__title,
.event-card__title,
.cert-card__title,
.static-card__title {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 1.15rem;
}

.trust-card__copy,
.event-card__copy,
.cert-card__copy,
.static-card__copy {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
}

.trust-card__image,
.cert-card__image {
  width: 100%;
  max-height: 92px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.event-card__meta {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.section--company {
  margin-bottom: 2rem;
}

.site-footer {
  width: var(--container);
  margin: 2rem auto 0;
  padding: 2rem 0 4rem;
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col__title {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-link {
  color: var(--muted);
}

.footer-link:hover {
  color: #fff;
}

.footer-note {
  margin-top: 1.3rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.88rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 1.4rem;
  align-items: stretch;
}

.page-hero__copy {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
}

.page-hero__title {
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  max-width: 11ch;
}

.page-hero__summary {
  max-width: 64ch;
}

.page-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.breadcrumb a:hover {
  color: #fff;
}

.catalog {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.catalog__sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.catalog__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sidebar-card__title {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.filter-link {
  width: 100%;
  justify-content: space-between;
  border-radius: 14px;
  padding: 0.76rem 0.85rem;
  text-align: left;
  color: var(--muted);
  cursor: pointer;
}

.filter-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-field,
.select-field,
.json-editor,
.admin-input,
.admin-textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  outline: none;
}

.search-field::placeholder,
.admin-input::placeholder,
.admin-textarea::placeholder {
  color: rgba(238, 242, 247, 0.42);
}

.catalog__count {
  color: var(--muted);
  font-size: 0.92rem;
}

.select-field {
  width: auto;
}

.pagination {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination__button {
  min-width: 42px;
  border-radius: 999px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  align-items: start;
}

.detail-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.detail-title {
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  max-width: 11ch;
}

.detail-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.detail-copy {
  max-width: 64ch;
  margin-top: 0.8rem;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.detail-spec {
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.detail-spec__label {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.detail-spec__value {
  margin-top: 0.35rem;
  color: var(--text);
  line-height: 1.5;
}

.detail-section {
  margin-top: 1rem;
}

.detail-section__title {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-size: 0.78rem;
}

.detail-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.detail-related {
  margin-top: 1rem;
}

.detail-related__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border-radius: 24px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__title {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.cookie-banner__copy {
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.static-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 1rem;
}

.static-card__title {
  font-size: 1.1rem;
}

.static-card__copy {
  margin-top: 0.45rem;
}

.static-timeline {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.timeline-item {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-item__title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-size: 0.75rem;
}

.timeline-item__copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-brand {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.admin-brand__title {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.45rem;
}

.admin-brand__copy {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.admin-tab {
  width: 100%;
  justify-content: space-between;
  border-radius: 16px;
  padding: 0.82rem 0.9rem;
  text-align: left;
  cursor: pointer;
}

.admin-tab.is-active {
  background: var(--accent);
  border-color: transparent;
}

.admin-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-toolbar__group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.admin-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.admin-card__title {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.admin-card__copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-card__actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-editor {
  display: grid;
  gap: 1rem;
}

.admin-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-field label {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.admin-textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-help {
  margin: 0;
}

.admin-preview {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-preview__card {
  padding: 0.95rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.admin-preview__title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-size: 0.75rem;
}

.admin-preview__copy {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.empty-state {
  padding: 1.2rem;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.admin-page-shell {
  background: #f4f1eb;
}

.admin-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.admin-header .brand__text {
  display: flex;
}

.admin-header .site-header__inner {
  gap: 0.35rem;
  padding: 0.4rem 0 0.55rem;
}

.admin-header .site-header__top {
  font-size: 0.74rem;
}

.admin-header .brand__logo {
  width: 58px;
  height: 58px;
}

.admin-header .brand__mark {
  font-size: 1.18rem;
}

.admin-header .brand__tag {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.admin-header__main {
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 58px;
  gap: 1.2rem;
  align-items: center;
}

.admin-header__copy {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  font-size: 0.9rem;
}

.admin-shell {
  width: min(1220px, calc(100vw - 32px));
  height: calc(100vh - 126px);
  min-height: 560px;
  margin: 18px auto;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
}

.admin-sidebar {
  position: static;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.admin-main {
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.admin-brand,
.admin-card {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #111;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.admin-brand {
  padding: 22px;
  border-top: 5px solid #d80000;
}

.admin-brand__title,
.admin-card__title {
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-brand__copy,
.admin-card__copy,
.admin-help,
.admin-preview__copy {
  color: rgba(17, 17, 17, 0.62);
}

.admin-card--dark {
  background: #050505;
  border-color: #050505;
  color: #fff;
}

.admin-card--dark .admin-card__copy {
  color: rgba(255, 255, 255, 0.58);
}

.admin-status {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0;
  text-transform: none;
}

.admin-status--editing,
.admin-status--uploading {
  border-color: rgba(216, 0, 0, 0.7);
  color: #fff;
}

.admin-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
}

.admin-tab.is-active {
  background: #d80000;
  color: #fff;
}

.admin-editor-card {
  min-height: 100%;
  padding: 22px;
}

.admin-card__header {
  align-items: center;
}

.admin-card__actions {
  justify-content: flex-end;
}

.admin-action {
  min-height: 38px;
  padding: 0.62rem 0.8rem;
  border-radius: 0;
  border-color: rgba(17, 17, 17, 0.16);
  background: #f5f5f5;
  color: #111;
}

.admin-action.is-primary {
  background: #d80000;
  color: #fff;
}

.admin-list-editor {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 0;
}

.admin-item-browser {
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 270px);
  overflow: auto;
  padding-right: 4px;
}

.admin-item-button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 9px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  color: #111;
  text-align: left;
  cursor: pointer;
}

.admin-item-button:hover,
.admin-item-button.is-active {
  border-color: #d80000;
  box-shadow: inset 4px 0 0 #d80000;
}

.admin-item-button strong,
.admin-item-button small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-item-button small {
  margin-top: 4px;
  color: rgba(17, 17, 17, 0.55);
}

.admin-item-thumb {
  width: 58px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  color: #fff;
  font-weight: 700;
}

.admin-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-item-thumb--empty {
  background: #d80000;
}

.admin-form-panel {
  min-width: 0;
  max-height: calc(100vh - 270px);
  overflow-y: auto;
  padding-right: 4px;
}

.admin-current-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.admin-current-item .admin-item-thumb {
  width: 96px;
  height: 70px;
}

.admin-current-item__eyebrow {
  margin: 0 0 5px;
  color: #d80000;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-current-item__title {
  margin: 0;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-field,
.admin-switch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-field--wide,
.admin-fieldset,
.admin-switch,
.admin-message-card {
  grid-column: 1 / -1;
}

.admin-field span,
.admin-field__label,
.admin-switch span {
  color: #d80000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-field small {
  margin-left: 0.3rem;
  color: rgba(17, 17, 17, 0.42);
  font-weight: 400;
  text-transform: none;
}

.admin-input,
.admin-textarea {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  color: #111;
  box-shadow: inset 0 1px 0 rgba(17, 17, 17, 0.04);
}

.admin-input:focus,
.admin-textarea:focus {
  border-color: #d80000;
  box-shadow: 0 0 0 3px rgba(216, 0, 0, 0.12);
}

.admin-input::placeholder,
.admin-textarea::placeholder {
  color: rgba(17, 17, 17, 0.36);
}

.admin-textarea {
  min-height: 132px;
}

.admin-locale-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-fieldset {
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 0;
  background: #fafafa;
}

.admin-fieldset summary {
  cursor: pointer;
  padding: 13px 15px;
  color: #111;
  font-weight: 700;
  list-style: none;
}

.admin-fieldset summary::-webkit-details-marker {
  display: none;
}

.admin-fieldset__body,
.admin-nested-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 15px 15px;
}

.admin-fieldset__actions {
  padding: 0 15px 15px;
}

.admin-nested-item {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff;
}

.admin-nested-item__title {
  grid-column: 1 / -1;
  margin: 0;
  color: #111;
  font-weight: 700;
}

.admin-image-editor {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.admin-image-preview {
  min-height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
}

.admin-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-image-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-upload-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.admin-upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-switch {
  flex-direction: row;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fafafa;
}

.admin-switch input {
  width: 18px;
  height: 18px;
  accent-color: #d80000;
}

.admin-note {
  margin: 0;
}

.admin-note--error {
  color: #b00020;
}

.admin-note--success {
  color: #0a7a3d;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .hero,
  .page-hero,
  .product-detail,
  .catalog,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .catalog__sidebar,
  .admin-sidebar {
    position: relative;
    top: auto;
  }

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

  .admin-shell {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .admin-sidebar,
  .admin-main,
  .admin-form-panel,
  .admin-item-browser {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .admin-item-browser {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

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

@media (max-width: 920px) {
  .site-header__main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    min-height: 0;
  }

  .site-nav {
    display: none;
  }

  .watch-list {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .site-actions .button,
  .site-actions .icon-button {
    display: none;
  }

  .site-header .brand__logo {
    width: 112px;
    height: 112px;
  }

  .admin-header .brand__logo {
    width: 52px;
    height: 52px;
  }

  .admin-header__main {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 52px;
    gap: 0.8rem;
  }

  .hero--immersive {
    min-height: clamp(560px, 72vh, 760px);
  }

  .hero--immersive .hero__copy {
    width: min(78vw, 720px);
    padding: clamp(4rem, 11vh, 7rem) clamp(1.4rem, 4vw, 2rem) clamp(2rem, 4vh, 3rem) 0;
  }

  .hero--immersive .hero__title {
    font-size: clamp(3rem, 8vw, 4.8rem);
  }

  .hero--immersive .hero__description {
    max-width: 44ch;
    font-size: 0.98rem;
  }

  .page-hero__visual {
    min-height: 300px;
  }

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

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

  .detail-specs,
  .admin-field-grid,
  .admin-form,
  .admin-fieldset__body,
  .admin-nested-list,
  .admin-nested-item,
  .admin-locale-grid,
  .admin-image-editor {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header__top {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
    padding-right: 0.2rem;
  }

  .site-header__search {
    width: 1rem;
    height: 1rem;
  }

  .site-header__search svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .utility-links {
    gap: 0.35rem;
  }

  .utility-links,
  .language-switch {
    font-size: 0.72rem;
  }

  .site-header__main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    min-height: 0;
  }

  .site-header .brand__logo {
    width: 84px;
    height: 84px;
  }

  .admin-header .brand__logo {
    width: 44px;
    height: 44px;
  }

  .admin-header__main {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .admin-header__copy {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .admin-shell {
    width: min(100% - 20px, 1220px);
    margin: 18px auto;
  }

  .admin-editor-card,
  .admin-brand,
  .admin-card {
    padding: 14px;
  }

  .admin-card__header,
  .admin-current-item {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-card__actions,
  .admin-toolbar__group {
    justify-content: stretch;
  }

  .admin-card__actions > *,
  .admin-toolbar__group > * {
    width: 100%;
  }

  .hero--immersive {
    min-height: 540px;
  }

  .hero--immersive .hero__copy {
    width: min(88vw, 560px);
    padding: 3.25rem 1rem 2rem 0;
  }

  .hero--immersive .hero__eyebrow,
  .hero--immersive .hero__tagline {
    font-size: 0.8rem;
  }

  .hero--immersive .hero__title {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  .hero--immersive .hero__description {
    max-width: 32ch;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero__title,
  .page-hero__title,
  .detail-title {
    max-width: 100%;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .site-footer__grid,
  .trust-grid,
  .event-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .button {
    width: 100%;
  }
}

/* Official Lancesafe homepage clone layer */
:root {
  --accent: #f5002f;
  --accent-2: #ed1c24;
  --container: min(1080px, calc(100vw - 30px));
}

html,
body {
  background: #fff;
}

body {
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #5b5b5b;
  font-size: 100%;
  line-height: 1.6;
}

body::before {
  display: none;
}

.site-main {
  padding-bottom: 0;
  background: #fff;
}

.site-header {
  background: #050505;
  box-shadow: none;
}

.site-header__inner {
  padding: 0;
  gap: 0;
}

.site-header__top {
  min-height: 20px;
  font-size: 0.78rem;
  font-weight: 400;
}

.site-header__main {
  min-height: 115px;
  gap: 1.4rem;
}

.site-header .brand__logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  padding: 10px 0;
}

.site-nav__list {
  gap: 18px;
  flex-wrap: nowrap;
}

.site-nav__link,
.watch-list {
  font-size: 0.9rem;
  line-height: 1;
  padding-bottom: 0.52rem;
  white-space: nowrap;
}

.site-nav__link-text,
.utility-links a,
.language-switch__btn--header,
.watch-list {
  white-space: nowrap;
}

.utility-links {
  flex-wrap: nowrap;
}

.language-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-menu::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: max(100%, 160px);
  height: 10px;
}

.language-menu__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 60;
  min-width: 160px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: #020202;
  border: 1px solid #020202;
  color: #f1f1f1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-menu.is-open .language-menu__dropdown,
.language-menu:hover .language-menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu__dropdown button {
  appearance: none;
  display: grid;
  grid-template-columns: 2.05em 1fr;
  align-items: center;
  column-gap: 0.45rem;
  width: 100%;
  padding: 10px 20px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  font-size: 0.85em;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
}

.language-menu__dropdown button:hover,
.language-menu__dropdown button.is-active {
  color: #fff;
}

.site-nav__link.is-active,
.site-nav__link:hover {
  border-bottom-color: #f5002f;
}

.watch-list {
  border-bottom-color: rgba(255, 255, 255, 0.34);
}

.site-nav__item--menu {
  position: relative;
}

.site-nav__item--menu::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 0;
  margin-left: -8px;
  border: 8px solid transparent;
  border-bottom-color: #020202;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.site-nav__item--menu:hover::after,
.site-nav__item--menu:focus-within::after {
  opacity: 1;
}

.site-nav__submenu {
  top: calc(100% + 2px);
  left: -15px;
  min-width: 260px;
  max-width: 360px;
  display: block;
  padding: 20px;
  border: 1px solid #020202;
  border-radius: 0;
  background: #020202;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.28);
  transform: none;
}

.site-nav__submenu-link {
  display: block;
  min-height: 0;
  margin: 0 10px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(236, 236, 236, 0.22);
  border-radius: 0;
  background: transparent;
  color: #f1f1f1;
  line-height: 1.3;
}

.site-nav__submenu-link:last-child {
  border-bottom: 0;
}

.site-nav__submenu-link:hover,
.site-nav__submenu-link.is-active {
  color: #fff;
  border-color: rgba(236, 236, 236, 0.22);
  background: transparent;
}

.site-nav__submenu-title {
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: 0;
}

.official-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.45rem;
  padding: 0.58rem 0.95rem;
  border: 2px solid currentColor;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transition: 0.16s ease;
}

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

.official-button--primary {
  border-color: #f5002f;
  background: #f5002f;
}

.official-button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
}

.official-button--outline:hover {
  color: #fff;
  border-color: #fff;
}

.official-button--underline {
  min-height: 0;
  padding: 0.1rem 0;
  border-width: 0 0 2px;
  background: transparent;
}

.official-button--full {
  width: 100%;
}

.official-eyebrow {
  margin: 0 0 0.4rem;
  color: #ed1c24;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.25;
}

.official-divider {
  display: block;
  width: min(100%, 685px);
  height: 4px;
  margin: 1.05rem 0 1rem;
  background: rgb(216, 0, 0);
}

.official-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: transparent;
}

.official-hero::before,
.official-hero::after,
.official-hero__media::before,
.official-hero__media::after,
.official-hero__content::before,
.official-hero__content::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
}

.official-hero__media,
.official-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.official-hero__media img {
  object-fit: cover;
  object-position: 57% 49%;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal;
}

.official-hero__content {
  position: relative;
  z-index: 1;
  min-height: 850px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 10.6rem;
}

.official-hero__text {
  width: 70%;
  padding: 0 10px;
  color: #fff;
}

.official-hero__kicker {
  margin: 0 0 1.95rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.official-hero h1 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 4.15vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.official-hero p {
  max-width: 74ch;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.official-entry-section {
  position: relative;
  z-index: 2;
  background: transparent;
  margin-top: -140px;
}

.official-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

@media (min-width: 921px) {
  .official-entry-grid {
    margin-top: 0;
  }
}

.official-entry-card,
.official-category-card,
.official-event-card {
  display: block;
  background: rgb(29, 29, 29);
  color: #fff;
  overflow: hidden;
}

.official-entry-card__image,
.official-category-card__image {
  position: relative;
  overflow: hidden;
  background: #111;
}

.official-entry-card__image {
  aspect-ratio: 5 / 3;
}

.official-category-card__image {
  aspect-ratio: 5 / 3;
}

.official-entry-card__image img,
.official-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.official-entry-card:hover img,
.official-category-card:hover img {
  transform: scale(1.06);
}

.official-entry-card__body {
  min-height: 185px;
  padding: 20px 0 14px 20px;
  background: rgb(27, 27, 27);
}

.official-entry-card h2,
.official-category-card h3,
.official-event-card h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.05;
}

.official-entry-card h2 {
  font-size: 1.6rem;
}

.official-entry-card p:not(.official-eyebrow) {
  margin: 0.8rem 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.official-shop-section,
.official-wide-section,
.official-products-section,
.official-events-section {
  background: #fff;
}

.official-shop-section {
  padding-bottom: 30px;
}

.official-shop-banner {
  position: relative;
  min-height: 211px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 0;
  background: #000 var(--shop-image) center 22% / cover no-repeat;
  color: #fff;
}

.official-shop-banner__content {
  width: 60%;
  text-align: center;
}

.official-shop-banner__content p {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.1;
}

.official-shop-banner__content span {
  color: #f5002f;
}

.official-shop-banner__badge {
  position: absolute;
  left: 5%;
  top: 50%;
  width: 15%;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgb(53, 53, 53);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.25;
}

.official-wide-banner {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #000;
}

.official-wide-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--wide-position);
}

.official-wide-banner__content {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.official-wide-banner article {
  width: 55%;
  padding-left: 16px;
  color: #fff;
}

.official-wide-banner h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.4rem, 3.45vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.official-wide-banner p {
  margin: 0 0 1.1rem;
  max-width: 67ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.55;
}

.official-card-section {
  padding: 30px 0;
  background: #000;
}

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

.official-card-section--slider {
  overflow: visible;
}

.official-category-slider {
  position: relative;
}

.official-category-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.official-category-track::-webkit-scrollbar {
  display: none;
}

.official-category-track .official-category-card {
  flex: 0 0 25%;
  scroll-snap-align: start;
}

.official-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0 0 3px;
  font-size: 2.15rem;
  line-height: 36px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease;
}

.official-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.official-slider-arrow--prev {
  left: -58px;
}

.official-slider-arrow--next {
  right: -58px;
}

.official-category-card__body {
  min-height: 185px;
  padding: 15px 10px 0;
  background: rgb(29, 29, 29);
}

.official-category-card h3 {
  min-height: 3.2em;
  font-size: 1.25rem;
}

.official-category-card .official-button {
  margin-top: 1.15rem;
}

.official-products-section {
  padding: 30px 0;
}

.official-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 400;
}

.official-section-title::before,
.official-section-title::after {
  content: "";
  height: 2px;
  background: #000;
  opacity: 0.22;
}

.official-section-title--dark {
  color: #fff;
}

.official-section-title--dark::before,
.official-section-title--dark::after {
  background: #fff;
  opacity: 0.42;
}

.official-page-hero {
  position: relative;
  height: 470px;
  min-height: 470px;
  overflow: hidden;
  background: #a3a3a3;
}

.official-page-hero__media,
.official-page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.official-page-hero__media img {
  object-fit: cover;
  object-position: var(--page-hero-position);
}

.official-page-hero__layers {
  position: relative;
  height: 100%;
}

.official-page-hero__box {
  position: absolute;
  top: 50%;
  width: var(--page-hero-box-width);
  min-width: 420px;
  transform: translateY(-50%);
  padding: 20px 20px 20px 30px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.official-page-hero__box.is-left {
  left: 0;
}

.official-page-hero__box.is-right {
  right: 0;
}

.official-page-hero__box h1 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.7rem, 3.7vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.official-page-hero__box p {
  margin: 0.75rem 0 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
}

.official-page-divider {
  display: block;
  width: min(100%, var(--page-divider-width, 499px));
  height: 4px;
  margin: 0.18rem 0 0.65rem;
  background: #f5002f;
}

.official-plain-banner {
  position: relative;
  overflow: hidden;
  padding-top: 25%;
  background: #000;
}

.official-plain-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--plain-banner-position);
}

.official-static-gap {
  height: 40px;
  background: #fff;
}

.official-static-section {
  padding: var(--static-section-gap, 0) 0 0;
  background: #fff;
}

.official-static-copy {
  padding: 0 20px;
}

.official-static-copy h2 {
  margin: 0 0 1.05rem;
  color: #000;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 2.04rem;
  font-weight: 700;
  line-height: 1.3;
}

.official-static-copy p {
  margin: 0 0 1.05rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.official-static-copy strong {
  color: #000;
}

.official-static-copy a {
  color: #334862;
}

.official-static-copy a:hover {
  color: #000;
}

.official-contact-section {
  padding: 30px 0;
  background: rgb(245, 245, 245);
}

.official-contact-form {
  width: 75%;
  margin: 0 20px;
  padding: 0 20px 0 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 14px;
  color: #555;
}

.official-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.official-contact-field--full,
.official-contact-field.full,
.official-contact-privacy,
.official-contact-checkbox,
.official-contact-recaptcha,
.official-contact-submit,
.official-form-status {
  grid-column: span 12;
}

.official-contact-field--half,
.official-contact-field.half {
  grid-column: span 6;
}

.official-contact-field--quarter,
.official-contact-field.quarter {
  grid-column: span 3;
}

.official-contact-field--third,
.official-contact-field.third {
  grid-column: span 4;
}

.official-contact-field span:first-child,
.official-contact-checkbox {
  color: #555;
  font-weight: 700;
}

.official-required {
  color: #f5002f;
  margin-left: 0.18rem;
}

.official-contact-field input,
.official-contact-field select,
.official-contact-field textarea {
  width: 100%;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #333;
  font: inherit;
  outline: none;
}

.official-contact-field textarea {
  min-height: 8.4rem;
  padding-top: 0.65rem;
  resize: vertical;
}

.official-contact-field input:focus,
.official-contact-field select:focus,
.official-contact-field textarea:focus {
  border-color: #999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}

.official-contact-privacy p {
  margin: 0 0 0.8rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.official-contact-privacy a {
  color: #334862;
}

.official-contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.official-contact-checkbox input {
  margin-top: 0.2rem;
}

.official-contact-recaptcha {
  width: 304px;
  max-width: 100%;
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d8d8;
  background: #f9f9f9;
  color: #777;
  font-size: 0.9rem;
}

.official-contact-submit {
  justify-self: start;
  min-height: 2.5rem;
  padding: 0 1.15rem;
  border: 0;
  background: #f5002f;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
}

.official-form-status {
  margin: 0;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.5;
}

.official-form-status.is-success {
  color: var(--success);
}

.official-form-status.is-error {
  color: var(--accent);
}

.official-page-copy-section {
  padding: 40px 0;
  background: #fff;
}

.official-page-copy-grid {
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: start;
}

.official-side-nav-wrap {
  padding-right: 15px;
}

.official-side-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-side-nav li {
  margin: 0;
}

.official-side-nav a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(17, 17, 17, 0.68);
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.official-side-nav li.active > a,
.official-side-nav a:hover {
  color: #111;
}

.official-page-copy {
  padding: 0 20px;
}

.official-page-copy h1 {
  margin: 0 0 1.05rem;
  color: #000;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.1vw, 2.04rem);
  font-weight: 700;
  line-height: 1.3;
}

.official-page-copy p {
  margin: 0 0 1.05rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.official-page-copy strong {
  color: #000;
}

.official-page-range {
  padding: 40px 0;
  background: #000;
}

.official-shop-title {
  position: relative;
  overflow: hidden;
  background: #333;
  color: #fff;
}

.official-shop-title__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.2), transparent 32%),
    #3b3b3b;
}

.official-shop-title__inner {
  position: relative;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
}

.official-shop-title h1 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.official-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.official-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.official-breadcrumb a:hover {
  color: #fff;
}

.official-filter-toggle {
  display: none;
}

.official-shop-title__tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.official-shop-title__tools p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.official-orderby {
  min-width: 210px;
  height: 2.4rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
}

.official-orderby option {
  color: #111;
}

.official-shop-main {
  padding: 30px 0 40px;
  background: #fff;
}

.official-shop-row {
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: start;
}

.official-shop-sidebar {
  padding: 0 15px;
}

.official-search-widget {
  margin-bottom: 1.4rem;
}

.official-search-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(17, 17, 17, 0.78);
  font-size: 0.78rem;
}

.official-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  height: 2.5rem;
  border: 1px solid #ddd;
  background: #fff;
}

.official-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 0.75rem;
  color: #111;
  font: inherit;
  outline: none;
}

.official-search-box span {
  display: grid;
  place-items: center;
  border-left: 1px solid #ddd;
  color: #777;
  font-size: 1rem;
}

.official-widget-title {
  display: block;
  color: #111;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.official-small-divider {
  display: block;
  width: 30px;
  height: 3px;
  margin: 0.65rem 0 0.9rem;
  background: rgba(0, 0, 0, 0.16);
}

.official-product-cats ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-product-cats .children {
  padding-left: 1rem;
}

.official-product-cats li.is-collapsed > .children,
.official-product-cats .children.is-collapsed {
  display: none;
}

.official-cat-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 0.4rem;
}

.official-product-cats button,
.official-product-cats a {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0.18rem 0;
  border: 0;
  background: transparent;
  color: #555;
  text-align: left;
  font: inherit;
  line-height: 1.45;
  cursor: pointer;
}

.official-product-cats .official-cat-toggle {
  width: 14px;
  min-width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.28);
  background: #fff;
  color: #777;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.official-product-cats .official-cat-toggle:hover {
  border-color: rgba(0, 0, 0, 0.55);
  color: #111;
}

.official-product-cats button:hover,
.official-product-cats button.is-active,
.official-product-cats a:hover,
.official-product-cats a.is-active {
  color: #000;
}

.official-shop-container {
  padding: 0 15px;
}

.official-woo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 30px;
}

.official-woo-grid--section {
  margin-top: 0.25rem;
}

.official-woo-product {
  position: relative;
  display: block;
  min-height: 340px;
  color: #111;
  background: #fff;
  text-align: center;
}

.official-woo-badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #999;
  color: #fff;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.official-woo-image {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: #fff;
}

.official-woo-image img {
  width: auto;
  height: 260px;
  max-width: 100%;
  object-fit: contain;
}

.official-woo-text {
  display: block;
  padding: 0.6rem 0 0;
}

.official-woo-category {
  display: block;
  margin-bottom: 0.24rem;
  color: rgba(17, 17, 17, 0.58);
  text-transform: uppercase;
  font-size: 0.72rem;
  line-height: 1.2;
}

.official-woo-name {
  display: block;
  max-width: 22ch;
  margin: 0 auto;
  color: #111;
  font-size: 0.92rem;
  line-height: 1.25;
}

.official-empty-state {
  padding: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #555;
}

.official-woocommerce-pagination {
  margin-top: 1.8rem;
  text-align: center;
}

.official-woocommerce-pagination ul {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-woocommerce-pagination .page-number {
  min-width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #777;
  font: inherit;
  cursor: pointer;
}

.official-woocommerce-pagination .page-number.current,
.official-woocommerce-pagination .page-number:hover {
  color: #111;
  font-weight: 700;
}

.official-single-main {
  padding: 30px 0 44px;
  background: #fff;
}

.official-single-layout {
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: start;
}

.official-single-product {
  padding: 0 15px;
}

.official-single-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.4rem;
  color: rgba(17, 17, 17, 0.52);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.official-single-breadcrumb a {
  color: rgba(17, 17, 17, 0.52);
}

.official-single-breadcrumb a:hover {
  color: #111;
}

.official-single-top {
  display: grid;
  grid-template-columns: minmax(280px, 46%) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.official-single-gallery {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #fff;
}

.official-single-gallery img {
  width: auto;
  height: min(520px, 68vh);
  max-width: 100%;
  object-fit: contain;
}

.official-single-summary {
  color: #555;
}

.official-single-category {
  margin: 0 0 0.5rem;
  color: rgba(17, 17, 17, 0.55);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.official-single-summary h1 {
  margin: 0 0 0.8rem;
  color: #111;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.85rem, 2.45vw, 2.6rem);
  font-weight: 400;
  line-height: 1.18;
}

.official-single-copy {
  margin: 0 0 1.1rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.official-single-feature-list {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: #555;
  line-height: 1.65;
}

.official-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0;
}

.official-request-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0 1.05rem;
  border: 0;
  background: #f5002f;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.official-request-button:hover {
  color: #fff;
  background: #d80000;
}

.official-browse-list {
  color: #334862;
  font-size: 0.92rem;
}

.official-single-meta,
.official-request-note {
  margin: 0.7rem 0 0;
  color: #777;
  font-size: 0.9rem;
}

.official-single-meta span {
  color: #111;
  font-weight: 700;
}

.official-single-meta a {
  color: #334862;
}

.official-product-tabs {
  margin-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.official-product-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: #777;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.official-product-tab-list button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  text-transform: uppercase;
  font: inherit;
  cursor: pointer;
}

.official-product-tab-list button.is-active,
.official-product-tab-list button:hover {
  color: #111;
}

.official-product-tab-panel {
  padding: 1.3rem 0;
  color: #555;
}

.official-product-tab-panel h2,
.official-related-products h2,
.official-request-list h2,
.official-request-form-card h2 {
  margin: 0 0 1rem;
  color: #111;
  text-transform: uppercase;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
}

.official-product-tab-panel p,
.official-product-tab-panel li,
.official-request-form-card p {
  color: #555;
  line-height: 1.6;
}

.official-product-attributes {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.official-product-attributes th,
.official-product-attributes td {
  padding: 0.65rem 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #555;
  text-align: left;
}

.official-product-attributes th {
  width: 30%;
  color: #111;
}

.official-product-tab-media {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
  aspect-ratio: 16 / 9;
}

.official-product-tab-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.official-product-tab-empty {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  color: #666;
  background: rgba(0, 0, 0, 0.02);
}

.official-spray-pattern {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.3rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.official-spray-pattern span {
  color: #111;
  text-transform: uppercase;
  font-weight: 700;
}

.official-spray-pattern__visual {
  position: relative;
  height: 86px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(245, 0, 47, 0.14), transparent);
}

.official-spray-pattern__visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 88%;
  height: 6px;
  transform: translateY(-50%);
  background: #f5002f;
}

.official-spray-pattern__visual--fog::before {
  width: 92%;
  height: 70px;
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 56%);
  opacity: 0.72;
}

.official-spray-pattern__visual--gel::before,
.official-spray-pattern__visual--foam::before {
  height: 12px;
  border-radius: 999px;
}

.official-spray-pattern__visual--foam::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(245, 0, 47, 0.35);
}

.official-related-products {
  margin-top: 30px;
}

.official-request-main {
  padding: 34px 0 44px;
  background: #fff;
}

.official-request-empty {
  padding: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #555;
}

.official-request-empty p {
  margin: 0 0 1rem;
  color: #555;
}

.official-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
}

.official-request-list,
.official-request-form-card {
  padding: 0 15px;
}

.official-request-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.official-request-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.official-request-item__image {
  min-height: 92px;
  display: grid;
  place-items: center;
}

.official-request-item__image img {
  max-width: 70px;
  max-height: 92px;
  object-fit: contain;
}

.official-request-item p {
  margin: 0 0 0.2rem;
  color: #777;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.official-request-item h3 {
  margin: 0;
  color: #111;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.official-request-item h3 a {
  color: #111;
}

.official-request-item button {
  border: 0;
  background: transparent;
  color: #777;
  text-transform: uppercase;
  font-size: 0.76rem;
  cursor: pointer;
}

.official-request-item button:hover {
  color: #111;
}

.official-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.official-request-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #555;
  font-size: 0.9rem;
  font-weight: 700;
}

.official-request-form__wide,
.official-request-form .official-request-button {
  grid-column: 1 / -1;
}

.official-request-form input,
.official-request-form textarea {
  width: 100%;
  min-height: 2.45rem;
  padding: 0 0.75rem;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font: inherit;
}

.official-request-form textarea {
  padding-top: 0.65rem;
  resize: vertical;
}

.official-request-form .official-form-status {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.5;
}

.official-request-form .official-form-status.is-success {
  color: var(--success);
}

.official-request-form .official-form-status.is-error {
  color: var(--accent);
}

.admin-login-body {
  min-height: 100vh;
  margin: 0;
  background: #f4f5f7;
}

.admin-login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem 1rem;
}

.admin-login-card {
  width: min(100%, 420px);
  padding: 2rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
}

.admin-login-card h1 {
  margin: 0.25rem 0 1.6rem;
  color: #111;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1.2;
}

.admin-login-form {
  display: grid;
  gap: 1rem;
}

.admin-login-field {
  display: grid;
  gap: 0.4rem;
}

.admin-login-field span {
  color: #555;
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-login-submit {
  min-height: 2.75rem;
  border: 0;
  border-radius: 8px;
  background: #d80000;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-login-submit:hover {
  background: #b80000;
}

.admin-login-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.admin-login-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.admin-login-message[data-type="error"] {
  color: #d80000;
}

.admin-submissions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.admin-submissions-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.admin-submissions-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.admin-submission-page {
  min-width: 2.2rem;
  min-height: 2.1rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 0.86rem;
  line-height: 1.2;
  cursor: pointer;
}

.admin-submission-page:hover,
.admin-submission-page.is-active {
  border-color: #d80000;
  background: #d80000;
  color: #fff;
}

.admin-submission-page:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.admin-submission-page:disabled:hover {
  border-color: rgba(17, 17, 17, 0.14);
  background: #fff;
  color: #111;
}

.admin-submission-page--dots {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  cursor: default;
}

.admin-submission-page--dots:hover {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.admin-submissions + .admin-submissions-pagination {
  margin-top: 0.9rem;
}

.admin-submissions {
  display: grid;
  gap: 0.9rem;
}

.admin-submission-card {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.admin-submission-card summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  cursor: pointer;
  list-style: none;
}

.admin-submission-card summary::-webkit-details-marker {
  display: none;
}

.admin-submission-card__title {
  display: block;
  margin: 0;
  color: #111;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.admin-submission-card__meta {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.admin-submission-card__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.admin-submission-card__body {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 1rem 1.05rem 1.05rem;
}

.admin-submission-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
}

.admin-submission-meta div {
  min-width: 0;
}

.admin-submission-meta dt {
  margin: 0 0 0.2rem;
  color: #d80000;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-submission-meta dd {
  margin: 0;
  color: #111;
  line-height: 1.5;
  word-break: break-word;
}

.admin-submission-fields {
  display: grid;
  gap: 0.75rem;
}

.admin-submission-field {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.admin-submission-field__key {
  display: block;
  margin-bottom: 0.25rem;
  color: #d80000;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-submission-field__value {
  margin: 0;
  color: #111;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-submission-products {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.admin-submission-products__title {
  margin: 0;
  color: #d80000;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-submission-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-submission-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(216, 0, 0, 0.06);
  color: #111;
  font-size: 0.82rem;
}

.admin-submission-chip small {
  color: var(--muted);
}

@media (max-width: 680px) {
  .admin-submissions-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-submissions-pagination {
    justify-content: flex-start;
    width: 100%;
  }
}

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

.official-product-card {
  position: relative;
  display: block;
  min-height: 340px;
  color: #111;
  background: #fff;
}

.official-new-badge {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #999;
  color: #fff;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.official-product-card__image {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: #fff;
}

.official-product-card__image img {
  width: auto;
  height: 260px;
  max-width: 100%;
  object-fit: contain;
}

.official-product-card__body {
  padding: 0.6rem 0;
  text-align: center;
}

.official-product-card__body p {
  margin: 0 0 0.25rem;
  color: rgba(17, 17, 17, 0.6);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.official-product-card__body h3 {
  margin: 0 auto;
  max-width: 22ch;
  color: #111;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.25;
}

.official-events-section {
  padding: 30px 0;
}

.official-event-card__image {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: #fff;
}

.official-event-card__image img {
  max-width: 78%;
  max-height: 220px;
  object-fit: contain;
}

.official-event-card__body {
  min-height: 150px;
  padding: 15px 10px;
  background: rgb(29, 29, 29);
  color: #fff;
}

.official-event-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 1.5vw, 2rem);
}

.official-event-card p:not(.official-eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.official-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #000;
}

.official-footer__badges {
  padding: 30px 0 0;
  background: #1c1c1c;
}

.official-footer-badge-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding-bottom: 30px;
}

.official-footer-badge {
  display: grid;
  place-items: center;
  min-height: 132px;
  text-align: center;
}

.official-footer-badge img {
  max-width: 118px;
  max-height: 118px;
  object-fit: contain;
}

.official-footer-badge--logo img {
  max-width: 76%;
  max-height: 112px;
}

.official-footer-badge--logo p {
  margin: 0.2rem 0 0;
  color: #fff;
}

.official-footer-badge--logo span,
.official-footer-red,
.official-footer a:hover {
  color: #ed1c24;
}

.official-footer__main {
  padding: 30px 0;
  background: #111;
}

.official-footer-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.official-footer-col {
  font-size: 0.95rem;
  line-height: 1.5;
}

.official-footer-company-logo {
  width: 190px;
  max-width: 100%;
  margin-bottom: 1rem;
}

.official-footer-title {
  margin: 0 0 0.65rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.official-footer-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 0.55rem;
  background: rgba(255, 255, 255, 0.22);
}

.official-cert-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 0.9rem;
}

.official-cert-row img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.official-footer-link {
  display: block;
  margin-bottom: 0.22rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.official-footer__bottom {
  padding: 0.75rem 1rem;
  background: #000;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 1180px) {
  .site-header__main {
    gap: 1.35rem;
  }

  .site-nav__list {
    gap: 14px;
  }

  .site-nav__link,
  .watch-list {
    font-size: 0.86rem;
  }

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

  .official-category-track .official-category-card {
    flex-basis: 33.333333%;
  }

  .official-woo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .official-footer-badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    padding-bottom: 0;
  }

  .official-entry-section {
    margin-top: 0;
    background: #fff;
  }

  .site-header__top {
    font-size: 0.82rem;
  }

  .site-header .brand__logo {
    width: 82px;
    height: auto;
  }

  .official-hero,
  .official-hero__content {
    min-height: 700px;
  }

  .official-hero__media img {
    object-position: 45% 58%;
  }

  .official-page-hero__media img {
    object-position: var(--page-hero-position-md);
  }

  .official-hero__content {
    justify-content: flex-end;
    padding-top: 4rem;
    align-items: flex-start;
  }

  .official-hero__text {
    width: 85%;
  }

  .official-hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
  }

  .official-entry-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
  }

  .official-category-track .official-category-card {
    flex-basis: 50%;
  }

  .official-wide-banner article {
    width: 80%;
  }

  .official-shop-banner__badge {
    display: none;
  }

  .official-shop-banner__content {
    width: 78%;
  }

  .official-page-copy-grid,
  .official-shop-row,
  .official-single-layout,
  .official-request-grid {
    grid-template-columns: 1fr;
  }

  .official-side-nav-wrap,
  .official-shop-sidebar,
  .official-shop-container,
  .official-single-product,
  .official-request-list,
  .official-request-form-card {
    padding-right: 0;
    padding-left: 0;
  }

  .official-side-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .official-page-copy {
    padding: 0;
  }

  .official-shop-title__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .official-shop-title__tools {
    width: 100%;
    justify-content: space-between;
  }

  .official-shop-sidebar {
    margin-bottom: 1.8rem;
  }

  .official-single-top {
    grid-template-columns: 1fr;
  }

  .official-single-gallery {
    min-height: 420px;
  }

  .official-single-gallery img {
    height: 420px;
  }

  .official-footer-main-grid {
    grid-template-columns: 1fr;
  }

  .official-contact-form {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
}

@media (max-width: 720px) {
  .site-header .brand__logo {
    width: 70px;
    height: auto;
  }

  .official-hero,
  .official-hero__content {
    min-height: 430px;
  }

  .official-hero__media img {
    object-position: 37% 100%;
  }

  .official-page-hero__media img {
    object-position: var(--page-hero-position-sm);
  }

  .official-hero__content {
    justify-content: center;
    padding-top: 2.5rem;
  }

  .official-hero__text {
    width: 96%;
  }

  .official-hero__kicker {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }

  .official-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .official-hero p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .official-page-hero {
    height: 400px;
    min-height: 400px;
  }

  .official-page-hero__box {
    left: 50%;
    right: auto;
    bottom: auto;
    top: var(--page-hero-mobile-y);
    width: 90%;
    min-width: 0;
    transform: translate(-50%, -50%);
    padding: 20px 20px 20px 30px;
    background: rgba(0, 0, 0, 0.7);
  }

  .official-page-hero__box h1 {
    font-size: clamp(2.1rem, 9vw, 3.5rem);
  }

  .official-page-hero__box p {
    font-size: 0.82rem;
  }

  .official-page-copy-section,
  .official-page-range {
    padding: 30px 0;
  }

  .official-plain-banner {
    padding-top: 42%;
  }

  .official-static-copy {
    padding: 0;
  }

  .official-static-copy h2 {
    font-size: 1.7rem;
  }

  .official-contact-field--half,
  .official-contact-field.half,
  .official-contact-field--quarter,
  .official-contact-field.quarter,
  .official-contact-field--third,
  .official-contact-field.third {
    grid-column: span 12;
  }

  .official-side-nav {
    grid-template-columns: 1fr;
  }

  .official-shop-title__tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .official-single-breadcrumb {
    font-size: 0.72rem;
  }

  .official-single-gallery {
    min-height: 340px;
  }

  .official-single-gallery img {
    height: 340px;
  }

  .official-product-tab-list {
    gap: 0.9rem;
  }

  .official-spray-pattern {
    grid-template-columns: 1fr;
  }

  .official-woo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .official-request-grid,
  .official-request-form {
    grid-template-columns: 1fr;
  }

  .official-request-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .official-request-item button {
    grid-column: 2;
    justify-self: start;
  }

  .official-woo-product {
    min-height: 318px;
  }

  .official-woo-image {
    min-height: 240px;
  }

  .official-woo-image img {
    height: 240px;
  }

  .official-divider {
    height: 3px;
    margin: 0.7rem 0;
  }

  .official-category-grid,
  .official-product-grid,
  .official-event-grid,
  .official-footer-badge-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .official-category-track .official-category-card {
    flex-basis: 50%;
  }

  .official-slider-arrow--prev {
    left: 4px;
  }

  .official-slider-arrow--next {
    right: 4px;
  }

  .official-wide-banner article {
    width: 96%;
  }

  .official-wide-banner h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .official-shop-banner__content {
    width: 88%;
  }
}

/* Admin overrides live last so the public-site header rules cannot enlarge the CMS. */
.admin-header .site-header__inner {
  gap: 4px;
  padding: 6px 0 8px;
}

.admin-header .site-header__top {
  min-height: 18px;
  font-size: 0.72rem;
}

.admin-header .button {
  min-height: 28px;
  padding: 0.34rem 0.58rem;
  font-size: 0.72rem;
  line-height: 1;
}

.admin-header .admin-status {
  padding: 0.28rem 0.5rem;
  font-size: 0.68rem;
  line-height: 1;
}

.admin-header .admin-header__main {
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 48px;
  gap: 12px;
  align-items: center;
}

.admin-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.admin-header .brand__logo {
  width: 48px;
  height: 48px;
  padding: 0;
  object-fit: contain;
}

.admin-header .brand__mark {
  font-size: 1.08rem;
}

.admin-header .brand__tag {
  font-size: 0.56rem;
}

@media (min-width: 921px) {
  #admin-app {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .admin-page-shell {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .admin-header {
    position: relative;
    flex: 0 0 auto;
    top: auto;
  }

  .admin-page-shell > .site-main {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    padding: 8px 0 12px;
  }

  .admin-shell {
    height: 100%;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
  }

  .admin-sidebar,
  .admin-main {
    position: static;
    top: auto;
    height: 100%;
    max-height: none;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding-right: 6px;
    padding-bottom: 18px;
  }

  .admin-sidebar > *,
  .admin-main > * {
    flex: 0 0 auto;
  }

  .admin-editor-card {
    min-height: auto;
  }

  .admin-list-editor {
    height: auto;
    min-height: 0;
    align-items: start;
  }

  .admin-item-browser {
    max-height: calc(100vh - 220px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .admin-form-panel {
    height: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 920px) {
  .admin-header .brand__logo {
    width: 42px;
    height: 42px;
  }

  .admin-header .admin-header__main {
    min-height: 44px;
  }
}

@media (max-width: 720px) {
  .admin-header .admin-header__main {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .admin-header__copy {
    display: none;
  }
}
