:root {
  --hx-font-heading: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --hx-font-body: "DM Sans", system-ui, sans-serif;
  --hx-color-bg: #f3efe5;
  --hx-color-surface: #fffdf7;
  --hx-color-surface-soft: #e8e3d7;
  --hx-color-text: #171b1a;
  --hx-color-text-soft: #666b66;
  --hx-color-primary: #ef5b35;
  --hx-color-primary-strong: #d94722;
  --hx-color-secondary: #0b9a8d;
  --hx-color-border: rgba(23, 27, 26, 0.16);
  --hx-color-focus: #0b9a8d;
  --hx-shadow-sm: 0 12px 32px rgba(33, 30, 23, 0.08);
  --hx-shadow-md: 0 28px 90px rgba(33, 30, 23, 0.16);
  --hx-radius-sm: 0.4rem;
  --hx-radius-md: 0.75rem;
  --hx-radius-lg: 1rem;
  --hx-header-height: 78px;
  --hxst-ink: #171b1a;
  --hxst-paper: #f3efe5;
  --hxst-cream: #fffdf7;
  --hxst-orange: #ef5b35;
  --hxst-teal: #0b9a8d;
  --hxst-yellow: #e7dc50;
}

body.hxst-site {
  background: var(--hxst-paper);
}

.hxst-main {
  overflow: hidden;
}

.hxst-announcement {
  position: relative;
  z-index: 1100;
  background: var(--hxst-ink);
  color: var(--hxst-cream);
}

.hxst-announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.hxst-announcement p,
.hxst-announcement a {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hxst-announcement p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hxst-yellow);
  box-shadow: 0 0 0 5px rgba(231, 220, 80, 0.12);
}

.hxst-announcement a {
  color: var(--hxst-cream);
  opacity: 0.82;
}

.hxst-announcement a:hover {
  color: #fff;
  opacity: 1;
}

.hxst-announcement .hx-icon {
  width: 0.95rem;
}

.hxst-header {
  top: 0;
  background: rgba(243, 239, 229, 0.94);
  border-bottom-color: rgba(23, 27, 26, 0.1);
  backdrop-filter: blur(18px);
}

.admin-bar .hxst-header {
  top: 32px;
}

.hxst-header.is-scrolled {
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 14px 40px rgba(29, 26, 20, 0.08);
}

.hxst-header__inner {
  gap: 1.5rem;
}

.hxst-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--hxst-ink);
}

.hxst-brand__logo {
  display: inline-flex;
  align-items: center;
}

.hxst-brand__logo .custom-logo {
  max-height: 42px;
  max-width: 160px;
}

.hxst-brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  transform: rotate(-8deg);
}

.hxst-brand__mark i {
  display: block;
  border: 2px solid currentColor;
}

.hxst-brand__mark i:nth-child(1) {
  background: var(--hxst-orange);
  border-color: var(--hxst-orange);
}

.hxst-brand__mark i:nth-child(2) {
  transform: translateY(5px);
}

.hxst-brand__mark i:nth-child(3) {
  background: var(--hxst-teal);
  border-color: var(--hxst-teal);
  transform: translateY(-3px);
}

.hxst-brand__name {
  font-family: var(--hx-font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hxst-brand__edition {
  padding: 0.24rem 0.48rem;
  background: var(--hxst-orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hxst-nav__list {
  gap: clamp(0.65rem, 1.7vw, 1.45rem);
}

.hxst-nav .hx-nav__link {
  color: #3d423f;
  font-size: 0.84rem;
  font-weight: 700;
}

.hxst-nav .hx-nav__link:hover,
.hxst-nav .current-menu-item > .hx-nav__link {
  color: var(--hxst-orange);
}

.hxst-header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hxst-icon-button,
.hxst-search-panel__close {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--hxst-ink);
  border: 1px solid rgba(23, 27, 26, 0.15);
  border-radius: 50%;
  box-shadow: none;
}

.hxst-icon-button:hover,
.hxst-search-panel__close:hover {
  background: var(--hxst-ink);
  color: #fff;
  transform: none;
}

.hxst-icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.hxst-cart-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  color: var(--hxst-ink);
  border: 1px solid rgba(23, 27, 26, 0.15);
  font-size: 0.78rem;
  font-weight: 750;
}

.hxst-cart-link:hover {
  background: var(--hxst-cream);
  color: var(--hxst-ink);
}

.hxst-cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hxst-orange);
  color: #fff;
  border-radius: 999px;
  font-size: 0.68rem;
}

