﻿:root {
  --hx-primary: #3b82f6;
  --hx-navy: #0b1320;
  --hx-text: #334155;
  --hx-muted: #94a3b8;
  --hx-border: #e2e8f0;
  --hx-white: #ffffff;
  --hx-shell: 1280px;
  --hx-footer-shell: 1536px;
}

.site-shell {
  width: 100%;
  max-width: var(--hx-shell);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--hx-white);
  border-bottom: 1px solid var(--hx-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.site-header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-mobile-toggle:hover,
.site-mobile-toggle[aria-expanded="true"] {
  color: var(--hx-primary);
  border-color: #bfdbfe;
  background: #eff6ff;
}

.site-mobile-toggle svg {
  width: 20px;
  height: 20px;
}

.site-logo {
  color: var(--hx-navy);
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.site-logo span {
  color: var(--hx-primary);
}

.site-logo__image {
  display: block;
  max-height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav-item,
.site-tool-menu {
  position: relative;
}

.site-menu-root {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.site-nav-dropdown-trigger-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-nav-link {
  position: relative;
  color: #475569;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--hx-primary);
}

.site-nav-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.site-nav-menu-button svg {
  width: 16px;
  height: 16px;
}

.site-menu-root.is-open .site-nav-menu-button,
.site-menu-root:hover .site-nav-menu-button {
  color: var(--hx-primary);
}

.site-nav-toggle,
.site-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #475569;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.site-nav-toggle:hover,
.site-nav-toggle[aria-expanded="true"],
.site-tool-icon:hover,
.site-tool-icon[aria-expanded="true"] {
  color: var(--hx-primary);
}

.site-nav-toggle svg {
  width: 16px;
  height: 16px;
}

.site-tool-icon {
  width: 22px;
  height: 22px;
}

.site-tool-icon svg {
  width: 22px;
  height: 22px;
}

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

.site-language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.site-language-trigger:hover,
.site-language-trigger[aria-expanded="true"] {
  color: var(--hx-primary);
}

.site-language-trigger svg {
  width: 14px;
  height: 14px;
}

.site-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--hx-primary);
  border-radius: 999px;
}

.site-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  min-width: 320px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

.site-menu-root.is-open > .site-dropdown-menu,
.site-menu-root.is-open .site-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.site-products-menu {
  left: 0;
  right: auto;
  min-width: 430px;
  display: grid;
  gap: 4px;
}

.site-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: #0f172a;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-submenu-link:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  transform: translateX(2px);
}

.site-submenu-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-submenu-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.site-submenu-text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.site-submenu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #3b82f6;
}

.site-submenu-icon svg {
  width: 20px;
  height: 20px;
}

.site-search-panel {
  min-width: 360px;
  display: grid;
  gap: 14px;
}

.site-language-panel {
  min-width: 150px;
  display: grid;
  gap: 4px;
  padding: 8px;
}

.site-language-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-language-option:hover,
.site-language-option.is-active {
  background: #eff6ff;
  color: #2563eb;
}

.site-search-form {
  display: grid;
  gap: 10px;
}

.site-search-label {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search-row {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.site-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #cbd5e1;
  padding: 12px 14px;
  color: #0f172a;
  font-size: 14px;
  background: #fff;
}

.site-search-input:focus {
  outline: 0;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.site-search-submit {
  border: 0;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: #3b82f6;
  cursor: pointer;
  transition: background 0.2s ease;
}

.site-search-submit:hover {
  background: #2563eb;
}

.site-search-hint {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.site-search-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-search-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #334155;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-search-shortcut:hover {
  color: #2563eb;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.site-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-mobile-overlay {
  display: none;
}

.site-mobile-overlay.is-open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(4px);
  z-index: 55;
}

.site-mobile-panel {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(92vw, 420px);
  background: #f8fafc;
  border-right: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 28px 0 70px rgba(15, 23, 42, 0.22);
  transform: translateX(-104%);
  transition: transform 0.28s ease;
  z-index: 60;
  overflow: hidden;
}

.site-mobile-panel,
.site-mobile-panel * {
  box-sizing: border-box;
}

.site-mobile-panel.is-open {
  transform: translateX(0);
}

.site-mobile-panel-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 0;
}

