@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Bodoni;
  src: url("../fonts/bodoni-moda.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-heading: "ivypresto-headline", "IvyPresto Headline", Bodoni, serif;
  --font-body: "tt-commons-pro", "TT Commons Pro", Manrope, Arial, sans-serif;
  --ink: #111417;
  --muted: #697078;
  --line: #d8dde1;
  --mist: #f2f4f5;
  --white: #fff;
  --silver: #b9c1c8;
  --blue: #37596f;
  --blue-deep: #203d50;
  --danger: #9c2831;
  --max: 1440px;
  --pad: clamp(18px, 3.5vw, 56px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
}
body,
button,
input,
select,
textarea {
  font-family: var(--font-body) !important;
}
body.menu-open,
body.search-open {
  overflow: hidden;
}
::selection {
  color: #fff;
  background: var(--blue);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #e9edf0;
}
::-webkit-scrollbar-thumb {
  background: #89939b;
  border: 2px solid #e9edf0;
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: 0;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: none;
}
.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px var(--pad);
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-main {
  height: 78px;
  max-width: var(--max);
  margin: auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.mobile-tools {
  display: none;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}
.header-actions:first-child {
  justify-content: flex-start;
}
.header-main .mobile-tools {
  display: none;
}
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.icon-btn:hover {
  background: var(--mist);
}
.icon-btn svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.6;
}
.badge {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.desktop-nav {
  height: 47px;
  border-top: 1px solid #eef0f1;
}
.nav-list {
  max-width: var(--max);
  height: 100%;
  margin: auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  list-style: none;
}
.nav-list a {
  position: relative;
  padding: 14px 0 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}
.mobile-nav {
  position: fixed;
  z-index: 110;
  inset: 0 0 0 auto;
  width: min(88vw, 430px);
  padding: 94px 30px 30px;
  background: #fff;
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
  overflow: auto;
}
.menu-open .mobile-nav {
  transform: none;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
}
.mobile-nav .utility {
  margin-top: 28px;
  font-size: 13px;
}
.nav-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(12, 15, 17, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.menu-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.mobile-only {
  display: none;
}
.search-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.search-open .search-panel {
  opacity: 1;
  pointer-events: auto;
}
.search-inner {
  max-width: 920px;
  margin: 14vh auto 0;
  padding: 0 24px;
}
.search-label {
  font-family: Bodoni, serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
}
.search-input-wrap {
  margin-top: 40px;
  display: flex;
  border-bottom: 2px solid var(--ink);
}
.search-input {
  flex: 1;
  padding: 16px 0;
  border: 0;
  background: transparent;
  font-size: clamp(20px, 3vw, 34px);
  outline: 0;
}
.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.search-hints a {
  padding: 8px 13px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.search-results {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.container {
  max-width: var(--max);
  margin: auto;
  padding-inline: var(--pad);
}
.section {
  padding-block: clamp(64px, 8vw, 118px);
}
.section-head {
  margin-bottom: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-head h2,
.display {
  margin: 0;
  font-family: Bodoni, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.section-head h2 {
  max-width: 760px;
  font-size: clamp(35px, 5vw, 68px);
}
.section-head p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}
.text-link svg {
  width: 15px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.btn {
  min-height: 49px;
  padding: 12px 23px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.btn:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}
.btn:active {
  transform: translateY(1px);
}
.btn.secondary {
  background: transparent;
  color: var(--ink);
}
.btn.secondary:hover {
  background: var(--mist);
}
.btn.light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}
.btn.light.secondary {
  color: #fff;
  background: transparent;
}
.btn.block {
  width: 100%;
}
.btn:disabled {
  cursor: not-allowed;
  color: #90969a;
  background: #e2e5e7;
  border-color: #e2e5e7;
}
.btn svg {
  width: 17px;
  height: 17px;
}
.hero {
  position: relative;
  min-height: min(72vh, 760px);
  overflow: hidden;
  background: #dce1e4;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 49%;
  background: #eef1f3;
  box-shadow: -35px 0 70px rgba(211, 218, 222, 0.38);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-drift 14s var(--ease) both;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: min(72vh, 760px);
  margin: auto;
  padding: clamp(70px, 11vw, 150px) var(--pad);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-copy {
  width: min(520px, 43vw);
  padding-left: 40px;
}
.hero-copy h1 {
  margin: 0;
  font-family: Bodoni, serif;
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.035em;
}
.hero-copy p {
  max-width: 42ch;
  margin: 26px 0;
  color: #3b4248;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-index {
  position: absolute;
  right: var(--pad);
  bottom: 25px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}
.hero-index span {
  color: var(--muted);
}
@keyframes hero-drift {
  from {
    transform: scale(1.025);
  }
  to {
    transform: scale(1);
  }
}
.trust-bar {
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  min-height: 100px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border: 0;
}
.trust-item svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.4;
}
.trust-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.category-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, minmax(230px, 31vw));
  gap: 10px;
}
.category-card {
  position: relative;
  overflow: hidden;
  background: #dfe3e5;
}
.category-card:first-child {
  grid-row: 1/3;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.category-card:hover img {
  transform: scale(1.035);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 12, 15, 0.72));
}
.category-label {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 22px;
  left: 25px;
  color: #fff;
}
.category-label h3 {
  margin: 0 0 2px;
  font-family: Bodoni, serif;
  font-size: clamp(26px, 3vw, 45px);
  font-weight: 500;
  line-height: 1;
}
.category-label span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 14px;
}
.product-card {
  position: relative;
  min-width: 0;
}
.product-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--mist);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease),
    filter 0.4s;
}
.product-card:hover .product-media img {
  transform: scale(1.025);
}
.wish-toggle {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
}
.wish-toggle svg {
  width: 18px;
  stroke-width: 1.5;
}
.wish-toggle.saved svg {
  fill: var(--ink);
}
.product-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  color: #fff;
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.quick-add {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  min-height: 43px;
  border: 0;
  background: rgba(17, 20, 23, 0.94);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(calc(100% + 12px));
  transition: transform 0.35s var(--ease);
}
.product-card:hover .quick-add,
.quick-add:focus-visible {
  transform: none;
}
.product-info {
  padding: 13px 2px;
}
.product-info h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}
.price {
  color: var(--ink);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}