.hxst-button {
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border-radius: 0;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.hxst-button--ink {
  background: var(--hxst-ink);
  color: #fff;
  box-shadow: none;
}

.hxst-button--ink:hover {
  background: var(--hxst-orange);
  color: #fff;
}

.hxst-button--line {
  background: transparent;
  color: var(--hxst-ink);
  border-color: rgba(23, 27, 26, 0.32);
}

.hxst-button--line:hover {
  background: var(--hxst-cream);
  color: var(--hxst-ink);
}

.hxst-button--cream {
  background: var(--hxst-cream);
  color: var(--hxst-ink);
}

.hxst-button--cream:hover {
  background: var(--hxst-yellow);
  color: var(--hxst-ink);
}

.hxst-search-panel {
  position: absolute;
  inset: 100% 0 auto;
  padding: 1.2rem 0;
  background: var(--hxst-ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.hxst-search-panel__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(320px, 1.3fr) auto;
  align-items: center;
  gap: 2rem;
}

.hxst-search-panel__inner > div:first-child {
  display: grid;
  gap: 0.15rem;
}

.hxst-search-panel__inner > div:first-child span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hxst-search-panel__inner > div:first-child strong {
  font-size: 0.95rem;
}

.hxst-search-panel form {
  display: flex;
  gap: 0.5rem;
}

.hxst-search-panel input[type="search"] {
  min-height: 52px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}

.hxst-search-panel button[type="submit"] {
  min-height: 52px;
  padding-inline: 1.3rem;
  background: var(--hxst-orange);
  border-radius: 0;
  box-shadow: none;
}

.hxst-search-panel__close {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hxst-search-panel__close span[aria-hidden] {
  position: relative;
  width: 16px;
  height: 16px;
}

.hxst-search-panel__close span[aria-hidden]::before,
.hxst-search-panel__close span[aria-hidden]::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.hxst-search-panel__close span[aria-hidden]::before { transform: rotate(45deg); }
.hxst-search-panel__close span[aria-hidden]::after { transform: rotate(-45deg); }

.hxst-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--hxst-orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hxst-kicker i {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hxst-kicker--light {
  color: var(--hxst-yellow);
}

.hxst-hero {
  position: relative;
  min-height: calc(100vh - 114px);
  padding: clamp(4rem, 7vw, 7rem) 0 2rem;
  isolation: isolate;
}

.hxst-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(23, 27, 26, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 27, 26, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hxst-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  top: 3%;
  right: -160px;
  background: var(--hxst-yellow);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(2px);
}

.hxst-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.hxst-hero__content h1 {
  max-width: 900px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 6.4vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hxst-hero__lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: #555b56;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hxst-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hxst-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  color: #4d534e;
  font-size: 0.74rem;
  font-weight: 650;
}

.hxst-hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hxst-hero__proof .hx-icon {
  color: var(--hxst-teal);
}

.hxst-showcase {
  position: relative;
  padding: 0.75rem;
  background: var(--hxst-cream);
  border: 1px solid var(--hxst-ink);
  box-shadow: 24px 24px 0 var(--hxst-orange);
  transition: transform 160ms ease;
}

.hxst-showcase__meta {
  min-height: 44px;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(23, 27, 26, 0.16);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hxst-showcase__meta small {
  color: var(--hxst-teal);
}

.hxst-showcase__media,
.hxst-showcase__placeholder {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.84;
  overflow: hidden;
  background: #ede8dc;
}

.hxst-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.8rem;
  transition: transform 500ms ease;
}

.hxst-showcase:hover .hxst-showcase__media img {
  transform: scale(1.035) rotate(-1deg);
}

.hxst-showcase__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.65rem;
  background: var(--hxst-orange);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hxst-showcase__placeholder {
  display: grid;
  place-items: center;
}

.hxst-showcase__placeholder span {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border: 2px solid var(--hxst-ink);
}

.hxst-showcase__placeholder span:nth-child(1) { transform: rotate(8deg); }
.hxst-showcase__placeholder span:nth-child(2) { transform: rotate(38deg); border-color: var(--hxst-orange); }
.hxst-showcase__placeholder span:nth-child(3) { width: 28%; transform: rotate(68deg); border-color: var(--hxst-teal); }
.hxst-showcase__placeholder i { width: 14px; height: 14px; background: var(--hxst-yellow); border-radius: 50%; }

.hxst-showcase__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 1.25rem 0.5rem 1rem;
}

.hxst-showcase__body small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--hxst-teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hxst-showcase__body h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.hxst-showcase__body h2 a:hover {
  color: var(--hxst-orange);
}

.hxst-showcase__price {
  flex: 0 0 auto;
  font-family: var(--hx-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.hxst-showcase__price del {
  display: block;
  color: #8c8e89;
  font-size: 0.72rem;
}

.hxst-showcase__price ins {
  text-decoration: none;
}

.hxst-showcase__link {
  min-height: 50px;
  padding: 0 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--hxst-ink);
  border-top: 1px solid rgba(23, 27, 26, 0.16);
  font-size: 0.77rem;
  font-weight: 800;
}

.hxst-showcase__link:hover {
  color: var(--hxst-orange);
}

.hxst-hero__ticker {
  margin-top: clamp(4rem, 7vw, 8rem);
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(23, 27, 26, 0.18);
  color: #767973;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hxst-section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.hxst-section-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 3rem;
  align-items: end;
}

.hxst-section-heading h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hxst-section-heading p {
  margin: 0;
  color: #656a65;
}

.hxst-section-heading--split > div a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hxst-orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.hxst-categories,
.hxst-products,
.hxst-trust,
.hxst-faq {
  padding: var(--hx-section-space) 0;
}

.hxst-categories {
  background: var(--hxst-cream);
  border-top: 1px solid rgba(23, 27, 26, 0.12);
  border-bottom: 1px solid rgba(23, 27, 26, 0.12);
}

.hxst-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hxst-ink);
  border-left: 1px solid var(--hxst-ink);
}

.hxst-category-card {
  position: relative;
  min-height: 430px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--hxst-paper);
  border-right: 1px solid var(--hxst-ink);
  border-bottom: 1px solid var(--hxst-ink);
  color: var(--hxst-ink);
  isolation: isolate;
}

.hxst-category-card:nth-child(even) {
  background: #e8e2d4;
}

.hxst-category-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform 500ms ease;
}