.site-mobile-hero {
  padding: 22px 18px 20px;
  background:
    linear-gradient(180deg, rgba(11, 19, 32, 0.98) 0%, rgba(11, 19, 32, 0.94) 100%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.28), transparent 42%);
  color: #fff;
}

.site-mobile-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.site-mobile-brand-lockup {
  display: grid;
  gap: 6px;
}

.site-mobile-brand-kicker {
  color: rgba(191, 219, 254, 0.96);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-mobile-brand-logo {
  display: block;
  max-height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-mobile-brand-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.site-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-mobile-close:hover {
  border-color: rgba(191, 219, 254, 0.42);
  color: #fff;
  background: rgba(59, 130, 246, 0.18);
}

.site-mobile-close svg {
  width: 18px;
  height: 18px;
}

.site-mobile-hero-text {
  margin: 14px 0 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 13px;
  line-height: 1.65;
}

.site-mobile-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  min-width: 0;
}

.site-mobile-action-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 12px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  min-width: 0;
}

.site-mobile-action-card:hover {
  border-color: rgba(191, 219, 254, 0.3);
  background: rgba(59, 130, 246, 0.14);
  transform: translateY(-1px);
}

.site-mobile-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #93c5fd;
  background: rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.site-mobile-action-icon svg {
  width: 18px;
  height: 18px;
}

.site-mobile-action-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.site-mobile-action-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.site-mobile-action-text {
  color: rgba(226, 232, 240, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.site-mobile-content {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 18px;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.site-mobile-section {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.site-mobile-section-label {
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-mobile-primary-nav {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.site-mobile-primary-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #0f172a;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  min-width: 0;
}

.site-mobile-primary-link:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
  transform: translateX(1px);
}

.site-mobile-primary-arrow {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-mobile-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.site-mobile-category-card {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 14px;
  color: #0f172a;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  min-width: 0;
}

.site-mobile-category-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.12);
  transform: translateY(-1px);
}

.site-mobile-category-card-wide {
  grid-column: 1 / -1;
  min-height: 88px;
}

.site-mobile-category-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.site-mobile-category-text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.site-mobile-search {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  min-width: 0;
}

.site-mobile-search .site-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.site-mobile-search .site-search-submit {
  white-space: nowrap;
}

.site-mobile-language-actions {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.site-mobile-language-option {
  flex: 1 1 0;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 14px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-mobile-language-option:hover,
.site-mobile-language-option.is-active {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
}

.site-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-tool-link:hover,
.site-cart-link:hover {
  color: var(--hx-primary);
}

.site-tool-link svg,
.site-cart-link svg {
  width: 22px;
  height: 22px;
}

.site-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--hx-primary);
  color: var(--hx-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.home-category-showcase {
  position: relative;
  padding: 72px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--hx-border);
  overflow: hidden;
}

.home-category-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 70%);
  pointer-events: none;
}

.home-category-showcase__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.home-category-showcase__intro {
  max-width: 760px;
}

.home-category-showcase__eyebrow {
  margin-bottom: 12px;
  color: var(--hx-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-category-showcase__title {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.home-category-showcase__description {
  margin: 16px 0 0;
  max-width: 680px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

.home-category-showcase__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 360px;
  margin-left: auto;
}

.home-category-showcase__aside-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hx-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-category-showcase__aside-link:hover {
  color: #2563eb;
  transform: translateX(2px);
}

.home-category-showcase__aside-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.home-category-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.home-category-showcase__stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.home-category-card {
  position: relative;
  display: flex;
  min-height: 290px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.home-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  transition: border-color 0.25s ease;
}

.home-category-card:hover::after {
  border-color: rgba(147, 197, 253, 0.5);
}

.home-category-card--feature {
  min-height: 460px;
}

.home-category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.home-category-card:hover .home-category-card__image {
  transform: scale(1.06);
}

.home-category-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.16) 0%, rgba(2, 6, 23, 0.38) 40%, rgba(2, 6, 23, 0.88) 100%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.25) 52%, rgba(59, 130, 246, 0.1) 100%);
  transition: background 0.35s ease;
}

.home-category-card:hover .home-category-card__overlay {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.52) 30%, rgba(2, 6, 23, 0.94) 100%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.38) 48%, rgba(59, 130, 246, 0.18) 100%);
}

