:root {
  --accent: #c79a58;
  --accent-deep: #8c642c;
  --brand-red: #8f1f24;
  --dark: #11151b;
  --ink: #20242b;
  --muted: #777b82;
  --line: #e2ded7;
  --panel: #ffffff;
  --footer: #14171c;
  --footer-deep: #0b0d10;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #fbfaf8;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.top-line {
  height: 4px;
  background: linear-gradient(90deg, var(--dark), var(--accent), var(--brand-red));
}

.site-header {
  background: rgba(251, 250, 248, .96);
  border-bottom: 1px solid rgba(17, 21, 27, .12);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.nav-row,
.categories,
.product-section,
.arrivals,
.footer-grid {
  width: min(1216px, calc(100% - 40px));
  margin: 0 auto;
}

.search-form {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-items: center;
  height: 40px;
  width: 44px;
  min-width: 44px;
  overflow: hidden;
  z-index: 4;
  border: 1px solid rgba(17, 21, 27, .12);
  background: rgba(255, 255, 255, .74);
  transition: width .28s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.search-form:focus-within {
  width: min(220px, 18vw);
  margin-left: -176px;
  border-color: rgba(199, 154, 88, .7);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 21, 27, .08);
}

.search-form:hover {
  border-color: rgba(199, 154, 88, .55);
  background: #fff;
}

.search-form input {
  width: 0;
  border: 0;
  min-width: 0;
  padding: 0;
  outline: none;
  background: transparent;
  color: #30343a;
  font-size: 13px;
  opacity: 0;
  transition: width .2s ease, padding .2s ease, opacity .18s ease;
}

.search-form:focus-within input {
  width: 100%;
  padding: 0 10px 0 13px;
  opacity: 1;
}

.search-form button {
  width: 42px;
  height: 100%;
  flex: 0 0 42px;
  border: 0;
  background: transparent;
  color: #8c642c;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.nav-row {
  width: min(1400px, calc(100% - 44px));
  min-height: 110px;
  display: grid;
  grid-template-columns: 372px minmax(630px, 1fr) 44px auto;
  gap: 20px;
  align-items: center;
}

.logo img {
  width: 362px;
  height: 90px;
  object-fit: contain;
}

.main-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 1.55vw, 30px);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
  white-space: nowrap;
}

.main-nav > a,
.nav-item > a {
  height: 48px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #1b2028;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1;
}

.main-nav > a:first-child,
.main-nav a:hover {
  color: var(--brand-red);
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.submenu {
  min-width: 150px;
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  background: #14171c;
  border: 1px solid rgba(199, 154, 88, .32);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(12, 14, 18, .24);
  transition: .2s ease;
}

.submenu a {
  display: block;
  padding: 10px 16px;
  color: #f4efe6;
  white-space: nowrap;
}

.nav-item:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.account-links {
  grid-column: 4;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  color: #6f7379;
  font-size: 13px;
  white-space: nowrap;
}

.account-links button,
.account-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 21, 27, .12);
  background: rgba(255, 255, 255, .72);
  color: #30343a;
  cursor: pointer;
  font: inherit;
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}

.account-links button:hover,
.account-links a:hover {
  border-color: rgba(199, 154, 88, .72);
  color: #8c642c;
  background: #fff;
}

.user-link {
  padding: 0 14px;
}

.cart-link {
  gap: 8px;
  padding: 0 11px;
}

.cart-icon {
  width: 15px;
  height: 13px;
  position: relative;
  border: 1.5px solid currentColor;
  border-top: 0;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -5px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-link strong {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: #14171c;
  color: #d7ad68;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1240px) {
  .nav-row {
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: 342px minmax(0, 1fr) 44px auto;
    gap: 14px;
  }

  .logo img {
    width: 330px;
    height: 82px;
  }

  .main-nav {
    gap: 14px;
    font-size: 15px;
  }

  .account-links {
    gap: 10px;
  }

  .search-form:focus-within {
    width: 190px;
    margin-left: -146px;
  }
}

@media (max-width: 1280px) {
  .account-links {
    display: none;
  }

  .nav-row {
    grid-template-columns: 330px minmax(0, 1fr) 44px;
  }
}

.hero {
  height: clamp(500px, 62vw, 760px);
  position: relative;
  overflow: hidden;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 21, 27, .36), rgba(17, 21, 27, .58)),
    radial-gradient(circle at 50% 54%, rgba(143, 31, 36, .18), transparent 44%);
  z-index: -1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity .8s ease;
  z-index: -2;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  width: min(900px, calc(100% - 32px));
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}