.hxst-category-card > img::after {
  content: "";
}

.hxst-category-card:has(> img)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(23, 27, 26, 0.9), rgba(23, 27, 26, 0.05));
}

.hxst-category-card:has(> img) {
  color: #fff;
}

.hxst-category-card:hover > img {
  transform: scale(1.045);
}

.hxst-category-card__number {
  align-self: flex-end;
  font-family: var(--hx-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
}

.hxst-category-card__visual {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translateX(-50%);
}

.hxst-category-card__visual i {
  position: absolute;
  inset: 0;
  border: 2px solid currentColor;
  transition: transform 400ms ease;
}

.hxst-category-card__visual i:nth-child(1) { transform: rotate(0deg); }
.hxst-category-card__visual i:nth-child(2) { transform: rotate(30deg); border-color: var(--hxst-orange); }
.hxst-category-card__visual i:nth-child(3) { transform: rotate(60deg); border-color: var(--hxst-teal); }

.hxst-category-card:hover .hxst-category-card__visual i:nth-child(1) { transform: rotate(15deg); }
.hxst-category-card:hover .hxst-category-card__visual i:nth-child(2) { transform: rotate(55deg); }
.hxst-category-card:hover .hxst-category-card__visual i:nth-child(3) { transform: rotate(95deg); }

.hxst-category-card div {
  margin-top: auto;
}

.hxst-category-card small {
  display: block;
  min-height: 2.7em;
  margin-bottom: 0.55rem;
  color: currentColor;
  opacity: 0.7;
  font-size: 0.7rem;
  line-height: 1.45;
}

.hxst-category-card h3 {
  margin-bottom: 1.3rem;
  color: currentColor;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

.hxst-category-card div > span:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hxst-products {
  background: var(--hxst-paper);
}

.hxst-home-products {
  margin: 0 !important;
}

.hxst-products__empty {
  min-height: 330px;
  padding: clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  background: var(--hxst-cream);
  border: 1px solid var(--hxst-ink);
}

.hxst-products__empty-visual {
  position: relative;
  width: 180px;
  height: 180px;
}

.hxst-products__empty-visual i {
  position: absolute;
  inset: 0;
  border: 2px solid var(--hxst-ink);
}

.hxst-products__empty-visual i:nth-child(2) { transform: rotate(30deg); border-color: var(--hxst-orange); }
.hxst-products__empty-visual i:nth-child(3) { transform: rotate(60deg); border-color: var(--hxst-teal); }

.hxst-products__empty small {
  color: var(--hxst-orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hxst-products__empty h3 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
}

.hxst-products__empty p {
  max-width: 660px;
  margin: 0;
  color: #656a65;
}

.hxst-guide {
  position: relative;
  padding: var(--hx-section-space) 0;
  background: var(--hxst-ink);
  color: #fff;
}

.hxst-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 46px 46px;
}

.hxst-guide__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.hxst-guide__intro {
  position: sticky;
  top: 150px;
}

.hxst-guide__intro h2 {
  margin-bottom: 1.4rem;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
}

.hxst-guide__intro p {
  color: rgba(255,255,255,.62);
}

.hxst-guide__intro > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  color: var(--hxst-yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.hxst-guide__steps {
  border-top: 1px solid rgba(255,255,255,.22);
}

.hxst-guide__steps button {
  width: 100%;
  min-height: 0;
  padding: 1.65rem 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  gap: 1.2rem;
  align-items: start;
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  box-shadow: none;
}

.hxst-guide__steps button:hover {
  background: transparent;
  transform: none;
}

.hxst-guide__steps button > span {
  color: var(--hxst-orange);
  font-family: var(--hx-font-heading);
  font-weight: 700;
}

.hxst-guide__steps small {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255,255,255,.48);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hxst-guide__steps strong {
  display: block;
  font-family: var(--hx-font-heading);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
}

.hxst-guide__steps p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255,255,255,.62);
  opacity: 0;
  transition: max-height 300ms ease, opacity 300ms ease, margin 300ms ease;
}

.hxst-guide__steps button.is-active p {
  max-height: 140px;
  margin-top: 0.9rem;
  opacity: 1;
}

.hxst-guide__steps button > i {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
}

.hxst-guide__steps button > i::before,
.hxst-guide__steps button > i::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 6px;
  width: 10px;
  height: 1px;
  background: currentColor;
}