.material-band {
  overflow: hidden;
  color: #fff;
  background: #17222a;
}
.material-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 600px;
}
.material-copy {
  padding: clamp(55px, 8vw, 120px) var(--pad);
  align-self: center;
}
.material-copy h2 {
  max-width: 650px;
  margin: 0 0 26px;
  font-family: Bodoni, serif;
  font-size: clamp(45px, 6vw, 80px);
  font-weight: 500;
  line-height: 0.94;
}
.material-copy p {
  max-width: 52ch;
  color: #c2cbd1;
}
.material-stats {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #4a565f;
}
.material-stats div {
  padding: 22px 12px 22px 0;
  border-right: 1px solid #4a565f;
}
.material-stats div:last-child {
  border: 0;
  padding-left: 18px;
}
.material-stats strong {
  display: block;
  font-family: Bodoni, serif;
  font-size: 29px;
  font-weight: 500;
}
.material-stats span {
  color: #9eabb3;
  font-size: 10px;
  text-transform: uppercase;
}
.material-image {
  min-height: 480px;
}
.material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) contrast(1.04);
}
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 650px;
}
.story-image {
  height: 100%;
  min-height: 650px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy {
  padding: 70px clamp(35px, 8vw, 130px);
}
.story-copy h2 {
  margin: 0 0 24px;
  font-family: Bodoni, serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  line-height: 1;
}
.story-copy p {
  color: var(--muted);
}
.newsletter {
  padding: 70px var(--pad);
  color: #fff;
  background: var(--blue-deep);
}
.newsletter-inner {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
}
.newsletter h2 {
  margin: 0;
  font-family: Bodoni, serif;
  font-size: clamp(38px, 5vw, 65px);
  font-weight: 500;
  line-height: 1;
}
.newsletter p {
  color: #c6d1d8;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid #fff;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
}
.newsletter-form input::placeholder {
  color: #afbec7;
}
.newsletter-form button {
  width: 52px;
  border: 0;
  color: #fff;
  background: transparent;
}
.site-footer {
  padding: 70px var(--pad) 25px;
  color: #d8dde0;
  background: #101316;
}
.footer-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px;
}
.footer-brand img {
  width: 76px;
  filter: brightness(1.6);
}
.footer-brand p {
  max-width: 34ch;
  color: #929ca3;
  font-size: 12px;
}
.footer-col h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-col a {
  display: block;
  margin: 8px 0;
  color: #aeb6bb;
  font-size: 12px;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 20px;
  border-top: 1px solid #30363a;
  display: flex;
  justify-content: space-between;
  color: #78838a;
  font-size: 10px;
}
.page-hero {
  padding: clamp(65px, 8vw, 110px) var(--pad);
  border-bottom: 1px solid var(--line);
  background: #eef1f2;
}
.page-hero .inner {
  max-width: var(--max);
  margin: auto;
}
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Bodoni, serif;
  font-size: clamp(50px, 7vw, 94px);
  font-weight: 500;
  line-height: 0.92;
}
.page-hero p {
  max-width: 62ch;
  margin: 26px 0 0;
  color: var(--muted);
}
.breadcrumb {
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.breadcrumb div {
  max-width: var(--max);
  margin: auto;
}
.breadcrumb a:hover {
  color: var(--ink);
}
.shop-intro {
  padding: 50px var(--pad) 30px;
}
.shop-intro-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.shop-intro h1 {
  margin: 0;
  font-family: Bodoni, serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  line-height: 1;
}
.shop-intro p {
  max-width: 60ch;
  color: var(--muted);
}
.shop-toolbar {
  position: sticky;
  z-index: 30;
  top: 125px;
  padding: 12px var(--pad);
  border-block: 1px solid var(--line);
  background: #fff;
}
.shop-toolbar-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-btn,
.sort-select {
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-btn svg {
  width: 16px;
}
.sort-select {
  min-width: 190px;
}
.result-count {
  color: var(--muted);
  font-size: 11px;
}
.shop-layout {
  max-width: var(--max);
  margin: auto;
  padding: 30px var(--pad) 100px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 35px;
}
.filters {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.filter-group {
  border-bottom: 1px solid var(--line);
}
.filter-group button {
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: none;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.filter-group-content {
  padding: 0 0 18px;
  display: grid;
  gap: 10px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f565b;
  font-size: 12px;
}
.check input {
  accent-color: var(--blue);
}
.price-range {
  width: 100%;
  accent-color: var(--blue);
}
.filter-drawer {
  display: none;
}
.filter-backdrop {
  display: none;
}
.product-layout {
  max-width: var(--max);
  margin: auto;
  padding: 35px var(--pad) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: clamp(35px, 6vw, 95px);
}
.section.product-recommendations {
  padding-block: 40px;
}
.product-gallery {
  min-width: 0;
  align-self: start;
}
.product-gallery-stage {
  position: relative;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: var(--mist);
}
.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 520ms var(--ease),
    object-position 520ms var(--ease);
}
.gallery-view-0 {
  object-position: 50% 50%;
  transform: scale(1);
}
.gallery-view-1 {
  object-position: 50% 52%;
  transform: scale(1.3);
}
.gallery-view-2 {
  object-position: 36% 53%;
  transform: scale(1.62);
}
.gallery-view-3 {
  object-position: 66% 48%;
  transform: scale(1.62);
}
.gallery-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(17, 20, 23, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    background 180ms ease;
}
.product-gallery-stage:hover .gallery-nav,
.gallery-nav:focus-visible {
  opacity: 1;
}
.gallery-nav:hover {
  color: #fff;
  background: var(--blue-deep);
}
.gallery-nav svg {
  width: 18px;
  height: 18px;
}
.gallery-prev {
  left: 14px;
}
.gallery-next {
  right: 14px;
}
.gallery-position {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  min-width: 48px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(17, 20, 23, 0.78);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.product-gallery-thumbs {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}
.gallery-thumb {
  position: relative;
  min-width: 0;
  padding: 3px;
  border: 1px solid #d6dce0;
  background: #fff;
}
.gallery-thumb::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 3px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease);
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--blue);
}
.gallery-thumb.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.gallery-thumb > span {
  aspect-ratio: 1 / 0.78;
  display: block;
  overflow: hidden;
  background: var(--mist);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.product-buy {
  position: sticky;
  top: 155px;
  align-self: start;
}
.product-buy .label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-buy h1 {
  margin: 10px 0 16px;
  font-family: Bodoni, serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}
.product-rating {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}
.stars {
  letter-spacing: 0.18em;
}
.product-price {
  margin: 18px 0 6px;
  font-size: 22px;
  font-weight: 750;
}
.pay-note {
  color: var(--muted);
  font-size: 11px;
}
.option-block {
  margin-top: 28px;
}
.option-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.swatches {
  display: flex;
  gap: 8px;
}
.swatch {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #c7ccd0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff;
}
.swatch.gold {
  background: #c7a15d;
}
.swatch.active {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size {
  min-width: 50px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
}
.size.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.quantity {
  display: grid;
  grid-template-columns: 42px 50px 42px;
  width: max-content;
  border: 1px solid var(--line);
}
.quantity button,
.quantity input {
  height: 42px;
  border: 0;
  background: #fff;
  text-align: center;
}
.quantity input {
  width: 50px;
}
.buy-actions {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 8px;
}
.buy-benefits {
  margin: 25px 0;
  border-block: 1px solid var(--line);
}
.buy-benefit {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.buy-benefit:last-child {
  border: 0;
}
.buy-benefit svg {
  width: 17px;
}
.accordion {
  border-bottom: 1px solid var(--line);
}
.accordion-btn {
  width: 100%;
  padding: 19px 0;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.accordion-btn svg {
  width: 18px;
  transition: transform 0.3s;
}
.accordion.open .accordion-btn svg {
  transform: rotate(45deg);
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted);
  font-size: 12px;
  transition: grid-template-rows 0.4s var(--ease);
}
.accordion.open .accordion-content {
  grid-template-rows: 1fr;
}
.accordion-content > div {
  min-height: 0;
  overflow: hidden;
}
.accordion.open .accordion-content > div {
  padding: 0 0 22px;
}
.feature-list {
  padding-left: 17px;
}
.feature-list li {
  margin: 5px 0;
}
.about-lead {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 680px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy {
  padding: clamp(60px, 9vw, 135px);
  align-self: center;
}
.about-copy h1 {
  margin: 0 0 28px;
  font-family: Bodoni, serif;
  font-size: clamp(50px, 7vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}
.about-copy p {
  max-width: 60ch;
  color: var(--muted);
}
.principles {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.principle {
  padding: 60px 35px;
  border-right: 1px solid var(--line);
}
.principle:last-child {
  border: 0;
}
.principle svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.3;
}
.principle h3 {
  font-family: Bodoni, serif;
  font-size: 30px;
  font-weight: 500;
}
.principle p {
  color: var(--muted);
  font-size: 12px;
}
.faq-layout {
  max-width: 1200px;
  margin: auto;
  padding: 60px var(--pad) 110px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 70px;
}
.faq-nav {
  position: sticky;
  top: 160px;
  align-self: start;
}
.faq-nav a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  font-size: 12px;
}
.faq-nav a:hover {
  color: var(--ink);
}
.faq-group {
  margin-bottom: 55px;
}
.faq-group h2 {
  margin: 0 0 18px;
  font-family: Bodoni, serif;
  font-size: 38px;
  font-weight: 500;
}
.faq-group .accordion-btn {
  text-align: left;
  text-transform: none;
  font-size: 14px;
}
.faq-group .accordion-content {
  font-size: 13px;
}

/* FAQ page: native Elementor Containers matching faq.html. */
body.page-id-28 .jf-reference-faq-hero {
  width: 100%;
  max-width: none;
  padding: clamp(65px, 8vw, 110px) var(--pad);
  display: flex;
  flex-direction: column;
}
body.page-id-28 .jf-reference-faq-hero > .e-con-inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
body.page-id-28 .jf-reference-faq-hero > .e-con-inner > .e-con {
  width: 100%;
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-id-28 .jf-reference-page-title {
  width: 100%;
  max-width: 900px;
  margin: 0;
}
body.page-id-28 .jf-reference-page-title .elementor-heading-title {
  margin: 0;
  line-height: 0.92;
}
body.page-id-28 .jf-reference-page-hero-copy {
  width: 100%;
  max-width: 62ch;
  margin: 26px 0 0;
}
body.page-id-28 .jf-reference-page-hero-copy p {
  margin: 0;
}
body.page-id-28 .jf-reference-faq-layout {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 60px var(--pad) 110px;
  display: flex;
  flex-direction: column;
}
body.page-id-28 .jf-reference-faq-layout > .e-con-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 70px;
}
body.page-id-28 .jf-reference-faq-nav-column,
body.page-id-28 .jf-reference-faq-content {
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-id-28 .jf-reference-faq-nav-column {
  position: sticky;
  top: 160px;
  align-self: start;
}
body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-items {
  margin: 0;
}
body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-item,
body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-item a {
  width: 100%;
}
body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-item a {
  padding: 9px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-item a:hover,
body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-item a:focus-visible {
  color: var(--ink);
}
body.page-id-28 .jf-reference-faq-group {
  width: 100%;
  margin: 0 0 18px !important;
}
body.page-id-28 .jf-reference-faq-accordion + .jf-reference-faq-group {
  margin-top: 55px;
}
body.page-id-28 .jf-reference-faq-group .elementor-heading-title {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.6;
}
body.page-id-28 .jf-reference-faq-accordion,
body.page-id-28 .jf-reference-faq-accordion .elementor-accordion {
  width: 100%;
}
body.page-id-28 .jf-reference-faq-accordion .elementor-accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
}
body.page-id-28 .jf-reference-faq-accordion .elementor-tab-title {
  min-height: 63px;
  margin: 0;
  padding: 19px 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}
body.page-id-28 .jf-reference-faq-accordion .elementor-accordion-title {
  flex: 1 1 auto;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  text-transform: none;
}
body.page-id-28 .jf-reference-faq-accordion .elementor-accordion-icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin: 0;
  order: 2;
  flex: 0 0 18px;
}
body.page-id-28 .jf-reference-faq-accordion .elementor-accordion-icon svg {
  width: 18px;
  height: 18px;
}
body.page-id-28 .jf-reference-faq-accordion .elementor-tab-content {
  padding: 0 0 22px;
  border: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
}
body.page-id-28 .jf-reference-faq-accordion .elementor-tab-content p {
  margin: 0;
}
@media (max-width: 1100px) {
  body.page-id-28 .jf-reference-faq-nav-column {
    top: 100px;
  }
}
@media (max-width: 800px) {
  body.page-id-28 .jf-reference-faq-layout > .e-con-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  body.page-id-28 .jf-reference-faq-nav-column {
    position: static;
  }
  body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
  }
  body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-item {
    width: auto;
  }
  body.page-id-28 .jf-reference-faq-nav .elementor-icon-list-item a {
    white-space: nowrap;
  }
}
.contact-layout {
  max-width: var(--max);
  margin: auto;
  padding: 70px var(--pad) 110px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.contact-info h2 {
  margin: 0 0 20px;
  font-family: Bodoni, serif;
  font-size: 42px;
  font-weight: 500;
}
.contact-info p {
  color: var(--muted);
}
.contact-list {
  margin-top: 40px;
}
.contact-list div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/3;
}
.field label {
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 1px solid var(--blue);
}
.form-note {
  color: var(--muted);
  font-size: 10px;
}
.form-status {
  padding: 14px 0;
  font-size: 12px;
}
.form-status.success {
  color: #22633a;
}
.form-status.error {
  color: var(--danger);
}
.cart-layout {
  max-width: 1200px;
  margin: auto;
  padding: 65px var(--pad) 110px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
}
.cart-title {
  margin: 0 0 35px;
  font-family: Bodoni, serif;
  font-size: 58px;
  font-weight: 500;
}
.cart-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 22px;
  border-top: 1px solid var(--line);
}
.cart-item img {
  width: 130px;
  height: 155px;
  object-fit: cover;
  background: var(--mist);
}
.cart-item h3 {
  margin: 0 0 8px;
  font-size: 14px;
}
.cart-item p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 11px;
}
.cart-item .quantity {
  margin-top: 18px;
}
.remove-item {
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid;
  background: none;
  color: var(--muted);
  font-size: 10px;
}
.line-price {
  font-size: 13px;
  font-weight: 750;
}
.order-summary {
  position: sticky;
  top: 155px;
  align-self: start;
  padding: 30px;
  background: var(--mist);
}
.order-summary h2 {
  margin: 0 0 25px;
  font-family: Bodoni, serif;
  font-size: 34px;
  font-weight: 500;
}
.summary-line {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.summary-total {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 800;
}
.promo {
  margin: 18px 0;
  display: flex;
}
.promo input {
  min-width: 0;
  flex: 1;
  padding: 10px;
  border: 1px solid var(--line);
}
.promo button {
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 0 14px;
  font-size: 10px;
}
.empty-state {
  padding: 100px 20px;
  text-align: center;
  border-block: 1px solid var(--line);
}
.empty-state svg {
  width: 48px;
  height: 48px;
  stroke-width: 1;
}
.empty-state h2 {
  font-family: Bodoni, serif;
  font-size: 40px;
  font-weight: 500;
}
.checkout-shell {
  max-width: 1200px;
  margin: auto;
  padding: 45px var(--pad) 100px;
}
.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.checkout-head h1 {
  margin: 0;
  font-family: Bodoni, serif;
  font-size: 46px;
  font-weight: 500;
}
.checkout-steps {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.checkout-steps .active {
  color: var(--ink);
  font-weight: 800;
}
.checkout-layout {
  padding-top: 45px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 80px;
}
.checkout-section {
  margin-bottom: 42px;
}
.checkout-section h2 {
  margin: 0 0 20px;
  font-family: Bodoni, serif;
  font-size: 30px;
  font-weight: 500;
}
.payment-box {
  padding: 20px;
  border: 1px solid var(--line);
}
.payment-row {
  display: flex;
  gap: 15px;
}
.payment-row .field {
  flex: 1;
}
.checkout-summary {
  padding: 28px;
  background: var(--mist);
  align-self: start;
}
.mini-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mini-item img {
  width: 60px;
  height: 70px;
  object-fit: cover;
}
.mini-item h3 {
  margin: 0;
  font-size: 11px;
}
.mini-item p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 9px;
}
.account-layout {
  max-width: 1050px;
  margin: auto;
  padding: 70px var(--pad) 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.account-panel h2 {
  font-family: Bodoni, serif;
  font-size: 42px;
  font-weight: 500;
}
.account-panel p {
  color: var(--muted);
}
.account-panel + .account-panel {
  padding-left: 70px;
  border-left: 1px solid var(--line);
}
.toast {
  position: fixed;
  z-index: 150;
  right: 25px;
  bottom: 25px;
  max-width: 340px;
  padding: 15px 18px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  transform: translateY(130%);
  opacity: 0;
  transition:
    transform 0.45s var(--ease),
    opacity 0.3s;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .mobile-only {
    display: grid;
  }
  .header-main {
    height: 70px;
    grid-template-columns: 1fr auto 1fr;
  }
  .header-main .mobile-tools {
    display: flex;
  }
  .desktop-search {
    display: none;
  }
  .brand {
    justify-content: center;
    justify-self: center;
  }
  .shop-toolbar {
    top: 70px;
  }
  .product-buy,
  .order-summary,
  .faq-nav {
    top: 100px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filters {
    display: none;
  }
  .filter-drawer {
    position: fixed;
    z-index: 120;
    inset: 0 auto 0 0;
    width: min(88vw, 380px);
    padding: 30px;
    background: #fff;
    display: block;
    overflow: auto;
    transform: translateX(-105%);
    transition: transform 0.4s var(--ease);
  }
  .filter-open .filter-drawer {
    transform: none;
  }
  .filter-backdrop {
    position: fixed;
    z-index: 110;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    display: block;
  }
  .filter-open .filter-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }
  .product-layout {
    grid-template-columns: 1fr 410px;
    gap: 35px;
  }
}
@media (max-width: 800px) {
  .section {
    padding-block: 64px;
  }
  .header-main {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 14px;
  }
  .brand span {
    display: none;
  }
  .header-actions .account-action,
  .header-actions .wish-action {
    display: none;
  }
  .hero,
  .hero-content {
    min-height: 680px;
  }
  .hero img {
    object-position: 38% center;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(transparent, rgba(236, 240, 242, 0.96) 75%);
  }
  .hero-content {
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 55px;
  }
  .hero-copy {
    width: 100%;
    padding: 0;
  }
  .hero-copy h1 {
    font-size: 56px;
    max-width: 470px;
  }
  .hero-copy p {
    max-width: 36ch;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 280px 280px;
  }
  .category-card:first-child {
    grid-column: 1/3;
    grid-row: auto;
  }
  .category-card:last-child {
    grid-column: 1/3;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-add {
    transform: none;
  }
  .material-layout,
  .story-split,
  .about-lead {
    grid-template-columns: 1fr;
  }
  .material-image,
  .story-image {
    min-height: 520px;
  }
  .story-copy {
    order: -1;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/3;
  }
  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
  .product-layout {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
  .product-buy {
    position: static;
  }
  .gallery-nav {
    width: 38px;
    height: 38px;
    opacity: 1;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
  }
  .contact-layout,
  .cart-layout,
  .checkout-layout,
  .account-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .order-summary {
    position: static;
  }
  .account-panel + .account-panel {
    padding: 0;
    border: 0;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .checkout-summary {
    order: -1;
  }
}
@media (max-width: 560px) {
  .header-main {
    height: 64px;
  }
  .announcement {
    font-size: 9px;
  }
  .icon-btn {
    width: 38px;
    height: 38px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .hero,
  .hero-content {
    min-height: 620px;
  }
  .hero img {
    object-position: 31% center;
  }
  .hero-copy h1 {
    font-size: 47px;
  }
  .hero-copy p {
    font-size: 13px;
  }
  .hero-actions .btn {
    flex: 1;
  }
  .trust-item {
    padding: 16px 12px;
  }
  .trust-item span {
    display: none;
  }
  .category-grid {
    display: block;
  }
  .category-card {
    height: 380px;
    margin-bottom: 8px;
  }
  .category-card:not(:first-child) {
    height: 270px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-grid {
    gap: 28px 8px;
  }
  .product-info h3 {
    font-size: 11px;
  }
  .product-meta {
    display: block;
  }
  .product-meta span {
    display: block;
  }
  .material-stats {
    grid-template-columns: 1fr;
  }
  .material-stats div,
  .material-stats div:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid #4a565f;
  }
  .material-stats div:last-child {
    border: 0;
  }
  .material-image,
  .story-image {
    min-height: 420px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .search-results {
    grid-template-columns: 1fr 1fr;
  }
  .shop-intro-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .shop-toolbar-inner .result-count {
    display: none;
  }
  .sort-select {
    min-width: 150px;
  }
  .product-gallery {
    gap: 5px;
  }
  .product-gallery .gallery-item {
    grid-column: 1/3;
    aspect-ratio: 4/5;
  }
  .buy-actions {
    grid-template-columns: 1fr 48px;
  }
  .page-hero {
    padding-block: 55px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .contact-layout {
    padding-top: 45px;
  }
  .cart-item {
    grid-template-columns: 95px 1fr;
  }
  .cart-item img {
    width: 95px;
    height: 120px;
  }
  .line-price {
    grid-column: 2;
  }
  .checkout-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .checkout-steps {
    margin-top: 15px;
  }
  .checkout-layout {
    padding-top: 25px;
  }
  .payment-row {
    display: grid;
  }
  .account-layout {
    padding-top: 40px;
  }
  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
  .newsletter-form {
    width: 100%;
  }
}

/* Reference-aligned catalog layout */
.shop-intro {
  min-height: 92px;
  padding: 0;
  border-bottom: 1px solid #e3e6e8;
}
.shop-intro-inner {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  min-height: 92px;
}
.catalog-controls {
  padding: 23px var(--pad) 0;
  background: #fff;
}
.catalog-controls-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.catalog-filter-row {
  min-height: 48px;
  display: flex;
  align-items: stretch;
  border-radius: 3px;
  background: #f7f8f8;
}
.catalog-filter {
  position: relative;
  min-width: 152px;
  border-right: 1px solid #e1e4e6;
}
.catalog-desktop-sort {
  min-width: 164px;
  height: 48px;
  padding: 0 32px 0 17px;
  border: 0;
  border-right: 1px solid #e1e4e6;
  color: #3f484e;
  background-color: #f7f8f8;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
}
.catalog-filter summary {
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3f484e;
  font-size: 11px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.catalog-filter summary::-webkit-details-marker {
  display: none;
}
.catalog-filter summary svg {
  width: 13px;
  height: 13px;
  margin-left: auto;
  transition: transform 180ms ease;
}
.catalog-filter[open] summary {
  color: var(--blue-deep);
  background: #eef2f4;
}
.catalog-filter[open] summary svg {
  transform: rotate(180deg);
}
.catalog-filter-popover {
  position: absolute;
  z-index: 45;
  top: calc(100% + 7px);
  left: 0;
  width: 244px;
  max-height: 330px;
  padding: 16px 18px;
  border: 1px solid #dce1e4;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 37, 45, 0.12);
  overflow: auto;
}
.catalog-filter-popover .check {
  min-height: 32px;
}
.catalog-filter-popover .check + .check {
  border-top: 1px solid #eef0f1;
}
.catalog-filter-badge {
  min-width: 0;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 9px;
  line-height: 18px;
  text-align: center;
}
.catalog-filter-badge:not(:empty) {
  width: 18px;
  height: 18px;
}
.catalog-price-label {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}
.catalog-price-label strong {
  color: var(--blue-deep);
}
.catalog-inline-check {
  min-width: 118px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5d666c;
  font-size: 10px;
  white-space: nowrap;
}
.catalog-inline-check input,
.catalog-filter-popover input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--blue);
}
.selected-filters-btn {
  min-width: 150px;
  height: 34px;
  margin: auto 10px;
  padding: 0 13px;
  border: 1px solid #cbd3d8;
  border-radius: 3px;
  color: var(--blue-deep);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}
.selected-filters-btn.has-filters {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.selected-filters-btn b {
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #e9eef1;
  color: var(--blue-deep);
  font-size: 9px;
  line-height: 17px;
}
.selected-filters-btn svg {
  width: 13px;
  height: 13px;
}
.catalog-sort-row {
  min-height: 54px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.catalog-sort-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.catalog-sort-row .sort-select {
  min-width: 148px;
  height: 36px;
  padding: 0 26px 0 0;
  border: 0;
  color: #4f585e;
  background-color: transparent;
  font-size: 10px;
  font-weight: 600;
  text-transform: none;
}
.catalog-mobile-sort {
  display: none;
}
.catalog-sort-row .result-count {
  padding-left: 0;
  border-left: 0;
  color: #747c81;
  font-size: 10px;
}
.catalog-sort-row .filter-btn {
  display: none;
}
.catalog-summary-tools {
  height: 48px;
  margin-left: auto;
  display: flex;
  align-items: center;
  border-left: 1px solid #e1e4e6;
}
.catalog-summary-tools .result-count {
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #747c81;
  font-size: 10px;
  white-space: nowrap;
}
.catalog-summary-tools .catalog-view-controls {
  height: 48px;
  padding: 0 6px;
  border-left: 1px solid #e1e4e6;
  border-right: 1px solid #e1e4e6;
}
.catalog-view-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}
.catalog-view-controls button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: #aeb7bd;
  background: transparent;
  display: grid;
  place-items: center;
}
.catalog-view-controls button:hover,
.catalog-view-controls button.active {
  color: var(--blue);
  background: #edf2f4;
}
.catalog-view-controls svg {
  width: 17px;
  height: 17px;
}
.shop-layout {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  max-width: none;
  padding: 16px 0 100px;
  display: block;
}
#shop-products > .product-grid {
  gap: 24px 18px;
}
#shop-products.catalog-grid-four > .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
#shop-products.catalog-grid-three > .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#shop-products .product-card {
  border: 1px solid #e1e4e6;
  background: #fff;
}
#shop-products .product-info {
  min-height: 78px;
  padding: 13px 12px 15px;
}
#shop-products .product-info h3 {
  text-align: center;
}
#shop-products .product-meta {
  justify-content: center;
  text-align: center;
}
.catalog-empty {
  min-height: 380px;
  padding: 70px 24px;
  border: 1px solid #e1e4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.catalog-empty svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--blue);
}
.catalog-empty h2 {
  margin: 0 0 7px;
  font-family: Bodoni, serif;
  font-size: 29px;
  font-weight: 500;
}
.catalog-empty p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}
.filter-drawer-head {
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-drawer-head strong {
  color: var(--blue-deep);
  font-size: 13px;
  text-transform: uppercase;
}
body.filter-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .catalog-filter {
    min-width: 132px;
  }
  .catalog-desktop-sort {
    min-width: 146px;
  }
  .catalog-filter summary {
    padding-inline: 12px;
  }
  .catalog-summary-tools .result-count {
    padding-inline: 10px;
  }
  .selected-filters-btn {
    min-width: 138px;
  }
  #shop-products.catalog-grid-four > .product-grid,
  #shop-products.catalog-grid-three > .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 950px) {
  .catalog-filter-row {
    display: none;
  }
  .catalog-sort-row {
    min-height: 50px;
    display: flex;
  }
  .catalog-sort-left {
    width: 100%;
    gap: 10px;
  }
  .catalog-sort-row .sort-select {
    min-width: 0;
    flex: 1 1 auto;
  }
  .catalog-mobile-sort {
    display: block;
  }
  .catalog-sort-row .result-count {
    padding-left: 10px;
    border-left: 1px solid #dfe3e5;
    white-space: nowrap;
  }
  .catalog-sort-row .filter-btn {
    height: 36px;
    padding: 0 11px;
    display: flex;
    border-color: #dce1e4;
    font-size: 10px;
    text-transform: none;
  }
  .shop-layout {
    padding-top: 0;
  }
}

@media (max-width: 800px) {
  .shop-intro,
  .shop-intro-inner {
    min-height: 44px;
  }
  .catalog-controls {
    padding-top: 12px;
  }
  .catalog-filter-row {
    display: none;
  }
  .catalog-sort-row {
    min-height: 50px;
    display: flex;
  }
  .catalog-sort-left {
    width: 100%;
    gap: 10px;
  }
  .catalog-sort-row .sort-select {
    min-width: 0;
    flex: 1 1 auto;
  }
  .catalog-mobile-sort {
    display: block;
  }
  .catalog-sort-row .result-count {
    padding-left: 10px;
    border-left: 1px solid #dfe3e5;
    white-space: nowrap;
  }
  .catalog-sort-row .filter-btn {
    height: 36px;
    padding: 0 11px;
    display: flex;
    border-color: #dce1e4;
    font-size: 10px;
    text-transform: none;
  }
  .catalog-view-controls {
    display: none;
  }
  .shop-layout {
    padding-bottom: 70px;
  }
  #shop-products.catalog-grid-four > .product-grid,
  #shop-products.catalog-grid-three > .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #shop-products > .product-grid {
    gap: 16px 10px;
  }
  .filter-drawer {
    padding: 20px;
  }
  .filter-drawer .filter-group:first-of-type {
    border-top: 0;
  }
  .filter-drawer .btn.block {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .breadcrumb {
    padding-block: 12px;
  }
  .catalog-controls,
  .shop-layout {
    padding-inline: 12px;
  }
  .shop-layout {
    width: 100%;
  }
  .catalog-sort-row .result-count {
    display: none;
  }
  #shop-products .product-info {
    min-height: 72px;
    padding: 10px 8px 12px;
  }
  #shop-products .product-info h3 {
    white-space: normal;
    line-height: 1.35;
  }
  #shop-products .product-meta {
    font-size: 10px;
  }
}
@media (max-width: 800px) {
  .hero::after {
    display: none;
  }
  .hero::before {
    top: 35%;
    width: 100%;
    background: linear-gradient(
      transparent 0%,
      rgba(236, 240, 242, 0.94) 34%,
      #ecf0f2 100%
    );
    box-shadow: none;
  }
  .hero img {
    object-position: 25% center;
  }
}
@media (max-width: 560px) {
  .hero img {
    object-position: 20% center;
  }
}