.home-category-card__topline {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-category-card__index,
.home-category-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.36);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.home-category-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px 24px;
  transform: translateY(18px);
  transition: transform 0.35s ease;
}

.home-category-card__copy {
  max-width: 520px;
}

.home-category-card:hover .home-category-card__body {
  transform: translateY(0);
}

.home-category-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.home-category-card__details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(18px);
  transition: grid-template-rows 0.35s ease, opacity 0.28s ease, transform 0.35s ease, margin-top 0.35s ease;
}

.home-category-card__details > * {
  min-height: 0;
}

.home-category-card:hover .home-category-card__title {
  transform: translateY(-2px);
}

.home-category-card:hover .home-category-card__details {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

.home-category-card__text {
  margin: 0;
  overflow: hidden;
  color: rgba(226, 232, 240, 0.92);
  font-size: 14px;
  line-height: 1.75;
}

.home-category-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-category-card__meta,
.home-category-card__action {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-category-card__meta {
  color: #cbd5e1;
}

.home-category-card__action {
  color: #ffffff;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-category-card:hover .home-category-card__action {
  color: #93c5fd;
  transform: translateX(2px);
}

.home-product-lines {
  padding: 72px 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--hx-border);
}

.home-product-lines__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.home-product-lines__intro {
  max-width: 760px;
}

.home-product-lines__eyebrow {
  margin-bottom: 12px;
  color: var(--hx-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-product-lines__title {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.home-product-lines__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hx-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-product-lines__link:hover {
  color: #2563eb;
  transform: translateX(2px);
}

.home-product-lines__link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.home-product-lines__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.home-product-line-tile {
  position: relative;
  display: block;
  min-height: 280px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  background: #0f172a;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  isolation: isolate;
}

.home-product-line-tile--feature {
  grid-column: span 12;
  min-height: 480px;
}

.home-product-line-tile--medium {
  grid-column: span 6;
  min-height: 360px;
}

.home-product-line-tile--compact {
  grid-column: span 4;
  min-height: 320px;
}

.home-product-line-tile__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.home-product-line-tile:hover .home-product-line-tile__image {
  transform: scale(1.06);
}

.home-product-line-tile__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.34) 48%, rgba(2, 6, 23, 0.84) 100%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.34) 0%, rgba(59, 130, 246, 0.12) 100%);
  transition: background 0.35s ease;
}

.home-product-line-tile:hover .home-product-line-tile__overlay {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.46) 42%, rgba(2, 6, 23, 0.92) 100%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.42) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.home-product-line-tile__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 28px 48px;
  transform: translateY(20px);
  transition: transform 0.32s ease;
}

.home-product-line-tile:hover .home-product-line-tile__content {
  transform: translateY(0);
}

.home-product-line-tile__title {
  margin: 0;
  max-width: 72%;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 24px rgba(2, 6, 23, 0.45);
}

.home-product-line-tile__summary {
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}

.home-product-line-tile:hover .home-product-line-tile__summary {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
  margin-top: 12px;
}

.home-product-line-tile__summary {
  color: rgba(226, 232, 240, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

.home-why-section {
  position: relative;
  padding: 48px 0 44px;
  color: #ffffff;
  background:
    linear-gradient(rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.4)),
    url(../images/bgs/bg4.png) center center / cover no-repeat;
  overflow: hidden;
}

.home-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.24) 0%, rgba(2, 6, 23, 0.12) 34%, rgba(2, 6, 23, 0.2) 100%);
  pointer-events: none;
}

.home-why-section .container {
  position: relative;
  z-index: 1;
}

.home-why-section__layout {
  display: grid;
  gap: 0;
  align-items: center;
}