.hxst-guide__steps button > i::after {
  transform: rotate(90deg);
  transition: transform 200ms ease;
}

.hxst-guide__steps button.is-active > i {
  background: var(--hxst-orange);
  border-color: var(--hxst-orange);
}

.hxst-guide__steps button.is-active > i::after {
  transform: rotate(0);
}

.hxst-trust {
  background: var(--hxst-cream);
}

.hxst-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hxst-ink);
  border-left: 1px solid var(--hxst-ink);
}

.hxst-trust__grid article {
  min-height: 360px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--hxst-ink);
  border-bottom: 1px solid var(--hxst-ink);
}

.hxst-trust__grid article > span:first-child {
  align-self: flex-end;
  color: #747873;
  font-size: 0.7rem;
  font-weight: 800;
}

.hxst-trust__icon {
  width: 62px;
  height: 62px;
  margin: auto 0 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--hxst-ink);
  transform: rotate(45deg);
}

.hxst-trust__icon i {
  width: 20px;
  height: 20px;
  background: var(--hxst-orange);
}

.hxst-trust__grid article:nth-child(2) .hxst-trust__icon i { background: var(--hxst-teal); }
.hxst-trust__grid article:nth-child(3) .hxst-trust__icon i { background: var(--hxst-yellow); }
.hxst-trust__grid article:nth-child(4) .hxst-trust__icon i { background: var(--hxst-ink); }

.hxst-trust__grid h3 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
}