/* Reference-aligned commerce homepage */
.commerce-utility {
  min-height: 30px;
  border-bottom: 1px solid #e8ebed;
  color: #4f5960;
  background: #f7f8f8;
  font-size: 10px;
}
.commerce-utility-inner {
  width: min(100% - 36px, var(--max));
  min-height: 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.commerce-utility span,
.commerce-utility a {
  display: inline-flex;
  align-items: center;
}
.commerce-utility svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
.site-header {
  box-shadow: 0 4px 18px rgba(31, 50, 63, 0.04);
}
.header-main {
  height: 104px;
  grid-template-columns: 205px minmax(280px, 1fr) auto;
  gap: clamp(24px, 3vw, 52px);
}
.brand img {
  width: 68px;
  height: 68px;
}
.brand {
  font-size: 21px;
}
.brand small {
  font-size: 8px;
}
.desktop-search-box {
  height: 46px;
  border: 1px solid #cfd5d9;
  display: flex;
  align-items: center;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.desktop-search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(55, 89, 111, 0.1);
}
.desktop-search-box input {
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}
.desktop-search-box button {
  width: 50px;
  height: 100%;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.desktop-search-box svg {
  width: 22px;
  height: 22px;
}
.commerce-actions {
  gap: 8px;
}
.commerce-search {
  margin-right: 2px;
}
.header-login {
  min-width: 148px;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-login:hover {
  background: var(--blue-deep);
}
.header-login:active,
.home-hero-button:active,
.home-category-button:active {
  transform: translateY(1px);
}
.header-login svg {
  width: 17px;
}
.commerce-action {
  position: relative;
  min-width: 48px;
  min-height: 54px;
  padding: 4px 3px 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
}
.commerce-action-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.commerce-action svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.5;
}
.commerce-action small {
  font-size: 9px;
}
.commerce-action:hover {
  background: var(--mist);
}
.desktop-nav {
  height: 45px;
}
.nav-list {
  gap: clamp(15px, 1.8vw, 30px);
}
.nav-list a {
  font-size: 10px;
}
.home-container {
  width: min(100% - 36px, 1180px);
  margin-inline: auto;
}
.home-carousel {
  position: relative;
  height: clamp(490px, 36vw, 680px);
  overflow: hidden;
  color: #fff;
  background: #14191d;
}
.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.home-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.home-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.home-slide.active > img {
  transform: scale(1);
}
.home-slide:nth-child(2) > img {
  object-position: center 42%;
}
.home-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 13, 16, 0.86) 0%, rgba(9, 13, 16, 0.55) 33%, rgba(9, 13, 16, 0.04) 70%);
}
.home-slide-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(var(--pad), calc((100vw - 1440px) / 2 + var(--pad)));
  width: min(500px, 42vw);
  transform: translateY(-50%);
}
.home-slide-copy > span {
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.home-slide-copy h1,
.home-slide-copy h2 {
  margin: 12px 0 17px;
  font-family: Bodoni, serif;
  font-size: clamp(48px, 5.1vw, 78px);
  font-weight: 500;
  line-height: 0.94;
  text-wrap: balance;
}
.home-slide-copy p {
  max-width: 47ch;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}
.home-hero-button,
.home-category-button {
  min-width: 190px;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.home-hero-button:hover,
.home-category-button:hover {
  color: var(--ink);
  background: #fff;
}
.home-carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}
.home-carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.home-carousel-arrow.prev {
  left: 16px;
}
.home-carousel-arrow.next {
  right: 16px;
}
.home-carousel-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.home-carousel-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
}
.home-carousel-dots button.active {
  background: #fff;
}
.shopping-simple {
  padding: 58px 0 66px;
}
.shopping-simple .home-container {
  padding: 27px 34px 34px;
  background: #f1f4f5;
}
.shopping-simple h2,
.brand-proof h2 {
  margin: 0 0 28px;
  font-family: Bodoni, serif;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
.shopping-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.shopping-steps::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: #abb8c0;
}
.shopping-step {
  position: relative;
  min-height: 174px;
  padding: 36px 14px 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 7px 18px rgba(31, 50, 63, 0.08);
}
.step-number {
  position: absolute;
  z-index: 2;
  top: -14px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 750;
}
.shopping-step > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  color: var(--blue);
  stroke-width: 1.35;
}
.shopping-step h3 {
  margin: 0 0 4px;
  font-family: Bodoni, serif;
  font-size: 17px;
  font-weight: 600;
}
.shopping-step p {
  max-width: 18ch;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.home-block {
  padding-bottom: 48px;
}
.home-category-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-category-card {
  position: relative;
  height: 455px;
  overflow: hidden;
  color: #fff;
  background: #d9dfe2;
}
.home-category-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.home-category-card:hover > img {
  transform: scale(1.035);
}
.home-category-shade {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(7, 11, 14, 0.78));
}
.home-category-copy {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home-category-copy strong {
  font-family: Bodoni, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
.home-category-copy small {
  margin: 6px 0 14px;
  font-size: 10px;
}
.home-category-button {
  min-width: 150px;
  min-height: 38px;
  padding: 7px 15px;
  font-size: 10px;
}
.home-product-section {
  padding: 16px 0 58px;
}
.home-section-title {
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.home-section-title h2 {
  margin: 0;
  font-family: Bodoni, serif;
  font-size: 36px;
  font-weight: 500;
}
.home-section-title a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.home-section-title a svg {
  width: 15px;
}
.home-product-section .product-grid {
  gap: 22px;
}
.home-product-section .product-card {
  border: 1px solid #e0e4e6;
  background: #fff;
}
.home-product-section .product-media {
  aspect-ratio: 4/4.7;
}
.home-product-section .product-info {
  padding: 13px 14px 15px;
}
.home-product-section .product-info h3 {
  font-size: 12px;
}
.home-product-section .quick-add {
  right: 8px;
  bottom: 8px;
  left: 8px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.product-carousel {
  position: relative;
}
.product-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}
.product-carousel-viewport::-webkit-scrollbar {
  display: none;
}
.product-carousel-viewport:focus-visible {
  outline-offset: 5px;
}
.product-carousel .product-grid {
  display: flex;
  grid-template-columns: none;
  gap: 22px;
}
.product-carousel .product-card {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
}
.product-carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 42%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}
.product-carousel-arrow.prev {
  left: -54px;
}
.product-carousel-arrow.next {
  right: -54px;
}
.product-carousel-arrow:hover:not(:disabled) {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-50%) scale(1.05);
}
.product-carousel-arrow:active:not(:disabled) {
  transform: translateY(calc(-50% + 1px));
}
.product-carousel-arrow:disabled {
  cursor: default;
  opacity: 0.22;
}
.product-carousel-arrow svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}
.brand-proof {
  padding: 40px 0 70px;
}
.brand-proof .home-container {
  padding: 32px 40px 42px;
  background: #eef2f4;
}
.brand-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: 0 10px 32px rgba(31, 50, 63, 0.08);
}
.brand-proof-grid article {
  min-height: 190px;
  padding: 28px 22px;
  border-right: 1px solid #dfe4e7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.brand-proof-grid article:last-child {
  border: 0;
}
.brand-proof-grid svg {
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
  color: var(--blue);
  stroke-width: 1.3;
}
.brand-proof-grid strong {
  color: var(--blue);
  font-family: Bodoni, serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}