.hero p {
  margin: 0;
  font-size: 23px;
  letter-spacing: 4px;
  color: #f1e7d5;
}

.btn,
.details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.btn.ghost {
  border: 1px solid rgba(215, 173, 104, .78);
  background: rgba(17, 21, 27, .32);
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.hero-dots span,
.hero-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dots .active {
  background: #fff;
}

.thermal-explorer {
  --lens-x: 50%;
  --lens-y: 54%;
  --lens-left: 50%;
  --lens-top: 54%;
  --thermal-bg-left: 0px;
  --thermal-bg-top: 0px;
  --thermal-bg-width: 100vw;
  --thermal-bg-height: clamp(520px, 48vw, 760px);
  width: 100%;
  min-height: clamp(520px, 48vw, 760px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 55%, rgba(255, 255, 255, .07), transparent 17%),
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .46) 42%, rgba(0, 0, 0, .8)),
    url("assets/thermal-forest-deer.jpg") center / cover no-repeat;
  color: #fff;
}

.thermal-explorer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 55%, transparent 0 12%, rgba(0, 0, 0, .18) 34%, rgba(0, 0, 0, .42) 100%),
    rgba(0, 0, 0, .1);
}

.thermal-explorer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, .16);
  pointer-events: none;
}

.thermal-copy {
  width: min(520px, calc(100% - 40px));
  position: absolute;
  left: clamp(28px, 8vw, 120px);
  top: clamp(58px, 9vw, 130px);
  z-index: 2;
}

.thermal-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0;
}

.thermal-copy p {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.thermal-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .58);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.thermal-lens {
  width: clamp(260px, 27vw, 430px);
  aspect-ratio: 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  background: #050505;
  box-shadow: 0 20px 58px rgba(0, 0, 0, .56);
  pointer-events: none;
  contain: layout paint style;
  will-change: transform;
}

.thermal-lens-map {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--thermal-bg-width);
  height: var(--thermal-bg-height);
  background: url("assets/thermal-forest-deer-map.jpg") 0 0 / 100% 100% no-repeat;
  transform: translate3d(0, 0, 0);
  transform-origin: 0 0;
  will-change: transform;
  backface-visibility: hidden;
}

.thermal-lens::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 57% 53%, rgba(255, 255, 255, .06), transparent 7%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .014) 0 1px, transparent 1px 7px),
    radial-gradient(circle, transparent 74%, rgba(0, 0, 0, .1) 100%);
  mix-blend-mode: screen;
  opacity: .08;
}

.thermal-lens::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, transparent 76%, rgba(0, 0, 0, .08) 100%);
  z-index: 2;
  pointer-events: none;
}