.hxst-trust__grid p {
  margin: 0;
  color: #676c67;
  font-size: 0.9rem;
}

.hxst-faq {
  background: var(--hxst-paper);
}

.hxst-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.hxst-faq__heading {
  position: sticky;
  top: 150px;
  align-self: start;
}

.hxst-faq__heading h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}

.hxst-faq__heading p {
  color: #676c67;
}

.hxst-faq__items {
  border-top: 1px solid var(--hxst-ink);
}

.hxst-faq details {
  border-bottom: 1px solid var(--hxst-ink);
}

.hxst-faq summary {
  min-height: 88px;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--hx-font-heading);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 650;
}

.hxst-faq summary::-webkit-details-marker { display: none; }

.hxst-faq summary span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--hxst-ink);
  border-radius: 50%;
}

.hxst-faq summary span::before,
.hxst-faq summary span::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 12px;
  height: 1px;
  background: currentColor;
}

.hxst-faq summary span::after { transform: rotate(90deg); transition: transform 180ms ease; }
.hxst-faq details[open] summary span { background: var(--hxst-orange); color: #fff; border-color: var(--hxst-orange); }
.hxst-faq details[open] summary span::after { transform: rotate(0); }

.hxst-faq details p {
  max-width: 720px;
  padding: 0 3.5rem 1.7rem 0;
  margin: 0;
  color: #656a65;
}

.hxst-support {
  padding: 0 0 var(--hx-section-space);
  background: var(--hxst-paper);
}

.hxst-support__card {
  position: relative;
  min-height: 450px;
  padding: clamp(2.2rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  overflow: hidden;
  background: var(--hxst-orange);
  color: #fff;
}

.hxst-support__card h2 {
  max-width: 880px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.8rem, 5.3vw, 5.7rem);
  line-height: 0.94;
}

.hxst-support__card p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.78);
}

.hxst-support__actions {
  position: relative;
  z-index: 2;
  min-width: 240px;
  display: grid;
  gap: 1rem;
}

.hxst-support__actions > a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.hxst-support__rings {
  position: absolute;
  top: 50%;
  right: 18%;
  width: 380px;
  height: 380px;
  transform: translateY(-50%);
  opacity: 0.28;
}

.hxst-support__rings span {
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  border-radius: 50%;
}

.hxst-support__rings span:nth-child(2) { inset: 18%; }
.hxst-support__rings span:nth-child(3) { inset: 36%; background: var(--hxst-yellow); border: 0; }

.hxst-footer {
  background: var(--hxst-ink);
  color: rgba(255,255,255,.66);
}