.brand-proof-grid span {
  max-width: 20ch;
  margin-top: 9px;
  color: #55616a;
  font-size: 10px;
}
.newsletter {
  padding: 34px var(--pad);
  color: #fff;
  background: var(--blue);
}
.newsletter-inner {
  grid-template-columns: 1fr minmax(280px, 520px) auto;
  align-items: center;
  gap: 45px;
}
.newsletter h2 {
  font-family: Manrope, sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.newsletter p {
  margin: 3px 0 0;
  font-size: 10px;
}
.newsletter-form {
  height: 42px;
  border: 0;
  background: #fff;
}
.newsletter-form input {
  padding: 0 14px;
  color: var(--ink);
}
.newsletter-form input::placeholder {
  color: #758088;
}
.newsletter-form button {
  color: var(--blue);
}
.newsletter-social {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.newsletter-social span {
  margin-right: 3px;
  font-size: 11px;
  font-weight: 700;
}
.newsletter-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.newsletter-social svg {
  width: 15px;
  height: 15px;
}
.site-footer {
  padding: 52px var(--pad) 22px;
  color: #4f5960;
  background: #f7f8f8;
}
.footer-grid {
  grid-template-columns: 1.2fr repeat(3, 0.85fr) 1.25fr;
  gap: 38px;
}
.footer-brand img {
  width: 68px;
  filter: none;
}
.footer-brand p,
.footer-col a,
.footer-contact p {
  color: #5e6970;
  font-size: 10px;
}
.footer-col h3,
.footer-contact h3 {
  margin: 0 0 15px;
  color: var(--blue-deep);
  font-size: 10px;
  text-transform: uppercase;
}
.footer-col a:hover {
  color: var(--blue-deep);
}
.footer-contact p {
  margin: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--blue);
}
.footer-bottom {
  margin-top: 38px;
  border-color: #dce1e4;
  color: #7b858b;
}

@media (max-width: 1100px) {
  .header-main {
    height: 72px;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
  }
  .desktop-search-box,
  .header-login,
  .commerce-search,
  .commerce-actions .wish-action {
    display: none;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .commerce-actions {
    justify-self: end;
  }
  .commerce-action {
    min-width: 42px;
  }
  .commerce-action small {
    display: none;
  }
  .home-category-card {
    height: 390px;
  }
  .product-carousel .product-card {
    flex-basis: calc((100% - 44px) / 3);
  }
  .product-carousel-arrow.prev {
    left: 8px;
  }
  .product-carousel-arrow.next {
    right: 8px;
  }
  .newsletter-inner {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-social {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
  .footer-contact {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 30px;
  }
  .footer-contact h3 {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .commerce-utility-inner {
    justify-content: center;
    text-align: center;
  }
  .commerce-utility-inner > span:last-child {
    display: none;
  }
  .home-carousel {
    height: 570px;
  }
  .home-slide > img,
  .home-slide:nth-child(2) > img {
    object-position: center;
  }
  .home-slide-overlay {
    background: linear-gradient(0deg, rgba(9, 13, 16, 0.9) 0%, rgba(9, 13, 16, 0.46) 58%, rgba(9, 13, 16, 0.08) 100%);
  }
  .home-slide-copy {
    top: auto;
    right: 30px;
    bottom: 54px;
    left: 30px;
    width: auto;
    transform: none;
  }
  .home-slide-copy h1,
  .home-slide-copy h2 {
    font-size: 50px;
  }
  .home-carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .home-carousel-arrow.prev {
    left: 10px;
  }
  .home-carousel-arrow.next {
    right: 10px;
  }
  .shopping-simple {
    padding: 34px 0 44px;
  }
  .shopping-simple .home-container {
    padding: 26px 18px 24px;
  }
  .shopping-steps {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    overflow-x: auto;
    padding: 14px 2px 12px;
    scroll-snap-type: x mandatory;
  }
  .shopping-steps::before {
    display: none;
  }
  .shopping-step {
    scroll-snap-align: start;
  }
  .home-category-row {
    gap: 10px;
  }
  .home-category-card {
    height: 330px;
  }
  .home-category-copy {
    right: 12px;
    bottom: 14px;
    left: 12px;
  }
  .home-category-copy strong {
    font-size: 25px;
  }
  .home-category-copy small {
    min-height: 29px;
  }
  .product-carousel .product-card {
    flex-basis: calc((100% - 12px) / 2);
  }
  .product-carousel .product-grid {
    gap: 12px;
  }
  .product-carousel-arrow {
    top: 38%;
    width: 38px;
    height: 38px;
  }
  .home-category-button {
    min-width: 124px;
  }
  .brand-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-proof-grid article:nth-child(2) {
    border-right: 0;
  }
  .brand-proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #dfe4e7;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .commerce-utility {
    min-height: 28px;
  }
  .commerce-utility-inner {
    width: min(100% - 20px, var(--max));
    min-height: 28px;
    font-size: 8px;
  }
  .commerce-utility-inner > span:first-child {
    font-size: 0;
  }
  .commerce-utility-inner > span:first-child > * {
    display: none;
  }
  .commerce-utility-inner > span:first-child::after {
    content: "Customer care · +86 152 1005 3024";
    font-size: 8px;
  }
  .header-main {
    height: 64px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .home-container {
    width: min(100% - 24px, 1180px);
  }
  .home-carousel {
    height: 520px;
  }
  .home-slide-copy {
    right: 22px;
    bottom: 52px;
    left: 22px;
  }
  .home-slide-copy h1,
  .home-slide-copy h2 {
    margin-block: 9px 13px;
    font-size: 42px;
  }
  .home-slide-copy p {
    font-size: 11px;
  }
  .home-hero-button {
    min-width: 164px;
  }
  .home-carousel-arrow {
    top: 44%;
  }
  .shopping-simple h2,
  .brand-proof h2 {
    font-size: 28px;
  }
  .home-category-row {
    grid-template-columns: 1fr;
  }
  .home-category-card {
    height: 390px;
  }
  .home-category-copy strong {
    font-size: 31px;
  }
  .home-category-copy small {
    min-height: 0;
  }
  .home-product-section {
    padding-top: 5px;
  }
  .home-section-title h2 {
    font-size: 31px;
  }
  .home-product-section .product-grid {
    gap: 10px;
  }
  .product-carousel .product-card {
    flex-basis: calc((100% - 10px) / 2);
  }
  .product-carousel-arrow {
    top: 36%;
    width: 36px;
    height: 36px;
  }
  .product-carousel-arrow.prev {
    left: 4px;
  }
  .product-carousel-arrow.next {
    right: 4px;
  }
  .home-product-section .product-info {
    padding: 10px 9px 12px;
  }
  .brand-proof {
    padding-top: 25px;
  }
  .brand-proof .home-container {
    padding: 26px 14px 18px;
  }
  .brand-proof-grid article {
    min-height: 150px;
    padding: 20px 10px;
  }
  .brand-proof-grid strong {
    font-size: 34px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-contact {
    display: block;
  }
}

@media (max-width: 800px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .site-footer .footer-brand,
  .site-footer .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .site-footer .footer-brand,
  .site-footer .footer-contact {
    grid-column: auto;
  }
}

/* Contact page reference match */
body.page-id-29 .contact-form {
  gap: 18px;
}
body.page-id-29 .contact-form .field input,
body.page-id-29 .contact-form .field select {
  min-height: 47px;
  padding-block: 10px;
}
body.page-id-29 .contact-form .field > label {
  line-height: 1.6 !important;
}
body.page-id-29 .contact-form .field textarea {
  min-height: 140px;
  height: 140px !important;
}
body.page-id-29 .contact-submit-field {
  gap: 7px;
}
body.page-id-29 .contact-consent {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 20px;
}
body.page-id-29 .contact-consent input {
  width: 48px;
  height: 48px;
  min-height: 48px;
  margin: 0 auto;
  accent-color: var(--blue);
}
body.page-id-29 .contact-consent label {
  max-width: 30ch;
  font-size: 10px;
  line-height: 1.35;
}
body.page-id-29 .contact-submit-field .form-note {
  margin: 17px 0 0;
}
body.page-id-29 .contact-submit-field .btn {
  min-height: 48px;
  margin-top: 1px;
}

@media (max-width: 560px) {
  body.page-id-29 .contact-consent {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  body.page-id-29 .contact-consent input {
    margin: 0;
  }
}

/* Product archive matched to the approved horizontal-filter reference. */
body.woocommerce.archive .jf-catalog {
  width: min(calc(100vw - 48px), 1360px);
  max-width: none;
  margin: 0 0 0 50%;
  padding-top: 150px;
  transform: translateX(-50%);
}
body.woocommerce.archive .jf-catalog > .jf-breadcrumbs {
  display: none;
}
body.woocommerce.archive .jf-catalog-toolbar {
  width: 100%;
  min-height: 48px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: #f7f8f8;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
body.woocommerce.archive .jf-filter-links {
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
}
body.woocommerce.archive .jf-filter-links details,
body.woocommerce.archive .jf-toolbar-sort {
  position: relative;
  flex: 0 0 143px;
  min-width: 0;
  margin: 0;
  border-right: 1px solid #e1e4e6;
}
body.woocommerce.archive .jf-toolbar-sort {
  flex-basis: 155px;
}
body.woocommerce.archive .jf-filter-links summary,
body.woocommerce.archive .jf-toolbar-sort select {
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  color: #40494f;
  background: transparent;
  font: 600 11px/1 var(--jf-body);
  letter-spacing: 0;
  text-transform: none;
}
body.woocommerce.archive .jf-filter-links summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}
body.woocommerce.archive .jf-filter-links summary::-webkit-details-marker {
  display: none;
}
body.woocommerce.archive .jf-filter-links summary svg,
body.woocommerce.archive .jf-toolbar-sort > svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}
body.woocommerce.archive .jf-filter-links details[open] > summary {
  color: var(--jf-blue);
  background: #eef2f4;
}
body.woocommerce.archive .jf-filter-links details[open] > summary svg {
  transform: rotate(180deg);
}
body.woocommerce.archive .jf-toolbar-sort select {
  padding-right: 34px;
  appearance: none;
  cursor: pointer;
}
body.woocommerce.archive .jf-toolbar-sort > svg {
  position: absolute;
  top: 50%;
  right: 14px;
  pointer-events: none;
  transform: translateY(-50%);
}
body.woocommerce.archive .jf-filter-panel,
body.woocommerce.archive .jf-price-form {
  position: absolute;
  z-index: 45;
  top: calc(100% + 7px);
  left: 0;
  width: 244px;
  padding: 14px;
  border: 1px solid #dce1e4;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 37, 45, 0.12);
}
body.woocommerce.archive .jf-filter-panel {
  max-height: 330px;
  display: grid;
  gap: 2px;
  overflow: auto;
}
body.woocommerce.archive .jf-filter-panel a {
  padding: 8px;
  font-size: 11px;
}
body.woocommerce.archive .jf-price-form label {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--jf-muted);
  font-size: 11px;
}
body.woocommerce.archive .jf-price-form input[type="range"] {
  width: 100%;
  accent-color: var(--jf-blue);
}
body.woocommerce.archive .jf-price-form button {
  width: 100%;
  min-height: 36px;
  margin-top: 13px;
  border: 0;
  color: #fff;
  background: var(--jf-ink);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
body.woocommerce.archive .jf-price-form button:hover {
  background: var(--jf-deep);
}
body.woocommerce.archive .jf-toolbar-right {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
}
body.woocommerce.archive .jf-result-count {
  min-width: 66px;
  height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #879096;
  font-size: 10px;
  white-space: nowrap;
}
body.woocommerce.archive .jf-view-toggle {
  height: 48px;
  padding: 0 5px;
  border: 0;
  border-left: 1px solid #e1e4e6;
  border-right: 1px solid #e1e4e6;
  display: flex;
  align-items: center;
  gap: 2px;
}
body.woocommerce.archive .jf-view-toggle button,
body.woocommerce.archive .jf-view-toggle button + button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: #aab4ba;
  background: transparent;
  display: grid;
  place-items: center;
  transition: color 180ms ease, background 180ms ease;
}
body.woocommerce.archive .jf-view-toggle button:hover,
body.woocommerce.archive .jf-view-toggle button.is-active {
  color: var(--jf-blue);
  background: #e8eef1;
}
body.woocommerce.archive .jf-view-toggle svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.6;
}
body.woocommerce.archive .jf-selected-filters {
  min-width: 153px;
  height: 34px;
  margin: 7px 10px;
  padding: 0 12px;
  border: 1px solid #ccd4d9;
  color: var(--jf-blue-deep);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
body.woocommerce.archive .jf-selected-filters b {
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--jf-blue-deep);
  background: #e7edf0;
  font-size: 9px;
  line-height: 17px;
  text-align: center;
}
body.woocommerce.archive .jf-selected-filters svg {
  width: 13px;
  height: 13px;
  stroke-width: 1.8;
}
body.woocommerce.archive .jf-selected-filters.has-filters {
  color: #fff;
  border-color: var(--jf-blue);
  background: var(--jf-blue);
}
body.woocommerce.archive .jf-selected-filters.has-filters b {
  color: var(--jf-blue-deep);
  background: #fff;
}
body.woocommerce.archive .jf-catalog-grid {
  width: 100%;
  margin: 0;
  padding: 0 0 94px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 16px;
}
body.woocommerce.archive .jf-catalog-grid.jf-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.woocommerce.archive .jf-catalog-grid .jf-product-card {
  min-width: 0;
  border: 1px solid #dfe3e6;
  background: #fff;
}
body.woocommerce.archive .jf-catalog-grid .jf-product-media {
  aspect-ratio: 4 / 5;
}
body.woocommerce.archive .jf-catalog-grid .jf-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.woocommerce.archive .jf-catalog-grid .jf-wishlist {
  top: 10px;
  right: 10px;
  width: 37px;
  height: 37px;
  border: 1px solid #dfe3e6;
  background: rgba(255, 255, 255, 0.94);
}
body.woocommerce.archive .jf-catalog-grid .jf-product-copy {
  min-height: 87px;
  padding: 17px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body.woocommerce.archive .jf-catalog-grid .jf-product-copy h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
body.woocommerce.archive .jf-catalog-grid .jf-product-meta {
  justify-content: center;
  gap: 7px;
  font-size: 10px;
  line-height: 1.25;
}
body.woocommerce.archive .jf-catalog-grid .jf-product-meta strong::after {
  content: " USD";
}

@media (max-width: 1100px) {
  body.woocommerce.archive .jf-catalog {
    width: min(calc(100vw - 36px), 1360px);
    padding-top: 96px;
  }
  body.woocommerce.archive .jf-filter-links details {
    flex-basis: 126px;
  }
  body.woocommerce.archive .jf-toolbar-sort {
    flex-basis: 145px;
  }
  body.woocommerce.archive .jf-filter-links summary,
  body.woocommerce.archive .jf-toolbar-sort select {
    padding-inline: 12px;
  }
  body.woocommerce.archive .jf-catalog-grid,
  body.woocommerce.archive .jf-catalog-grid.jf-columns-3,
  body.woocommerce.archive .jf-catalog-grid.jf-columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 950px) {
  body.woocommerce.archive .jf-catalog-toolbar {
    min-height: 0;
    background: transparent;
    display: block;
  }
  body.woocommerce.archive .jf-filter-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: #f7f8f8;
  }
  body.woocommerce.archive .jf-filter-links details,
  body.woocommerce.archive .jf-toolbar-sort {
    width: auto;
  }
  body.woocommerce.archive .jf-toolbar-right {
    width: 100%;
    height: 48px;
    margin-top: 8px;
    background: #f7f8f8;
  }
  body.woocommerce.archive .jf-result-count {
    margin-right: auto;
  }
}

@media (max-width: 800px) {
  body.woocommerce.archive .jf-catalog {
    padding-top: 70px;
  }
  body.woocommerce.archive .jf-catalog-grid,
  body.woocommerce.archive .jf-catalog-grid.jf-columns-3,
  body.woocommerce.archive .jf-catalog-grid.jf-columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }
}

@media (max-width: 700px) {
  body.woocommerce.archive .jf-filter-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.woocommerce.archive .jf-filter-links details,
  body.woocommerce.archive .jf-toolbar-sort {
    border-bottom: 1px solid #e1e4e6;
  }
  body.woocommerce.archive .jf-filter-links details:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body.woocommerce.archive .jf-catalog {
    width: calc(100vw - 24px);
    padding-top: 52px;
  }
  body.woocommerce.archive .jf-filter-links summary,
  body.woocommerce.archive .jf-toolbar-sort select {
    font-size: 10px;
  }
  body.woocommerce.archive .jf-view-toggle {
    display: none;
  }
  body.woocommerce.archive .jf-selected-filters {
    margin-left: 0;
  }
  body.woocommerce.archive .jf-catalog-grid .jf-product-copy {
    min-height: 78px;
    padding: 12px 7px 11px;
  }
  body.woocommerce.archive .jf-catalog-grid .jf-product-copy h3 {
    font-size: 12px;
  }
body.woocommerce.archive .jf-catalog-grid .jf-product-meta {
    flex-wrap: wrap;
    gap: 3px 6px;
    font-size: 9px;
  }
}
body.woocommerce.archive .jf-shop-filter .shop-intro {
  min-height: 92px;
}
body.woocommerce.archive .jf-shop-filter .catalog-controls {
  padding: 23px 24px 0;
}
body.woocommerce.archive .jf-shop-filter .catalog-controls-inner {
  width: min(100%, 1360px);
  max-width: 1360px;
}
@media (max-width: 1100px) {
  body.woocommerce.archive .jf-shop-filter .catalog-controls {
    padding-inline: 18px;
  }
}
@media (max-width: 950px) {
  body.woocommerce.archive .jf-shop-filter .shop-intro,
  body.woocommerce.archive .jf-shop-filter .shop-intro-inner {
    min-height: 64px;
  }
}
@media (max-width: 800px) {
  body.woocommerce.archive .jf-shop-filter .shop-intro,
  body.woocommerce.archive .jf-shop-filter .shop-intro-inner {
    min-height: 44px;
  }
  body.woocommerce.archive .jf-shop-filter .catalog-controls {
    padding: 12px 12px 0;
  }
}

/* Mobile cascade override: keep the index.html left tools, centered brand and bag. */

/* Final cascade lock for the native header cloned from index.html. */

/* Highest-specificity responsive lock: preserve the reference header's mobile row. */