.thermal-hints {
  position: absolute;
  right: clamp(28px, 6vw, 96px);
  bottom: 42px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.thermal-hints span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.categories {
  padding: 70px 0 35px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.category-card {
  grid-column: span 3;
  min-height: 245px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.category-card:nth-child(n + 5) {
  grid-column: span 4;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  z-index: -1;
  transition: .25s ease;
}

.category-count {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, .24);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.category-card:hover::before {
  background: rgba(0, 0, 0, .38);
}

.category-card h2 {
  margin: 0 0 10px;
  font-family: "Comic Sans MS", "Microsoft YaHei", cursive;
  font-size: 38px;
  font-weight: 400;
}

.category-card p {
  margin: 0 0 20px;
  font-size: 15px;
  min-height: 22px;
}

.category-links {
  min-height: 32px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.category-links button,
.category-links a {
  border: 1px solid rgba(255, 255, 255, .65);
  padding: 5px 9px;
  background: rgba(0, 0, 0, .18);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  line-height: 1.4;
}

.category-card > a,
.category-card a.category-detail-link {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  font-size: 13px;
}

.product-section {
  padding: 55px 0 70px;
}

.section-heading {
  text-align: center;
  margin: 0 auto 36px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: 38px;
  font-weight: 400;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.product-summary {
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.product-more {
  margin: 18px 0 0;
  text-align: center;
}

.product-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border: 1px solid #d09b4d;
  background: #d09b4d;
  color: #fff;
  font-weight: 600;
}

.product-more a:hover {
  background: #b88234;
  border-color: #b88234;
}

.catalog-page {
  background: #fff;
}

.site-header.compact {
  position: static;
}

.catalog-page .top-strip {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 45px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.not-found-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 68% 18%, rgba(143, 31, 36, .16), transparent 34%),
    linear-gradient(135deg, #101318, #1b1d22 48%, #0c0e11);
  color: #f5efe5;
}

.not-found-page .site-header {
  position: static;
}

.not-found-page .nav-row {
  min-height: 108px;
}

.not-found-page .main-nav {
  justify-content: center;
}

.not-found-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 112px);
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1fr;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.not-found-code {
  color: transparent;
  background: linear-gradient(135deg, #f5efe5, #c79a58 48%, #8f1f24);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(96px, 16vw, 190px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .04em;
}

.not-found-card {
  padding: 42px;
  border: 1px solid rgba(199, 154, 88, .34);
  background: rgba(15, 17, 21, .72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.not-found-kicker {
  margin: 0 0 12px;
  color: #d7ad68;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 5px;
}

.not-found-card h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
}

.not-found-card p {
  margin: 0 0 28px;
  color: rgba(245, 239, 229, .72);
  line-height: 1.8;
}

.not-found-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.not-found-actions a {
  min-height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 154, 88, .56);
  color: #d7ad68;
}

.not-found-actions a:first-child {
  background: #c79a58;
  color: #12151a;
}

.catalog-page .nav-wrap {
  width: min(1120px, calc(100% - 32px));
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.catalog-page .logo img {
  width: 366px;
  height: 86px;
  object-fit: contain;
}

.catalog-page .main-nav {
  margin-left: auto;
}

.catalog-page .admin-link,
.catalog-page .cart-link {
  margin-left: 18px;
  color: #6f7480;
}

.catalog-hero {
  padding: 58px var(--page-pad) 42px;
  background:
    linear-gradient(135deg, rgba(17, 21, 27, .96), rgba(16, 18, 22, .98)),
    radial-gradient(circle at 72% 20%, rgba(143, 31, 36, .32), transparent 34%);
  color: #fff;
  text-align: center;
}

.catalog-hero p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .68);
}

.catalog-hero h1 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 400;
}

.catalog-hero span {
  color: rgba(255, 255, 255, .75);
}

.catalog-products {
  padding-top: 42px;
}

.catalog-pager {
  margin: 38px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.catalog-pager button {
  min-width: 88px;
  min-height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.catalog-pager button:not(:disabled):hover {
  border-color: #d09b4d;
  color: #d09b4d;
}

.catalog-pager button:disabled {
  color: #aeb4bd;
  cursor: not-allowed;
}

.product-toolbar {
  margin: 0 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 880px;
}

.filter-group button,
.product-toolbar select {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: #fff;
  color: #40454c;
  cursor: pointer;
}

.filter-group button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.brand-filter-panel {
  margin: -8px 0 30px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  background: #fafafa;
}

.brand-filter-panel span {
  padding-top: 8px;
  color: #222831;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-filter-group {
  max-width: none;
}

.brand-filter-group button {
  min-width: 78px;
  border-radius: 0;
}

.product-card {
  text-align: center;
  background: #fff;
}

.product-image-button,
.product-card h3 button,
.compact-products button,
.site-footer li button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}

.product-image-button {
  width: 100%;
}

.product-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border: 1px solid #f0f0f0;
  transition: transform .25s ease, opacity .25s ease;
}

.product-card:hover img {
  transform: translateY(-4px);
  opacity: .92;
}

.product-card h3 {
  min-height: 58px;
  margin: 18px 0 14px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.product-category {
  margin: 14px 0 -6px;
  color: var(--accent);
  font-size: 12px;
}

.catalog-page {
  background:
    linear-gradient(180deg, #f7f5f1 0, #fff 360px),
    #fff;
}

.catalog-page .site-header.compact {
  border-bottom: 1px solid rgba(25, 29, 35, .1);
  box-shadow: 0 12px 36px rgba(16, 20, 26, .06);
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 72px var(--page-pad) 62px;
  background:
    linear-gradient(90deg, rgba(9, 12, 17, .97), rgba(17, 20, 27, .9), rgba(9, 12, 17, .98)),
    radial-gradient(circle at 72% 30%, rgba(143, 31, 36, .34), transparent 34%),
    radial-gradient(circle at 28% 0, rgba(215, 173, 104, .16), transparent 28%);
}

.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(215, 173, 104, .08) 48%, transparent 56%),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 18px;
  opacity: .55;
  pointer-events: none;
}

.catalog-hero p,
.catalog-hero h1,
.catalog-hero span {
  position: relative;
}

.catalog-hero p {
  color: rgba(215, 173, 104, .94);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.catalog-hero h1 {
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 14px 30px rgba(0, 0, 0, .32);
}

.catalog-hero span {
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
}

.catalog-products {
  padding-top: 46px;
}

.catalog-products .product-toolbar,
.catalog-products .brand-filter-panel {
  border: 1px solid rgba(199, 154, 88, .22);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(21, 24, 30, .06);
}

.catalog-products .product-toolbar {
  margin: 0 0 18px;
  padding: 18px;
}

.catalog-products .brand-filter-panel {
  margin: 0 0 34px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(250, 248, 244, .94));
}

.catalog-products .filter-group button,
.catalog-products .product-toolbar select {
  min-height: 40px;
  border: 1px solid rgba(30, 35, 42, .12);
  padding: 0 17px;
  color: #333942;
  transition: border .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.catalog-products .filter-group button:hover {
  border-color: rgba(199, 154, 88, .55);
  color: #11151b;
  box-shadow: 0 8px 18px rgba(21, 24, 30, .07);
}

.catalog-products .filter-group button.active {
  border-color: #c79a58;
  background: linear-gradient(135deg, #d7ad68, #b57a36);
  color: #11151b;
  font-weight: 800;
}

.catalog-products .brand-filter-panel span {
  color: #11151b;
  font-weight: 900;
}

.catalog-grid .product-card {
  padding-bottom: 18px;
  border: 1px solid rgba(30, 35, 42, .08);
  box-shadow: 0 18px 44px rgba(20, 24, 31, .06);
  transition: transform .22s ease, box-shadow .22s ease, border .22s ease;
}

.catalog-grid .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 154, 88, .34);
  box-shadow: 0 26px 70px rgba(20, 24, 31, .11);
}

.catalog-grid .product-card img {
  border: 0;
  background: linear-gradient(180deg, #fff, #f7f7f7);
  object-fit: contain;
  padding: 18px;
}

.catalog-grid .product-card h3 {
  margin: 18px 18px 14px;
  color: #11151b;
  font-size: 16px;
  font-weight: 600;
}

.catalog-grid .product-category {
  margin: 16px 18px -4px;
  letter-spacing: .3px;
}

.details {
  min-height: 36px;
  padding: 0 18px;
  border: 0;
  cursor: pointer;
}

.product-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.add-cart {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(17, 21, 27, .18);
  background: #fff;
  color: #2d3137;
  cursor: pointer;
  font-size: 13px;
}

.add-cart:hover {
  border-color: rgba(199, 154, 88, .85);
  color: #8c642c;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
}

.arrivals {
  padding: 60px 0 70px;
  border-top: 1px solid #f1f1f1;
}

.arrival-layout {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 36px;
  align-items: stretch;
}

.testimonial {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  text-align: center;
  background: #fafafa;
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.testimonial blockquote {
  margin: 0;
  color: #555;
}

.tab-panel {
  border-top: 2px solid var(--accent);
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.tabs button {
  flex: 1;
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f8f8f8;
  color: #555;
  font-size: 12px;
  cursor: pointer;
}

.tabs button.active {
  background: #fff;
  color: var(--accent);
}

.compact-products {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-products li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.compact-products img {
  width: 66px;
  height: 66px;
  object-fit: cover;
}

.compact-products a,
.compact-products button {
  color: #3a3d41;
  font-size: 14px;
  line-height: 1.5;
}

.brand-strip {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 210px);
  gap: 30px 34px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  opacity: .96;
}

.brand-strip img {
  width: 210px;
  max-width: none;
  height: 90px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.subscribe {
  min-height: 128px;
  padding: 28px max(20px, calc((100vw - 1216px) / 2));
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 30px;
  align-items: center;
  background: var(--accent);
  color: #fff;
}

.subscribe h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
}

.subscribe form {
  display: flex;
}

.subscribe input {
  height: 46px;
  flex: 1;
  border: 0;
  padding: 0 14px;
}

.subscribe button {
  width: 110px;
  border: 0;
  background: #222;
  color: #fff;
  cursor: pointer;
}

.site-footer {
  background: var(--footer);
  color: #c7c9cc;
}

.footer-grid {
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr .75fr;
  gap: 34px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: #9a9da2;
  font-size: 13px;
  font-weight: 400;
}

.site-footer p {
  margin: 8px 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 13px;
  line-height: 1.5;
}

.site-footer a {
  color: #e2e2e2;
}

.qr {
  width: 150px;
}

.copyright {
  padding: 15px 20px 25px;
  background: var(--footer-deep);
  text-align: center;
  font-size: 14px;
}

.copyright img {
  margin: 10px auto 0;
}

.floating-contact {
  position: fixed;
  right: 22px;
  top: 38%;
  z-index: 30;
  display: grid;
  gap: 14px;
}

.customer-service-label {
  writing-mode: vertical-rl;
  position: absolute;
  right: 54px;
  top: 0;
  min-height: 118px;
  padding: 13px 7px;
  border: 1px solid rgba(191, 150, 88, .48);
  border-radius: 0;
  background: rgba(25, 27, 31, .92);
  color: #d7ad68;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-shadow: none;
  box-shadow: 0 10px 30px rgba(17, 21, 27, .16);
}

.floating-contact a,
.floating-contact button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(191, 150, 88, .58);
  border-radius: 0;
  display: grid;
  place-items: center;
  background: rgba(24, 27, 32, .88);
  color: #caa062;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 21, 27, .14);
  outline: 0;
  transition: transform .42s ease, border-color .42s ease, background-color .42s ease, color .42s ease;
}

.floating-contact a:hover,
.floating-contact button:hover {
  transform: translateX(-3px);
  border-color: rgba(215, 173, 104, .9);
  background: rgba(35, 36, 40, .95);
  color: #e0bd7c;
}

.floating-contact::before {
  content: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .5);
}

.product-modal.open {
  display: grid;
}

.cart-panel,
.user-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(10, 12, 16, .58);
  backdrop-filter: blur(8px);
}

.cart-panel.open,
.user-panel.open {
  display: grid;
}

.cart-card,
.user-card {
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  position: relative;
  padding: 28px;
  background: #fbfaf8;
  border: 1px solid rgba(199, 154, 88, .28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.cart-head span {
  color: #9b7a49;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cart-head h2 {
  margin: 6px 0 22px;
  font-size: 28px;
  color: #11151b;
}

.close-cart,
.close-user {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #333840;
  font-size: 24px;
  cursor: pointer;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid #ece7de;
}

.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  background: #f3f1ed;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
}

.cart-item p {
  margin: 0;
  color: #8c642c;
  font-size: 12px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button,
.cart-footer button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid rgba(17, 21, 27, .16);
  background: #fff;
  color: #1c2026;
  cursor: pointer;
}

.cart-empty {
  padding: 34px 20px;
  text-align: center;
  background: #fff;
  border: 1px dashed #d8c8ad;
  color: #777b82;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.user-form {
  display: grid;
  gap: 14px;
}

.user-form[hidden] {
  display: none;
}

.user-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: -6px 0 18px;
}

.user-tabs button,
.user-session button {
  min-height: 38px;
  border: 1px solid #ddd6ca;
  background: #fff;
  color: #31363d;
  cursor: pointer;
}

.user-tabs button.active {
  border-color: rgba(199, 154, 88, .82);
  background: #14171c;
  color: #d7ad68;
}

.user-form label {
  display: grid;
  gap: 7px;
  color: #535860;
  font-size: 13px;
}

.user-form input {
  height: 44px;
  border: 1px solid #ddd6ca;
  padding: 0 12px;
  background: #fff;
  outline: none;
}

.user-form input:focus {
  border-color: #c79a58;
}

.user-form button {
  min-height: 44px;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  cursor: pointer;
}

.user-note {
  margin: 14px 0 0;
  color: #777b82;
  font-size: 12px;
  line-height: 1.6;
}

.user-session {
  padding: 16px;
  background: #fff;
  border: 1px solid #ece7de;
}

.user-session p {
  margin: 0 0 12px;
  color: #30343a;
}

.product-modal-card {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  background: #fff;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.product-modal-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-modal-card h2 {
  margin: 6px 0 14px;
  font-size: 24px;
  line-height: 1.35;
}

.modal-category {
  margin: 0;
  color: var(--accent);
}

.product-specs {
  margin: 18px 0;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  color: #73777d;
}

.product-specs dd {
  margin: 0;
  color: #222;
}

.modal-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.modal-gallery button {
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.modal-gallery button.active {
  border-color: var(--accent);
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-product {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 60;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  min-height: 42px;
  padding: 11px 18px;
  background: #20252c;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  transition: .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.error {
  background: #b64545;
}

.product-page-shell {
  width: min(1216px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 70px;
}

.product-titlebar {
  margin-bottom: 28px;
  padding: 26px 28px;
  border: 1px solid rgba(199, 154, 88, .26);
  background:
    linear-gradient(135deg, rgba(17, 21, 27, .96), rgba(22, 25, 31, .92)),
    radial-gradient(circle at 82% 18%, rgba(143, 31, 36, .34), transparent 34%);
  color: #fff;
  overflow: hidden;
  max-width: 100%;
}

.product-titlebar h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-titlebar > div {
  min-width: 0;
  max-width: 100%;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
}

.breadcrumb a {
  color: #d7ad68;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 34px;
  align-items: start;
}

.qf-product-hero {
  display: grid;
  grid-template-columns: minmax(300px, 46%) 1fr;
  gap: 34px;
  margin-bottom: 36px;
}

.qf-gallery > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.qf-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qf-thumbs button {
  width: 74px;
  height: 74px;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.qf-thumbs button.active {
  border-color: var(--accent);
}

.qf-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qf-summary {
  padding-top: 4px;
}

.own-brand-card {
  margin: 0 0 20px;
  padding: 18px 20px;
  border: 1px solid rgba(199, 154, 88, .36);
  background:
    linear-gradient(135deg, #11151b, #1d2026),
    radial-gradient(circle at 88% 20%, rgba(143, 31, 36, .32), transparent 38%);
  color: #f6efe3;
}

.own-brand-card strong {
  display: block;
  margin-bottom: 8px;
  color: #d7ad68;
  font-size: 12px;
  letter-spacing: .24em;
}

.own-brand-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  letter-spacing: .14em;
}

.own-brand-card p {
  margin: 0;
  color: rgba(246, 239, 227, .72);
  line-height: 1.75;
}

.qf-category {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-weight: 700;
}

.qf-summary h2 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.3;
}

.qf-summary h3,
.qf-content-section h2,
.qf-related h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.qf-summary ul {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.9;
}

.qf-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.qf-actions button,
.qf-actions a,
.product-sidebar form button {
  min-height: 42px;
  border: 0;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  cursor: pointer;
}

.qf-actions a {
  background: #14171c;
  display: inline-flex;
  align-items: center;
}

.qf-content-section {
  margin: 0 0 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.qf-rich-text {
  color: #3d4248;
  line-height: 1.85;
}

.qf-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.qf-spec-table th,
.qf-spec-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}

.qf-spec-table th {
  width: 220px;
  background: #f7f8fa;
  color: #4d535b;
  font-weight: 600;
}

.qf-usage-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qf-usage-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.qf-usage-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.qf-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 38px;
}

.qf-tags a,
.qf-hot-tags a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  background: #f0f2f4;
  color: #4d535b;
  font-size: 13px;
}

.qf-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.qf-related-card {
  display: block;
  border: 1px solid var(--line);
  padding: 12px;
  background: #fff;
  overflow: hidden;
}

.qf-related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  padding: 16px;
  background: #fff;
  border: 1px solid #f0f0f0;
}

.qf-related-card h3 {
  margin: 12px 0 8px;
  font-size: 15px;
  line-height: 1.45;
}

.qf-related-card p {
  margin: 0;
  color: #7a7d82;
  font-size: 13px;
}

.product-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 118px;
}

.product-sidebar section {
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.product-sidebar h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.product-sidebar form {
  display: flex;
}

.product-sidebar form input {
  min-width: 0;
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 0 10px;
}

.product-sidebar p {
  margin: 8px 0;
  color: #555b63;
  line-height: 1.5;
}

.product-sidebar img {
  width: 140px;
  margin-top: 12px;
}

.product-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.product-sidebar li a {
  color: #3d4248;
  line-height: 1.45;
}

.qf-hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 980px) {
  .product-detail-layout,
  .qf-product-hero {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

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

@media (max-width: 640px) {
  .product-page-shell {
    width: calc(100% - 28px);
    padding-top: 22px;
    overflow: hidden;
  }

  .product-titlebar {
    padding: 20px 18px;
    width: 100%;
    max-width: 100%;
  }

  .product-titlebar h1 {
    width: 100%;
    max-width: 300px;
    font-size: 18px;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .qf-gallery,
  .qf-info,
  .product-sidebar {
    min-width: 0;
  }

  .qf-related-grid {
    grid-template-columns: 1fr;
  }
}

.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, .45);
}

.contact-panel.open {
  display: grid;
}

.panel-card {
  width: min(420px, calc(100% - 32px));
  background: #fff;
  padding: 26px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.panel-card h2 {
  margin: 0 0 8px;
}

.panel-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.close-panel,
.close-wechat {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.panel-card form {
  display: grid;
  gap: 12px;
}

.panel-card input,
.panel-card select,
.panel-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  min-height: 42px;
  padding: 0 12px;
  font-family: inherit;
}

.panel-card textarea {
  min-height: 100px;
  padding-top: 10px;
  resize: vertical;
}

.inline-fields {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.panel-actions {
  display: flex;
  gap: 10px;
}

.panel-actions button {
  min-height: 40px;
  border: 0;
  padding: 0 24px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.panel-actions .cancel-panel {
  background: #7f858c;
}

.wechat-panel {
  position: fixed;
  right: 74px;
  top: 42%;
  z-index: 35;
  width: 220px;
  display: none;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
  text-align: center;
}

.wechat-panel.open {
  display: block;
}

.wechat-panel img {
  width: 150px;
  margin: 16px auto 10px;
}

.wechat-panel p {
  margin: 0 0 8px;
  font-weight: 700;
}

.wechat-panel small {
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 1160px) {
  .nav-row {
    grid-template-columns: 220px minmax(150px, 1fr) auto;
  }

  .search-form {
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    justify-self: end;
  }

  .search-form:hover,
  .search-form:focus-within {
    width: min(220px, 100%);
    margin-left: 0;
  }

  .menu-toggle {
    grid-column: 3;
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 20px 20px;
    background: #14171c;
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .1);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-item > a {
    height: auto;
    padding: 13px 0;
  }

  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    padding: 0 0 8px 16px;
  }

  .account-links {
    display: none;
  }

  .categories,
  .product-grid,
  .arrival-layout,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card,
  .category-card:nth-child(n + 5) {
    grid-column: auto;
  }

  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-filter-panel {
    grid-template-columns: 1fr;
  }

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

  .brand-strip img {
    width: min(190px, 100%);
    height: 82px;
  }

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

@media (max-width: 640px) {
  .nav-row {
    width: calc(100% - 28px);
    min-height: 76px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .logo img {
    width: 228px;
    height: 62px;
  }

  .search-form {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    height: 36px;
  }

  .search-form:hover,
  .search-form:focus-within {
    width: 100%;
    margin-left: 0;
  }

  .search-form input {
    width: 100%;
    padding: 0 10px 0 13px;
    opacity: 1;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    top: 118px;
  }

  .hero {
    height: 540px;
  }

  .not-found-shell {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 82px);
    padding: 38px 0;
    gap: 24px;
  }

  .not-found-card {
    padding: 28px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero h1 {
    width: 300px;
    max-width: calc(100vw - 56px);
    font-size: 28px;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .thermal-explorer {
    min-height: 620px;
  }

  .thermal-copy {
    left: 24px;
    top: 54px;
  }

  .thermal-lens {
    --lens-left: 50%;
    --lens-top: 62%;
    width: min(72vw, 340px);
  }

  .thermal-hints {
    left: 24px;
    right: 24px;
    justify-content: flex-start;
  }

  .categories,
  .product-grid,
  .arrival-layout,
  .footer-grid,
  .subscribe {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:nth-child(n + 5) {
    grid-column: auto;
  }

  .categories,
  .product-section,
  .arrivals,
  .footer-grid {
    width: calc(100% - 28px);
  }

  .category-card {
    min-height: 210px;
  }

  .brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .brand-strip img {
    width: min(160px, 100%);
    height: 72px;
  }

  .product-modal-card {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 8px;
    top: 60%;
    gap: 10px;
    transform: scale(.86);
    transform-origin: right center;
  }

  .customer-service-label {
    display: none;
  }

  .wechat-panel {
    right: 60px;
    width: 200px;
  }
}