.hxst-footer__main {
  padding: clamp(4rem, 7vw, 7rem) 0;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(150px, 0.55fr)) minmax(170px, 0.55fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.hxst-footer__brand .hxst-brand {
  color: #fff;
}

.hxst-footer__identity > p {
  max-width: 470px;
  margin: 1.4rem 0;
}

.hxst-footer__support {
  display: grid;
  gap: 0.3rem;
}

.hxst-footer__support span,
.hxst-footer__title {
  margin-bottom: 0.55rem;
  color: var(--hxst-yellow);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hxst-footer__support a,
.hxst-footer__column a {
  color: rgba(255,255,255,.72);
}

.hxst-footer__support a:hover,
.hxst-footer__column a:hover {
  color: #fff;
}

.hxst-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
}

.hxst-footer__seal {
  align-self: start;
  aspect-ratio: 1;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  transform: rotate(4deg);
}

.hxst-footer__seal span {
  color: rgba(255,255,255,.55);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.hxst-footer__seal strong {
  color: #fff;
  font-family: var(--hx-font-heading);
  font-size: 1.5rem;
}

.hxst-footer__seal i {
  width: 28px;
  height: 28px;
  margin-top: 1rem;
  background: var(--hxst-orange);
  border-radius: 50%;
}

.hxst-footer__bottom {
  min-height: 70px;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.72rem;
}

.hxst-footer__bottom p {
  margin: 0;
}

.hxst-footer__bottom p:last-child {
  max-width: 700px;
  text-align: right;
}

@media (max-width: 1180px) {
  .hxst-header__shop { display: none; }
  .hxst-hero__layout { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); gap: 3rem; }
  .hxst-categories__grid,
  .hxst-trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hxst-footer__main { grid-template-columns: 1.3fr repeat(2, .7fr); }
  .hxst-footer__seal { display: none; }
}

@media (max-width: 960px) {
  .admin-bar .hxst-header { top: 46px; }
  .hxst-announcement__inner { justify-content: center; }
  .hxst-announcement a { display: none; }
  .hxst-header__navigation {
    background: var(--hxst-paper);
  }
  .hxst-header__actions {
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid rgba(23,27,26,.12);
  }
  .hxst-header__actions .hxst-icon-button { display: none; }
  .hxst-cart-link { flex: 1; justify-content: center; }
  .hxst-hero { min-height: auto; }
  .hxst-hero__layout { grid-template-columns: 1fr; }
  .hxst-hero__content { max-width: 850px; }
  .hxst-showcase { width: min(100%, 620px); justify-self: end; }
  .hxst-section-heading > div { grid-template-columns: 1fr; gap: 1.2rem; }
  .hxst-section-heading--split > div a { justify-self: start; }
  .hxst-guide__layout,
  .hxst-faq__layout { grid-template-columns: 1fr; }
  .hxst-guide__intro,
  .hxst-faq__heading { position: static; }
  .hxst-support__card { grid-template-columns: 1fr; align-items: start; }
  .hxst-support__actions { min-width: 0; max-width: 320px; }
  .hxst-search-panel__inner { grid-template-columns: 1fr auto; }
  .hxst-search-panel__inner > div:first-child { display: none; }
}

@media (max-width: 720px) {
  .hxst-announcement__inner { min-height: 40px; text-align: center; font-size: 0.68rem; }
  .hxst-header__inner { min-height: 68px; }
  .hxst-brand__name { display: none; }
  .hxst-hero { padding-top: 3.5rem; }
  .hxst-hero__content h1 { font-size: clamp(2.85rem, 13.4vw, 4.8rem); }
  .hxst-showcase { box-shadow: 12px 12px 0 var(--hxst-orange); }
  .hxst-showcase__body { grid-template-columns: 1fr; gap: 0.65rem; }
  .hxst-hero__ticker { grid-template-columns: repeat(2, 1fr); row-gap: .8rem; }
  .hxst-categories__grid,
  .hxst-trust__grid { grid-template-columns: 1fr; }
  .hxst-category-card { min-height: 360px; }
  .hxst-products__empty { grid-template-columns: 1fr; }
  .hxst-products__empty-visual { width: 130px; height: 130px; }
  .hxst-guide__layout { gap: 2.5rem; }
  .hxst-guide__steps button { grid-template-columns: 36px minmax(0, 1fr) 26px; gap: .8rem; }
  .hxst-trust__grid article { min-height: 300px; }
  .hxst-support__card { min-height: 520px; padding: 2rem 1.3rem; }
  .hxst-support__rings { right: -150px; }
  .hxst-footer__main { grid-template-columns: 1fr 1fr; }
  .hxst-footer__identity { grid-column: 1 / -1; }
  .hxst-footer__bottom { align-items: flex-start; flex-direction: column; }
  .hxst-footer__bottom p:last-child { text-align: left; }
  .hxst-search-panel { padding: .8rem 0; }
  .hxst-search-panel__inner { grid-template-columns: minmax(0, 1fr) auto; gap: .6rem; }
  .hxst-search-panel form { min-width: 0; }
  .hxst-search-panel input[type="search"] { min-width: 0; }
  .hxst-search-panel button[type="submit"] { padding-inline: .8rem; font-size: .72rem; }
}

@media (max-width: 480px) {
  .hxst-footer__main { grid-template-columns: 1fr; }
  .hxst-footer__identity { grid-column: auto; }
  .hxst-hero__actions { display: grid; }
  .hxst-hero__actions .hxst-button { width: 100%; }
  .hxst-hero__proof { display: grid; gap: .65rem; }
  .hxst-showcase__media img { padding: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hxst-showcase,
  .hxst-showcase__media img,
  .hxst-category-card > img,
  .hxst-category-card__visual i,
  .hxst-guide__steps p {
    transition: none !important;
  }
}