.home-why-section__content {
  max-width: 420px;
}

.home-why-section__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.home-why-section__rule {
  width: 44px;
  height: 3px;
  margin: 14px 0 16px;
  background: var(--hx-primary);
}

.home-why-section__text {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  background: var(--hx-navy);
  color: #94a3b8;
  margin-top: 48px;
}

.site-footer-shell {
  max-width: var(--hx-footer-shell);
  padding-left: 12px;
  padding-right: 12px;
}

.site-footer-main {
  padding-top: 64px;
  padding-bottom: 32px;
}

.site-footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.site-footer-brand {
  max-width: 360px;
}

.site-footer-brand-title {
  margin: 0 0 16px;
  color: var(--hx-white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
}

.site-footer-logo {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.site-footer-description {
  margin: 0 0 24px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #475569;
  border-radius: 999px;
  color: #94a3b8;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-footer-social:hover {
  border-color: var(--hx-white);
  color: var(--hx-white);
}

.site-footer-social svg {
  width: 16px;
  height: 16px;
}

.site-footer-column-title {
  margin: 0 0 16px;
  color: var(--hx-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer-link:hover {
  color: var(--hx-white);
}

.site-footer-contact-list {
  gap: 18px;
}

.site-footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer-contact-label {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: lowercase;
}

.site-footer-contact-link {
  display: block;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.site-footer-contact-link:hover {
  color: var(--hx-white);
}

.site-footer-meta {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  color: #64748b;
  font-size: 12px;
}

.site-footer-meta p {
  margin: 0;
}

.site-footer-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  transition: color 0.2s ease;
}

.site-footer-language:hover {
  color: var(--hx-white);
}

.site-footer-language svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.auth-page .site-header {
  position: static;
}

.auth-page .site-footer {
  margin-top: 0;
}

@media (min-width: 768px) {
  .home-category-showcase {
    padding: 88px 0;
  }

  .home-category-showcase__header {
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
  }

  .home-category-card__body {
    padding: 34px 30px 28px;
  }

  .home-category-card__title {
    font-size: 30px;
  }

  .home-product-lines {
    padding: 86px 0;
  }

  .home-product-lines__header {
    margin-bottom: 34px;
  }

  .home-product-line-tile--feature {
    min-height: 540px;
  }

  .home-product-line-tile--medium {
    min-height: 390px;
  }

  .home-product-line-tile--compact {
    min-height: 340px;
  }

  .home-product-line-tile__content {
    padding: 34px 34px 32px;
  }

  .home-product-line-tile__title {
    font-size: 34px;
  }

  .home-why-section {
    padding: 52px 0 48px;
  }

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

  .site-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-footer-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer-main {
    padding-top: 72px;
  }

  .site-footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 32px;
  }

  .site-footer-brand {
    max-width: none;
    grid-column: 1 / -1;
  }

  .site-footer-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .home-category-showcase__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.28fr);
    align-items: stretch;
  }

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

  .home-category-showcase__stack .home-category-card__body {
    transform: translateY(30px);
  }

  .home-category-showcase__stack .home-category-card--construction .home-category-card__body {
    transform: translateY(42px);
  }

  .home-category-showcase__stack .home-category-card:hover .home-category-card__body {
    transform: translateY(0);
  }

  .site-nav {
    display: flex;
  }

  .site-footer-layout {
    grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, 1fr));
  }

  .site-footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 1023px) {
  .home-category-showcase__aside {
    max-width: 560px;
    margin-left: 0;
  }

  .site-dropdown-menu {
    display: none;
  }

  .site-tool-menu {
    display: none;
  }

  .site-menu-root {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .site-tool-menu > .site-dropdown-menu,
  .site-language-menu > .site-dropdown-menu {
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    transform: none;
    z-index: 70;
  }

  .site-tool-menu .site-search-panel {
    width: min(340px, calc(100vw - 32px));
    min-width: 0;
  }

  .site-language-menu .site-language-panel {
    width: 156px;
    min-width: 0;
  }

  .site-tool-menu.is-open > .site-dropdown-menu,
  .site-language-menu.is-open > .site-dropdown-menu {
    display: grid;
  }

  .site-mobile-toggle {
    display: inline-flex;
  }

  .site-header-row {
    min-height: 72px;
  }

  .site-tool-link span {
    display: none;
  }
}

@media (max-width: 767px) {
  .home-category-showcase {
    padding: 56px 0;
  }

  .home-category-showcase::before {
    top: -80px;
    right: -220px;
    width: 360px;
    height: 360px;
  }

  .home-category-showcase__title {
    font-size: 28px;
  }

  .home-category-showcase__description {
    font-size: 14px;
    line-height: 1.75;
  }

  .home-category-showcase__aside {
    max-width: none;
  }

  .home-product-lines {
    padding: 56px 0;
  }

  .home-product-lines__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .home-product-lines__title {
    font-size: 28px;
  }

  .home-product-line-tile--feature,
  .home-product-line-tile--medium,
  .home-product-line-tile--compact {
    grid-column: span 12;
  }

  .home-product-line-tile {
    min-height: 260px;
  }

  .home-product-line-tile--feature {
    min-height: 320px;
  }

  .home-product-line-tile__content {
    padding: 20px 18px 34px;
    transform: translateY(16px);
  }

  .home-product-line-tile__title {
    font-size: 22px;
  }

  .home-why-section {
    padding: 40px 0 36px;
    background-position: center center;
  }

  .home-why-section__title {
    font-size: 22px;
  }

  .home-why-section__rule {
    width: 36px;
    margin: 12px 0 14px;
  }

  .home-why-section__layout {
    gap: 0;
  }

  .home-why-section__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .home-category-card,
  .home-category-card--feature {
    min-height: 250px;
  }

  .home-category-card__topline {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .home-category-card__index,
  .home-category-card__tag {
    min-height: 26px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .home-category-card__body {
    padding: 22px 18px 18px;
    transform: translateY(0);
    transition: none;
  }

  .home-category-card__title {
    font-size: 22px;
  }

  .home-category-card__details {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    margin-top: 12px;
  }

  .home-category-card__text {
    font-size: 13px;
    line-height: 1.65;
  }

  .home-category-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 14px;
  }

  .home-category-card__meta,
  .home-category-card__action {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .site-header-row {
    min-height: 68px;
    gap: 12px;
  }

  .site-logo {
    font-size: 24px;
  }

  .site-tools {
    gap: 12px;
  }

  .site-search-panel {
    min-width: 0;
  }

  .site-language-trigger {
    font-size: 11px;
  }

  .site-mobile-panel {
    width: 100vw;
  }

  .site-mobile-content {
    padding: 16px;
  }

  .site-mobile-category-grid {
    grid-template-columns: 1fr;
  }

  .site-mobile-category-card,
  .site-mobile-category-card-wide {
    grid-column: auto;
    min-height: 86px;
  }

  .site-footer-main {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .site-footer-brand-title {
    font-size: 24px;
  }
}
/* Global No Radius */
html body,
html body *,
html body *::before,
html body *::after {
  border-radius: 0 !important;
}
/* Global Layout Width */
:root {
  --hx-shell: 1536px;
  --hx-footer-shell: 1536px;
}

.site-shell,
.container,
.max-w-container-max,
.max-w-7xl,
[class~="max-w-[1280px]"],
[class~="max-w-[1440px]"],
[class~="max-w-[1536px]"] {
  max-width: 1536px !important;
}

/* Global Minimum Font Size */
html body :where(:not(i):not(svg):not(path):not(.material-symbols-outlined)).text-xs,
html body :where(:not(i):not(svg):not(path):not(.material-symbols-outlined))[class*="text-[10px]"],
html body :where(:not(i):not(svg):not(path):not(.material-symbols-outlined))[class*="text-[11px]"],
html body :where(:not(i):not(svg):not(path):not(.material-symbols-outlined))[class*="text-[12px]"],
html body :where(:not(i):not(svg):not(path):not(.material-symbols-outlined))[class*="text-[13px]"] {
  font-size: 14px !important;
}
