@font-face {
  font-family: "HXS Cormorant";
  src: url("/_local/fonts/cormorant-latin-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 600;
}

@font-face {
  font-family: "HXS Inter";
  src: url("/_local/fonts/inter-latin-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 600;
}

:root {
  --hxs-kendra-yellow: #f1e02b;
  --hxs-ink: #0a0a0a;
  --hxs-ink-soft: #746d63;
  --hxs-paper: #ffffff;
  --hxs-paper-strong: #ffffff;
  --hxs-paper-soft: #f9f8f7;
  --hxs-white: #ffffff;
  --hxs-sand: #dbd0c5;
  --hxs-gold: var(--hxs-kendra-yellow);
  --hxs-gold-dark: #0a0a0a;
  --hxs-line: #e6e2de;
  --hxs-line-strong: #c8c1ba;
  --hxs-display: "HXS Cormorant", Cormorant, Georgia, "Times New Roman", serif;
  --hxs-body: "HXS Inter", Inter, "Avenir Next", "Helvetica Neue", sans-serif;
  --hxs-container: min(100% - 64px, 1320px);
  --hxs-content: min(100% - 48px, 820px);
  --hxs-radius: 0;
  --hxs-utility-height: 38px;
  --hxs-main-header-height: 68px;
  --hxs-promo-height: 38px;
  --hxs-header-height: calc(var(--hxs-utility-height) + var(--hxs-main-header-height) + var(--hxs-promo-height));
  --hxs-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--hxs-paper);
}

body {
  margin: 0;
  overflow-wrap: break-word;
  background: var(--hxs-paper);
  color: var(--hxs-ink-soft);
  font-family: var(--hxs-body) !important;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body :where(p, li, input, textarea, select, button, label, a, span) {
  font-family: var(--hxs-body) !important;
}

body :where(h1, h2, h3, h4, h5, h6),
body .elementor-heading-title {
  margin-block: 0 0.45em;
  color: var(--hxs-ink);
  font-family: var(--hxs-display) !important;
  font-weight: 500 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

body :where(h1, h2, h3, h4, h5, h6) span {
  font-family: inherit !important;
}

body h1,
body .elementor-heading-title.elementor-size-xxl {
  font-size: clamp(2.7rem, 5.7vw, 5.8rem) !important;
}

body h2,
body .elementor-heading-title.elementor-size-xl {
  font-size: clamp(2.15rem, 4.2vw, 4.15rem) !important;
}

body h3,
body .elementor-heading-title.elementor-size-large {
  font-size: clamp(1.35rem, 2.1vw, 2rem) !important;
}

body a {
  color: inherit;
}

body img {
  height: auto;
}

body :focus-visible {
  outline: 2px solid var(--hxs-gold);
  outline-offset: 4px;
}

.hxs-legacy-header {
  display: none !important;
}

#hxs-site-header {
  position: sticky;
  top: 0;
  z-index: 100000;
  width: 100%;
  border-bottom: 1px solid var(--hxs-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hxs-header-shell {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr) auto;
  align-items: center;
  width: var(--hxs-container);
  min-height: var(--hxs-header-height);
  margin-inline: auto;
  gap: clamp(24px, 4vw, 64px);
}

.hxs-brand {
  display: inline-flex;
  width: 226px;
  max-width: 100%;
  text-decoration: none;
}

.hxs-brand img {
  display: block;
  width: 100% !important;
  height: auto !important;
  mix-blend-mode: multiply;
}

.hxs-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(20px, 2.5vw, 40px);
}

.hxs-desktop-nav > a,
.hxs-nav-group > a {
  position: relative;
  padding-block: 34px;
  color: var(--hxs-ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.hxs-desktop-nav > a::after,
.hxs-nav-group > a::after {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  height: 1px;
  background: var(--hxs-gold-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--hxs-ease);
}

.hxs-desktop-nav > a:hover::after,
.hxs-nav-group:hover > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hxs-nav-group {
  position: relative;
}

.hxs-nav-panel {
  position: absolute;
  top: calc(100% - 14px);
  left: 50%;
  display: grid;
  width: 220px;
  padding: 12px;
  border: 1px solid var(--hxs-line);
  background: var(--hxs-white);
  box-shadow: 0 24px 70px rgba(31, 26, 18, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 220ms var(--hxs-ease);
}

.hxs-nav-group:hover .hxs-nav-panel,
.hxs-nav-group:focus-within .hxs-nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hxs-nav-panel a {
  padding: 11px 13px;
  border-bottom: 1px solid var(--hxs-line);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
}

.hxs-nav-panel a:last-child {
  border-bottom: 0;
}

.hxs-nav-panel a:hover {
  background: var(--hxs-paper);
}

.hxs-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hxs-header-quote,
.hxs-drawer-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding-inline: 20px;
  border: 1px solid var(--hxs-ink);
  background: var(--hxs-ink);
  color: var(--hxs-white) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 220ms var(--hxs-ease);
}

.hxs-header-quote:hover,
.hxs-drawer-quote:hover {
  background: transparent;
  color: var(--hxs-ink) !important;
}

.hxs-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--hxs-line-strong);
  background: transparent;
  cursor: pointer;
}

.hxs-menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--hxs-ink);
  transition: 220ms var(--hxs-ease);
}

.hxs-menu-open .hxs-menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.hxs-menu-open .hxs-menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hxs-mobile-drawer,
.hxs-drawer-scrim {
  position: fixed;
  inset: var(--hxs-header-height) 0 0 auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 300ms var(--hxs-ease);
}

.hxs-drawer-scrim {
  z-index: 1;
  width: 100%;
  background: rgba(18, 17, 14, 0.42);
}

.hxs-mobile-drawer {
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 430px);
  height: calc(100vh - var(--hxs-header-height)) !important;
  height: calc(100dvh - var(--hxs-header-height)) !important;
  min-height: calc(100vh - var(--hxs-header-height)) !important;
  max-width: 100vw;
  padding: 0 28px 32px;
  overflow-y: auto;
  border-left: 1px solid var(--hxs-line);
  background: var(--hxs-white);
  transform: translateX(100%);
}

.hxs-menu-open {
  overflow: hidden;
}

.hxs-menu-open .hxs-mobile-drawer,
.hxs-menu-open .hxs-drawer-scrim {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hxs-menu-open .hxs-mobile-drawer {
  transform: translateX(0);
}

.hxs-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  border-bottom: 1px solid var(--hxs-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hxs-drawer-close {
  display: none;
}

.hxs-mobile-drawer nav {
  display: grid;
  padding-block: 20px;
}

.hxs-mobile-drawer nav > a {
  padding: 15px 0;
  border-bottom: 1px solid var(--hxs-line);
  font-family: var(--hxs-display);
  font-size: clamp(1.45rem, 7vw, 2rem);
  line-height: 1.1;
  text-decoration: none;
}

.hxs-mobile-subnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  padding: 10px 0 18px;
  border-bottom: 1px solid var(--hxs-line);
}

.hxs-mobile-subnav a {
  padding: 7px 0;
  color: var(--hxs-ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.hxs-drawer-search {
  margin-top: auto;
  padding-block: 22px;
}

.hxs-drawer-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--hxs-ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hxs-drawer-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.hxs-drawer-search input,
.hxs-drawer-search button {
  min-height: 48px;
  border: 1px solid var(--hxs-line-strong);
}

.hxs-drawer-search input {
  min-width: 0;
  padding-inline: 14px;
  background: var(--hxs-paper);
}

.hxs-drawer-search button {
  padding-inline: 17px;
  border-left: 0;
  background: var(--hxs-ink);
  color: var(--hxs-white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hxs-section-shell {
  width: var(--hxs-container);
  margin-inline: auto;
}

:where(
  main,
  .site-main,
  [data-elementor-type="wp-page"],
  [data-elementor-type="archive"],
  [data-elementor-type="single-post"]
) :where(section, .elementor-section, .e-con):not(.hxs-home-hero):not(.hxs-collection-hero) {
  background-color: var(--hxs-white) !important;
}

.hxs-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--hxs-gold-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hxs-section-heading {
  max-width: 920px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.hxs-section-heading h2 {
  max-width: 17ch;
  margin-bottom: 20px;
}

.hxs-section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--hxs-ink-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}

.hxs-section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  max-width: none;
  gap: clamp(40px, 8vw, 120px);
}

.hxs-section-heading-split > div:last-child {
  align-self: end;
  padding-bottom: 10px;
}

.hxs-text-link {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hxs-ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hxs-home-hero {
  position: relative;
  min-height: clamp(560px, 70vh, 820px);
  overflow: hidden;
  background: #292720;
}

.hxs-home-hero::after,
.hxs-collection-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 15, 11, 0.72) 0%, rgba(17, 15, 11, 0.3) 48%, rgba(17, 15, 11, 0.04) 78%);
  content: "";
  pointer-events: none;
}

.hxs-home-hero .swiper-slide-contents,
.hxs-collection-hero .swiper-slide-contents {
  opacity: 0 !important;
  pointer-events: none !important;
}

.hxs-hero-copy,
.hxs-collection-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: var(--hxs-container);
  margin-inline: auto;
  pointer-events: none;
}

.hxs-hero-copy > *,
.hxs-collection-hero-copy > * {
  pointer-events: auto;
}

.hxs-hero-copy .hxs-eyebrow,
.hxs-collection-hero-copy .hxs-eyebrow {
  color: #e4c78d;
}

.hxs-hero-copy h1,
.hxs-collection-hero-copy h1 {
  max-width: 10.5ch;
  margin-bottom: 22px;
  color: var(--hxs-white) !important;
  font-size: clamp(3.4rem, 7.2vw, 7.7rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.045em;
}

.hxs-hero-copy p {
  max-width: 540px;
  margin: 0 0 28px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
}

.hxs-hero-cta {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding-inline: 22px;
  border: 1px solid rgba(255, 253, 248, 0.72);
  color: var(--hxs-white) !important;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 220ms var(--hxs-ease);
}

.hxs-hero-cta:hover {
  border-color: var(--hxs-white);
  background: var(--hxs-white);
  color: var(--hxs-ink) !important;
}

.hxs-home-hero .swiper-slide,
.hxs-home-hero .elementor-repeater-item,
.hxs-home-hero .swiper-slide-bg {
  min-height: clamp(560px, 70vh, 820px) !important;
}

.hxs-home-hero .swiper-slide-bg {
  background-size: cover !important;
}

.hxs-home-hero .swiper-slide-inner {
  width: var(--hxs-container) !important;
  margin-inline: auto;
  padding-inline: 0 !important;
}

.hxs-home-hero .elementor-slide-heading {
  max-width: 11ch;
  font-family: var(--hxs-display) !important;
  font-size: clamp(3.1rem, 7vw, 7.5rem) !important;
  font-weight: 500 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hxs-home-hero .elementor-slide-description {
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 19px) !important;
  line-height: 1.7;
}

.hxs-home-hero .elementor-button,
body .elementor-button,
body button[type="submit"],
body input[type="submit"] {
  min-height: 50px;
  padding: 15px 24px !important;
  border: 1px solid var(--hxs-ink) !important;
  border-radius: 0 !important;
  background: var(--hxs-ink) !important;
  color: var(--hxs-white) !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: 220ms var(--hxs-ease);
}

body .elementor-button:hover,
body button[type="submit"]:hover,
body input[type="submit"]:hover {
  border-color: var(--hxs-gold-dark) !important;
  background: var(--hxs-gold-dark) !important;
}

.hxs-benefit-section,
.hxs-featured-section {
  padding-block: clamp(72px, 10vw, 144px) !important;
  background: var(--hxs-paper) !important;
}

.hxs-benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--hxs-line-strong);
  border-left: 1px solid var(--hxs-line-strong);
}

.hxs-benefit-shell .hxs-section-heading h2 {
  max-width: 20ch;
  font-size: clamp(2.35rem, 4vw, 3.8rem) !important;
}

.hxs-benefit-shell .hxs-section-heading p {
  max-width: 700px;
}

.hxs-benefit-card {
  min-width: 0;
  padding: clamp(16px, 2.1vw, 28px);
  border-right: 1px solid var(--hxs-line-strong);
  border-bottom: 1px solid var(--hxs-line-strong);
  background: var(--hxs-white);
}

.hxs-benefit-media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  margin-bottom: 20px;
  place-items: center;
  overflow: hidden;
  background: var(--hxs-paper);
}

.hxs-benefit-media img {
  position: absolute !important;
  inset: 10% !important;
  display: block !important;
  width: 80% !important;
  height: 80% !important;
  max-height: none;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.hxs-benefit-card h3 {
  margin-bottom: 7px;
  font-family: var(--hxs-body) !important;
  font-size: clamp(14px, 1.25vw, 17px) !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  letter-spacing: -0.01em;
}

.hxs-benefit-card p {
  margin: 0;
  color: var(--hxs-ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.hxs-product-card {
  position: relative;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: var(--hxs-white);
  text-align: left !important;
}

.hxs-product-media,
.hxs-product-card .hxs-product-media,
.hxs-product-card .elementor-post__thumbnail,
.hxs-product-card .woocommerce-loop-product__link {
  --hxs-media-inset: clamp(16px, 2.4vw, 34px);
  position: relative !important;
  display: grid !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  place-items: center;
  background: var(--hxs-white);
  text-decoration: none;
}

.hxs-product-card .elementor-post__thumbnail::before,
.hxs-product-card .elementor-post__thumbnail::after {
  display: none !important;
  padding: 0 !important;
  content: none !important;
}

.hxs-product-media img,
.hxs-product-card .hxs-product-media img,
.products .hxs-product-card .hxs-product-media img,
.elementor-posts .hxs-product-card .hxs-product-media img {
  position: absolute !important;
  inset: var(--hxs-media-inset) !important;
  display: block !important;
  width: calc(100% - (var(--hxs-media-inset) * 2)) !important;
  height: calc(100% - (var(--hxs-media-inset) * 2)) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  transition: transform 480ms var(--hxs-ease) !important;
}

.hxs-product-card:hover .hxs-product-media img,
.hxs-product-card:hover > a img {
  transform: scale(1.035) !important;
}

.hxs-product-copy,
.hxs-product-card .elementor-post__text,
.hxs-product-card .woocommerce-loop-product__title {
  padding: 20px 21px 24px;
}

.hxs-product-card .elementor-post__text:empty {
  display: none;
}

.hxs-product-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--hxs-gold-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hxs-product-card h2,
.hxs-product-card h3,
.hxs-product-title,
.hxs-product-card .woocommerce-loop-product__title {
  display: -webkit-box !important;
  min-height: 2.7em;
  max-height: 2.7em !important;
  margin: 0 !important;
  overflow: hidden !important;
  font-family: var(--hxs-body) !important;
  font-size: clamp(13px, 1.1vw, 15px) !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em;
  text-align: left !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2 !important;
}

.hxs-collection-hero {
  position: relative;
  min-height: clamp(260px, 38vw, 500px) !important;
  overflow: hidden;
}

.hxs-collection-hero .swiper-slide,
.hxs-collection-hero .swiper-slide-bg,
.hxs-collection-hero .swiper-slide-inner {
  min-height: clamp(260px, 38vw, 500px) !important;
}

.hxs-collection-hero .swiper-slide-inner {
  width: var(--hxs-container) !important;
  margin-inline: auto;
  padding-inline: 0 !important;
}

.hxs-collection-hero .elementor-slide-heading {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.5vw, 5.8rem) !important;
  line-height: 0.98 !important;
}

.hxs-collection-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 6.2rem) !important;
}

.hxs-product-card h2 a,
.hxs-product-card h3 a,
.hxs-product-title a {
  text-decoration: none;
}

.hxs-product-link {
  display: block;
  margin-top: 15px;
  color: var(--hxs-ink-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hxs-page-collection .site-main,
.hxs-page-collection main,
.hxs-page-product .site-main,
.hxs-page-product main {
  background: var(--hxs-paper);
}

.hxs-page-collection .elementor-section-wrap > .elementor-section,
.hxs-page-collection [data-elementor-type="archive"] > .elementor-section {
  padding-inline: 0;
}

.hxs-page-collection .elementor-container,
.hxs-page-product .elementor-container {
  max-width: 1320px !important;
}

.hxs-page-collection ul.products,
.hxs-page-collection .elementor-posts-container,
.hxs-page-collection .eael-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100% !important;
  gap: 0 !important;
  border-top: 1px solid var(--hxs-line-strong);
  border-left: 1px solid var(--hxs-line-strong);
  background: var(--hxs-white);
}

.hxs-page-collection ul.products::before,
.hxs-page-collection ul.products::after {
  display: none !important;
}

.hxs-page-collection ul.products li.product,
.hxs-page-collection .elementor-posts-container .hxs-product-card,
.hxs-page-collection .eael-product-grid .hxs-product-card {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  border-right: 1px solid var(--hxs-line-strong);
  border-bottom: 1px solid var(--hxs-line-strong);
}

.woocommerce nav.woocommerce-pagination,
.elementor-pagination {
  margin-block: 48px !important;
}

.woocommerce nav.woocommerce-pagination ul,
.elementor-pagination {
  border: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.elementor-pagination .page-numbers {
  display: grid !important;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px !important;
  border: 1px solid var(--hxs-line-strong) !important;
  background: transparent !important;
  color: var(--hxs-ink) !important;
  font-size: 11px;
  place-items: center;
  text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.elementor-pagination .page-numbers.current {
  background: var(--hxs-ink) !important;
  color: var(--hxs-white) !important;
}

.hxs-product-detail {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: start;
  width: var(--hxs-container) !important;
  max-width: 1320px !important;
  margin: clamp(52px, 7vw, 96px) auto !important;
  gap: clamp(44px, 7vw, 110px);
}

.hxs-product-detail::before,
.hxs-product-detail::after {
  display: none !important;
}

.hxs-product-detail .woocommerce-product-gallery,
.hxs-product-detail .summary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hxs-product-detail .woocommerce-product-gallery__wrapper {
  background: var(--hxs-white);
}

.hxs-product-detail .woocommerce-product-gallery__image,
.hxs-product-detail .woocommerce-product-gallery__image > a {
  display: grid !important;
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  padding: clamp(20px, 4vw, 64px);
  overflow: hidden;
  place-items: center;
  background: var(--hxs-white);
}

.hxs-product-detail .woocommerce-product-gallery__image img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 720px !important;
  object-fit: contain !important;
  transform: none !important;
}

.hxs-product-detail .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px !important;
}

.hxs-product-detail .flex-control-thumbs.hxs-single-thumbnail {
  display: none !important;
}

.hxs-product-detail .flex-control-thumbs li {
  float: none !important;
  width: 78px !important;
  padding: 6px;
  border: 1px solid var(--hxs-line);
  background: var(--hxs-white);
}

.hxs-product-detail .summary {
  position: sticky;
  top: calc(var(--hxs-header-height) + 32px);
}

.hxs-product-detail .product_title {
  max-width: 13ch;
  margin-bottom: 24px !important;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem) !important;
}

.hxs-product-detail .price,
.hxs-product-detail .product_meta {
  color: var(--hxs-ink-soft) !important;
  font-size: 13px !important;
}

.hxs-product-detail .woocommerce-product-details__short-description {
  margin-block: 24px;
  color: var(--hxs-ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.hxs-duplicate-title,
[data-id="7c464215"].hxs-duplicate-title {
  display: none !important;
}

.hxs-page-content :where(.elementor-widget-text-editor, .elementor-widget-theme-post-content) p {
  color: var(--hxs-ink-soft);
  line-height: 1.82;
}

.hxs-page-about .elementor-section,
.hxs-page-contact .elementor-section,
.hxs-page-faq .elementor-section,
.hxs-page-article .elementor-section {
  padding-block: clamp(48px, 7vw, 104px);
}

.hxs-page-about .elementor-container,
.hxs-page-contact .elementor-container,
.hxs-page-faq .elementor-container {
  width: var(--hxs-container) !important;
  max-width: 1180px !important;
  margin-inline: auto;
}

.hxs-page-article article,
.hxs-page-article .elementor-widget-theme-post-content,
.hxs-page-article .entry-content {
  width: var(--hxs-content);
  max-width: 860px;
  margin-inline: auto;
}

.hxs-page-article article :where(h1, h2, h3),
.hxs-page-article .elementor-widget-theme-post-content :where(h1, h2, h3) {
  max-width: 20ch;
  margin-top: 1.4em;
}

.hxs-page-article article > :first-child,
.hxs-page-article .elementor-widget-theme-post-content > :first-child {
  margin-top: 0;
}

.hxs-page-article .hxs-article-image,
.hxs-page-article figure img,
.hxs-page-article .wp-caption img {
  float: none !important;
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: clamp(28px, 5vw, 56px) auto !important;
  object-fit: contain !important;
}

.hxs-page-faq .elementor-accordion-item,
.hxs-page-faq .elementor-toggle-item {
  border: 0 !important;
  border-bottom: 1px solid var(--hxs-line-strong) !important;
  background: transparent;
}

.hxs-page-faq .elementor-tab-title,
.hxs-page-faq .elementor-toggle-title {
  padding: 22px 0 !important;
  font-family: var(--hxs-display) !important;
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
  line-height: 1.3;
}

.hxs-page-faq .elementor-tab-content,
.hxs-page-faq .elementor-toggle-content {
  padding: 0 0 24px !important;
  border: 0 !important;
  color: var(--hxs-ink-soft);
}

body input:not([type="checkbox"]):not([type="radio"]),
body select,
body textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px !important;
  border: 1px solid var(--hxs-line-strong) !important;
  border-radius: 0 !important;
  background: var(--hxs-white) !important;
  color: var(--hxs-ink) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

body textarea {
  min-height: 148px;
  resize: vertical;
}

body input:focus,
body select:focus,
body textarea:focus {
  border-color: var(--hxs-gold-dark) !important;
  outline: 0;
}

body table {
  width: 100%;
  border-collapse: collapse;
  background: var(--hxs-white);
}

body th,
body td {
  padding: 14px 16px;
  border: 1px solid var(--hxs-line);
  text-align: left;
}

.elementor-location-footer {
  border-top: 1px solid var(--hxs-line-strong);
  background: var(--hxs-ink) !important;
  color: rgba(255, 253, 248, 0.78);
}

.elementor-location-footer :where(h2, h3, h4, a) {
  color: var(--hxs-white) !important;
}

.elementor-location-footer .elementor-section {
  padding-block: clamp(40px, 6vw, 80px);
}

.elementor-location-footer [data-id="3d5fbd4"] {
  order: -1;
  width: fit-content !important;
  max-width: calc(100% - 65px);
  height: auto !important;
  margin: 0 0 18px 65px !important;
}

.elementor-location-footer [data-id="3d5fbd4"] > .elementor-widget-container {
  margin: 0 !important;
}

.hxs-whatsapp-float {
  left: auto !important;
  right: 22px !important;
  bottom: 22px !important;
  width: 52px !important;
  height: 52px !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  box-shadow: 0 14px 40px rgba(18, 18, 14, 0.2) !important;
}

.hxs-language-switcher,
.hxs-language-float {
  bottom: 22px !important;
  left: 22px !important;
}

@media (max-width: 1180px) {
  :root {
    --hxs-container: min(100% - 40px, 1120px);
  }

  .hxs-header-shell {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    gap: 22px;
  }

  .hxs-brand {
    width: 190px;
  }

  .hxs-desktop-nav {
    gap: 20px;
  }

  .hxs-header-quote {
    display: none;
  }

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

  .hxs-page-collection ul.products,
  .hxs-page-collection .elementor-posts-container,
  .hxs-page-collection .eael-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  :root {
    --hxs-header-height: 78px;
  }

  .hxs-header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--hxs-header-height);
  }

  .hxs-brand {
    width: 184px;
  }

  .hxs-desktop-nav {
    display: none;
  }

  .hxs-menu-toggle {
    display: block;
  }

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

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

  .hxs-product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 36px;
  }
}

@media (max-width: 767px) {
  :root {
    --hxs-container: calc(100% - 28px);
    --hxs-content: calc(100% - 28px);
    --hxs-header-height: 72px;
  }

  body {
    font-size: 15px;
    line-height: 1.66;
  }

  body h1,
  body .elementor-heading-title.elementor-size-xxl {
    font-size: clamp(2.25rem, 11vw, 3.35rem) !important;
  }

  body h2,
  body .elementor-heading-title.elementor-size-xl {
    font-size: clamp(1.9rem, 9.4vw, 2.8rem) !important;
  }

  .hxs-header-shell {
    width: calc(100% - 28px);
  }

  .hxs-brand {
    width: 166px;
  }

  .hxs-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hxs-mobile-drawer {
    width: 100%;
    padding-inline: 22px;
    border-left: 0;
  }

  .hxs-home-hero,
  .hxs-home-hero .swiper-slide,
  .hxs-home-hero .elementor-repeater-item,
  .hxs-home-hero .swiper-slide-bg {
    min-height: min(690px, calc(100svh - var(--hxs-header-height))) !important;
  }

  .hxs-home-hero::after,
  .hxs-collection-hero::after {
    background: linear-gradient(180deg, rgba(17, 15, 11, 0.08) 20%, rgba(17, 15, 11, 0.78) 100%);
  }

  .hxs-hero-copy,
  .hxs-collection-hero-copy {
    justify-content: flex-end;
    width: calc(100% - 28px);
    padding-bottom: 54px;
  }

  .hxs-hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 14vw, 4.3rem) !important;
  }

  .hxs-hero-copy p {
    max-width: 31ch;
    margin-bottom: 22px;
    font-size: 13px;
  }

  .hxs-collection-hero,
  .hxs-collection-hero .swiper-slide,
  .hxs-collection-hero .swiper-slide-bg,
  .hxs-collection-hero .swiper-slide-inner {
    min-height: 240px !important;
  }

  .hxs-collection-hero .swiper-slide-inner {
    width: calc(100% - 28px) !important;
    align-items: flex-end !important;
    padding-block: 28px !important;
    text-align: left !important;
  }

  .hxs-collection-hero .elementor-slide-heading {
    max-width: 10ch;
    font-size: clamp(2.2rem, 11vw, 3.25rem) !important;
  }

  .hxs-collection-hero-copy {
    justify-content: center;
    padding-bottom: 0;
  }

  .hxs-collection-hero-copy h1 {
    max-width: 10ch;
    margin-bottom: 0;
    font-size: clamp(2.4rem, 11.5vw, 3.5rem) !important;
  }

  .hxs-home-hero .swiper-slide-inner {
    width: calc(100% - 28px) !important;
    align-items: flex-end !important;
    padding-block: 64px !important;
    text-align: left !important;
  }

  .hxs-home-hero .swiper-slide-contents {
    max-width: 100% !important;
  }

  .hxs-home-hero .elementor-slide-heading {
    max-width: 9.5ch;
    font-size: clamp(3rem, 15vw, 4.6rem) !important;
  }

  .hxs-home-hero .elementor-slide-description {
    max-width: 32ch;
    font-size: 14px !important;
  }

  .hxs-home-hero .elementor-button {
    width: auto !important;
  }

  .hxs-benefit-section,
  .hxs-featured-section {
    padding-block: 72px !important;
  }

  .hxs-section-heading {
    margin-bottom: 34px;
  }

  .hxs-section-heading h2 {
    max-width: 12ch;
  }

  .hxs-section-heading-split {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hxs-section-heading-split > div:last-child {
    padding-bottom: 0;
  }

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

  .hxs-benefit-card {
    padding: 14px;
  }

  .hxs-benefit-media {
    aspect-ratio: 1 / 0.86;
    margin-bottom: 14px;
  }

  .hxs-benefit-media img {
    inset: 12% !important;
    width: 76% !important;
    height: 76% !important;
  }

  .hxs-benefit-card h3 {
    font-size: 14px !important;
  }

  .hxs-benefit-card p {
    font-size: 10px;
  }

  .hxs-featured-grid,
  .hxs-page-collection ul.products,
  .hxs-page-collection .elementor-posts-container,
  .hxs-page-collection .eael-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hxs-product-media,
  .hxs-product-card .hxs-product-media,
  .hxs-product-card .elementor-post__thumbnail,
  .hxs-product-card .woocommerce-loop-product__link {
    --hxs-media-inset: 14px;
  }

  .hxs-product-copy,
  .hxs-product-card .elementor-post__text,
  .hxs-product-card .woocommerce-loop-product__title {
    padding: 14px 14px 18px;
  }

  .hxs-product-card h2,
  .hxs-product-card h3,
  .hxs-product-title,
  .hxs-product-card .woocommerce-loop-product__title {
    font-size: 12px !important;
  }

  .hxs-product-detail {
    grid-template-columns: 1fr;
    width: calc(100% - 28px) !important;
    margin-block: 34px 70px !important;
    gap: 32px;
  }

  .hxs-product-detail .summary {
    position: static;
  }

  .hxs-product-detail .woocommerce-product-gallery__image,
  .hxs-product-detail .woocommerce-product-gallery__image > a {
    padding: 22px;
  }

  .hxs-product-detail .product_title {
    max-width: 16ch;
    font-size: clamp(2.15rem, 11vw, 3.4rem) !important;
  }

  .hxs-page-about .elementor-section,
  .hxs-page-contact .elementor-section,
  .hxs-page-faq .elementor-section,
  .hxs-page-article .elementor-section {
    padding-block: 52px;
  }

  body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hxs-whatsapp-float {
    left: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    width: 48px !important;
    height: 48px !important;
  }

  .elementor-location-footer [data-id="3d5fbd4"] {
    max-width: 100%;
    margin: 0 auto 22px !important;
  }

  .hxs-language-switcher,
  .hxs-language-float {
    position: relative !important;
    inset: auto !important;
    z-index: 20;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 16px 14px calc(16px + env(safe-area-inset-bottom));
    background: var(--hxs-ink);
  }
}

@media (max-width: 430px) {
  .hxs-brand {
    width: 154px;
  }

  .hxs-benefit-card p {
    display: none;
  }

  .hxs-benefit-media {
    aspect-ratio: 1 / 0.78;
  }

  .hxs-featured-grid,
  .hxs-page-collection ul.products,
  .hxs-page-collection .elementor-posts-container,
  .hxs-page-collection .eael-product-grid {
    gap: 1px !important;
  }

  .hxs-product-link {
    display: none;
  }

  .hxs-product-kicker {
    margin-bottom: 6px;
    font-size: 8px;
  }
}

/* Kendra-inspired retail theme: presentation only, existing content stays intact. */
.hxs-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body h1,
body .elementor-heading-title.elementor-size-xxl {
  font-size: clamp(2.65rem, 4.7vw, 4.9rem) !important;
}

body h2,
body .elementor-heading-title.elementor-size-xl {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem) !important;
}

body h3,
body .elementor-heading-title.elementor-size-large {
  font-size: clamp(1.45rem, 2vw, 2.1rem) !important;
}

body :where(p, li) {
  color: var(--hxs-ink-soft);
}

body :where(a, button, input, textarea, select) {
  font-weight: 400;
}

body :focus-visible {
  outline-color: var(--hxs-ink);
}

#hxs-site-header {
  border-bottom: 0;
  background: var(--hxs-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hxs-utility-bar {
  height: var(--hxs-utility-height);
  background: var(--hxs-kendra-yellow);
  color: var(--hxs-ink);
}

.hxs-utility-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--hxs-container);
  height: 100%;
  margin-inline: auto;
  gap: 24px;
}

.hxs-utility-brand,
.hxs-utility-quote {
  color: var(--hxs-ink) !important;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.hxs-utility-quote {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.6);
  letter-spacing: 0.04em;
  text-transform: none;
}

.hxs-main-header {
  height: var(--hxs-main-header-height);
  border-bottom: 1px solid var(--hxs-line);
  background: var(--hxs-white);
}

.hxs-header-shell {
  grid-template-columns: 170px minmax(0, 1fr) minmax(190px, auto);
  min-height: var(--hxs-main-header-height);
  gap: clamp(20px, 3vw, 48px);
}

.hxs-brand {
  width: 164px;
}

.hxs-desktop-nav {
  justify-content: flex-start;
  gap: clamp(18px, 2vw, 30px);
}

.hxs-desktop-nav > a,
.hxs-nav-group > a {
  padding-block: 23px;
  color: var(--hxs-ink);
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0;
  text-transform: none;
}

.hxs-desktop-nav > a::after,
.hxs-nav-group > a::after {
  bottom: 17px;
  background: var(--hxs-ink);
}

.hxs-nav-panel {
  top: calc(100% - 2px);
  width: 240px;
  padding: 8px 16px;
  border-color: var(--hxs-line);
  box-shadow: 0 18px 45px rgba(34, 34, 34, 0.09);
}

.hxs-nav-panel a {
  padding: 13px 2px;
  color: var(--hxs-ink);
  font-size: 13px;
  font-weight: 350;
}

.hxs-nav-panel a:hover {
  background: transparent;
  color: var(--hxs-ink-soft);
}

.hxs-header-actions {
  justify-content: flex-end;
}

.hxs-header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: clamp(170px, 18vw, 250px);
  height: 42px;
  overflow: hidden;
  border-radius: 9px;
  background: #f3f1ef;
}

.hxs-header-search input[type="search"] {
  width: 100%;
  min-height: 42px;
  padding: 0 44px 0 16px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: var(--hxs-ink) !important;
  font-size: 14px !important;
}

.hxs-header-search input[type="search"]::placeholder {
  color: var(--hxs-ink-soft);
  opacity: 1;
}

.hxs-header-search button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  min-width: 44px;
  min-height: 42px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  place-items: center;
}

.hxs-header-search button[type="submit"]::before {
  width: 13px;
  height: 13px;
  border: 1.5px solid var(--hxs-ink);
  border-radius: 50%;
  content: "";
}

.hxs-header-search button[type="submit"]::after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background: var(--hxs-ink);
  content: "";
  transform: translate(6px, 6px) rotate(45deg);
}

.hxs-promo-strip {
  display: grid;
  height: var(--hxs-promo-height);
  border-bottom: 1px solid var(--hxs-line);
  background: var(--hxs-white);
  place-items: center;
}

.hxs-promo-strip a {
  color: var(--hxs-ink) !important;
  font-family: var(--hxs-display) !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.hxs-promo-strip span {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--hxs-body) !important;
  transition: transform 220ms var(--hxs-ease);
}

.hxs-promo-strip a:hover span {
  transform: translateX(4px);
}

.hxs-header-quote,
.hxs-drawer-quote {
  border-color: var(--hxs-ink);
  background: var(--hxs-white);
  color: var(--hxs-ink) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hxs-header-quote:hover,
.hxs-drawer-quote:hover {
  background: var(--hxs-kendra-yellow);
}

.hxs-mobile-drawer,
.hxs-drawer-scrim {
  inset: var(--hxs-header-height) 0 0 auto;
}

.hxs-mobile-drawer {
  height: calc(100dvh - var(--hxs-header-height)) !important;
  min-height: calc(100dvh - var(--hxs-header-height)) !important;
  border-left-color: var(--hxs-line);
}

.hxs-mobile-drawer nav > a {
  color: var(--hxs-ink);
  font-size: clamp(1.7rem, 7vw, 2.25rem);
  font-weight: 500;
}

.hxs-mobile-subnav a,
.hxs-drawer-search label {
  color: var(--hxs-ink-soft);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hxs-drawer-search input {
  background: var(--hxs-paper-soft) !important;
}

.hxs-drawer-search button {
  background: var(--hxs-kendra-yellow) !important;
  color: var(--hxs-ink) !important;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.hxs-eyebrow {
  margin-bottom: 12px;
  color: var(--hxs-ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hxs-section-heading {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.hxs-section-heading h2 {
  max-width: 22ch;
  margin-bottom: 16px;
}

.hxs-section-heading p {
  color: var(--hxs-ink-soft);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.6;
}

.hxs-home-hero,
.hxs-home-hero .swiper-slide,
.hxs-home-hero .elementor-repeater-item,
.hxs-home-hero .swiper-slide-bg {
  min-height: clamp(440px, 44vw, 620px) !important;
}

.hxs-home-hero .swiper-slide,
.hxs-collection-hero .swiper-slide {
  position: relative;
}

.hxs-home-hero .swiper-slide-bg,
.hxs-collection-hero .swiper-slide-bg {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.hxs-home-hero::after,
.hxs-collection-hero::after {
  background: linear-gradient(90deg, rgba(15, 12, 9, 0.52) 0%, rgba(15, 12, 9, 0.16) 50%, rgba(15, 12, 9, 0) 82%);
}

.hxs-hero-copy {
  justify-content: center;
  padding-bottom: 0;
}

.hxs-hero-copy .hxs-eyebrow,
.hxs-collection-hero-copy .hxs-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hxs-hero-copy h1,
.hxs-collection-hero-copy h1 {
  max-width: 12.5ch;
  margin-bottom: 16px;
  font-size: clamp(2.9rem, 4.5vw, 4.65rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.025em;
}

.hxs-hero-copy p {
  max-width: 510px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
}

.hxs-hero-cta {
  min-height: auto;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hxs-hero-cta:hover {
  border-bottom-color: var(--hxs-kendra-yellow);
  background: transparent;
  color: var(--hxs-white) !important;
}

.hxs-benefit-section,
.hxs-featured-section {
  padding-block: clamp(54px, 7vw, 92px) !important;
  background: var(--hxs-white) !important;
}

.hxs-benefit-grid {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(182px, 1fr);
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 0;
  scrollbar-width: thin;
  scroll-snap-type: inline proximity;
}

.hxs-benefit-card {
  padding: 0 12px 22px;
  border: 0;
  background: var(--hxs-white);
  scroll-snap-align: start;
}

.hxs-benefit-media {
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  background: var(--hxs-paper-soft);
}

.hxs-benefit-media img {
  inset: 5% !important;
  width: 90% !important;
  height: 90% !important;
}

.hxs-benefit-card h3 {
  margin-bottom: 4px;
  font-family: var(--hxs-display) !important;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem) !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
  text-align: center;
}

.hxs-benefit-card p {
  color: var(--hxs-ink-soft);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.hxs-featured-grid,
.hxs-page-collection ul.products,
.hxs-page-collection .elementor-posts-container,
.hxs-page-collection .eael-product-grid {
  gap: clamp(8px, 1.2vw, 16px) !important;
  border: 0;
  background: var(--hxs-white);
}

.hxs-product-card,
.hxs-page-collection ul.products li.product,
.hxs-page-collection .elementor-posts-container .hxs-product-card,
.hxs-page-collection .eael-product-grid .hxs-product-card {
  border: 0 !important;
  background: var(--hxs-white);
}

.hxs-product-media,
.hxs-product-card .hxs-product-media,
.hxs-product-card .elementor-post__thumbnail,
.hxs-product-card .woocommerce-loop-product__link {
  --hxs-media-inset: clamp(12px, 2.2vw, 30px);
  background: var(--hxs-paper-soft) !important;
}

.hxs-product-card:hover .hxs-product-media img,
.hxs-product-card:hover > a img {
  transform: scale(1.02) !important;
}

.hxs-product-copy,
.hxs-product-card .elementor-post__text,
.hxs-product-card .woocommerce-loop-product__title {
  padding: 13px 2px 22px;
}

.hxs-product-kicker {
  margin-bottom: 5px;
  color: var(--hxs-ink);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hxs-product-card h2,
.hxs-product-card h3,
.hxs-product-title,
.hxs-product-card .woocommerce-loop-product__title {
  min-height: 2.8em;
  max-height: 2.8em !important;
  color: var(--hxs-ink);
  font-family: var(--hxs-body) !important;
  font-size: clamp(13px, 1.05vw, 15px) !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  letter-spacing: 0;
}

.hxs-product-link {
  margin-top: 8px;
  color: var(--hxs-ink-soft);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hxs-collection-hero,
.hxs-collection-hero .swiper-slide,
.hxs-collection-hero .swiper-slide-bg,
.hxs-collection-hero .swiper-slide-inner {
  min-height: clamp(300px, 31vw, 430px) !important;
}

.hxs-collection-hero-copy h1,
.hxs-collection-hero .elementor-slide-heading {
  max-width: 15ch;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem) !important;
}

.hxs-page-collection .site-main,
.hxs-page-collection main,
.hxs-page-product .site-main,
.hxs-page-product main {
  background: var(--hxs-white);
}

.hxs-page-collection .woocommerce-breadcrumb,
.hxs-page-product .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
  color: var(--hxs-ink-soft) !important;
  font-size: 13px !important;
  font-weight: 350;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.elementor-pagination .page-numbers {
  border-color: var(--hxs-line) !important;
  font-weight: 400;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.elementor-pagination .page-numbers.current {
  background: var(--hxs-kendra-yellow) !important;
  color: var(--hxs-ink) !important;
}

.hxs-product-detail {
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.72fr);
  max-width: 1380px !important;
  margin: clamp(40px, 5vw, 72px) auto !important;
  gap: clamp(34px, 5vw, 72px);
}

.hxs-product-detail > .elementor-section-wrap {
  grid-column: 1 / -1;
  width: 100% !important;
}

.hxs-product-detail [data-id="2dcbe4a6"] {
  width: 100% !important;
}

.hxs-product-detail [data-id="2dcbe4a6"] > .elementor-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  width: 100% !important;
  max-width: none !important;
  gap: clamp(34px, 5vw, 72px);
}

.hxs-product-detail [data-id="2dcbe4a6"] > .elementor-container > .elementor-column {
  width: auto !important;
}

.hxs-product-detail [data-id="b62d115"] > .elementor-widget-wrap,
.hxs-product-detail [data-id="223e42e5"] > .elementor-widget-wrap {
  align-content: flex-start !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 0 !important;
}

.hxs-product-detail [data-id="3e53917f"],
.hxs-product-detail [data-id="46dc6af1"],
.hxs-product-detail [data-id="7b4fb372"],
.hxs-product-detail [data-id="3234886b"] {
  width: 100% !important;
  max-width: none !important;
}

.hxs-product-detail [data-id="223e42e5"] {
  padding-top: 4px;
}

.hxs-product-detail .woocommerce-product-gallery__wrapper,
.hxs-product-detail .woocommerce-product-gallery__image,
.hxs-product-detail .woocommerce-product-gallery__image > a {
  background: var(--hxs-paper-soft);
}

.hxs-product-detail .woocommerce-product-gallery__image,
.hxs-product-detail .woocommerce-product-gallery__image > a {
  padding: clamp(18px, 3.5vw, 48px);
}

.hxs-product-detail .summary {
  top: calc(var(--hxs-header-height) + 26px);
  padding-top: 8px;
}

.hxs-product-detail .product_title {
  max-width: 17ch;
  margin-bottom: 16px !important;
  color: var(--hxs-ink);
  font-size: clamp(2.25rem, 3.6vw, 3.65rem) !important;
  line-height: 1.02 !important;
}

.hxs-product-detail .price {
  color: var(--hxs-ink) !important;
  font-family: var(--hxs-display) !important;
  font-size: 1.65rem !important;
}

.hxs-product-detail .product_meta {
  color: var(--hxs-ink-soft) !important;
  font-size: 12px !important;
}

.hxs-product-detail .woocommerce-product-details__short-description {
  color: var(--hxs-ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.hxs-product-detail .flex-control-thumbs li {
  border-color: var(--hxs-line);
  background: var(--hxs-paper-soft);
}

.hxs-page-about .elementor-section,
.hxs-page-contact .elementor-section,
.hxs-page-faq .elementor-section,
.hxs-page-article .elementor-section {
  padding-block: clamp(44px, 6vw, 82px);
}

.hxs-page-content :where(.elementor-widget-text-editor, .elementor-widget-theme-post-content) p {
  color: var(--hxs-ink-soft);
  line-height: 1.68;
}

.hxs-page-content > [data-id="473d9cfd"] {
  display: none !important;
}

.hxs-page-about :where(h1, h2, h3, .elementor-heading-title),
.hxs-page-contact :where(h1, h2, h3, .elementor-heading-title),
.hxs-page-faq :where(h1, h2, h3, .elementor-heading-title),
.hxs-page-article :where(h1, h2, h3, .elementor-heading-title) {
  color: var(--hxs-ink) !important;
}

.hxs-page-article article,
.hxs-page-article .elementor-widget-theme-post-content,
.hxs-page-article .entry-content {
  max-width: 820px;
}

.hxs-page-article [data-id="50bdd88b"] > .elementor-widget-wrap {
  border: 1px solid var(--hxs-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hxs-page-faq .elementor-accordion-item,
.hxs-page-faq .elementor-toggle-item {
  border-bottom-color: var(--hxs-line) !important;
}

.hxs-page-faq .elementor-tab-title,
.hxs-page-faq .elementor-toggle-title {
  color: var(--hxs-ink) !important;
  font-size: clamp(1.35rem, 2vw, 1.8rem) !important;
  font-weight: 500 !important;
}

body input:not([type="checkbox"]):not([type="radio"]),
body select,
body textarea {
  min-height: 50px;
  border-color: var(--hxs-line-strong) !important;
  background: var(--hxs-white) !important;
  font-weight: 350;
}

body input:focus,
body select:focus,
body textarea:focus {
  border-color: var(--hxs-ink) !important;
}

.hxs-home-hero .elementor-button,
body .elementor-button,
body button[type="submit"],
body input[type="submit"] {
  min-height: 48px;
  padding: 14px 22px !important;
  border-color: var(--hxs-ink) !important;
  background: var(--hxs-ink) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0;
  text-transform: none;
}

body .elementor-button:hover,
body button[type="submit"]:hover,
body input[type="submit"]:hover {
  border-color: var(--hxs-kendra-yellow) !important;
  background: var(--hxs-kendra-yellow) !important;
  color: var(--hxs-ink) !important;
}

.elementor-location-footer {
  border-top-color: var(--hxs-line);
  background: var(--hxs-paper-soft) !important;
  color: var(--hxs-ink-soft);
}

.elementor-location-footer :where(h2, h3, h4, a) {
  color: var(--hxs-ink) !important;
}

.elementor-location-footer :where(.elementor-icon, i) {
  color: var(--hxs-ink) !important;
}

.elementor-location-footer svg :where(path, circle, rect, line, polyline, polygon) {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.elementor-location-footer :where(h2, h3, h4) {
  font-size: clamp(1.35rem, 2vw, 1.8rem) !important;
}

.elementor-location-footer .elementor-section {
  padding-block: clamp(34px, 5vw, 64px);
  background: var(--hxs-paper-soft) !important;
}

.hxs-whatsapp-float {
  border-color: var(--hxs-white) !important;
  box-shadow: 0 8px 24px rgba(34, 34, 34, 0.14) !important;
}

.hxs-language-switcher,
.hxs-language-float {
  color: var(--hxs-ink) !important;
}

@media (max-width: 1180px) {
  .hxs-header-shell {
    grid-template-columns: 154px minmax(0, 1fr) 178px;
    gap: 18px;
  }

  .hxs-brand {
    width: 148px;
  }

  .hxs-desktop-nav {
    gap: 17px;
  }

  .hxs-desktop-nav > a,
  .hxs-nav-group > a {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  :root {
    --hxs-utility-height: 30px;
    --hxs-main-header-height: 62px;
    --hxs-promo-height: 34px;
  }

  .hxs-utility-shell {
    width: calc(100% - 28px);
  }

  .hxs-utility-brand {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .hxs-utility-quote {
    font-size: 10px;
  }

  .hxs-main-header {
    height: var(--hxs-main-header-height);
  }

  .hxs-header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 28px);
    min-height: var(--hxs-main-header-height);
  }

  .hxs-brand {
    width: 142px;
  }

  .hxs-header-search {
    display: none;
  }

  .hxs-menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--hxs-paper-soft);
  }

  .hxs-promo-strip a {
    font-size: 14px;
  }

  .hxs-home-hero,
  .hxs-home-hero .swiper-slide,
  .hxs-home-hero .elementor-repeater-item,
  .hxs-home-hero .swiper-slide-bg {
    min-height: clamp(430px, 75vw, 610px) !important;
  }

  .hxs-product-detail {
    grid-template-columns: 1fr;
  }

  .hxs-product-detail [data-id="2dcbe4a6"] > .elementor-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hxs-product-detail .summary {
    position: static;
  }
}

@media (max-width: 767px) {
  :root {
    --hxs-container: calc(100% - 28px);
    --hxs-content: calc(100% - 28px);
  }

  body h1,
  body .elementor-heading-title.elementor-size-xxl {
    font-size: clamp(2.35rem, 11vw, 3.65rem) !important;
  }

  body h2,
  body .elementor-heading-title.elementor-size-xl {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  .hxs-utility-quote {
    border-bottom: 0;
  }

  .hxs-promo-strip {
    overflow: hidden;
  }

  .hxs-promo-strip a {
    white-space: nowrap;
  }

  .hxs-mobile-drawer {
    width: min(100%, 390px);
    padding-inline: 22px;
  }

  .hxs-home-hero,
  .hxs-home-hero .swiper-slide,
  .hxs-home-hero .elementor-repeater-item,
  .hxs-home-hero .swiper-slide-bg {
    min-height: 520px !important;
  }

  .hxs-home-hero::after {
    background: linear-gradient(0deg, rgba(12, 10, 8, 0.62) 0%, rgba(12, 10, 8, 0.08) 64%, rgba(12, 10, 8, 0) 100%);
  }

  .hxs-hero-copy {
    justify-content: flex-end;
    padding-bottom: 42px;
  }

  .hxs-hero-copy h1 {
    max-width: 82vw;
    margin-bottom: 12px;
    font-size: clamp(2.65rem, 12vw, 3.8rem) !important;
    line-height: 0.95 !important;
  }

  .hxs-hero-copy p {
    max-width: 88vw;
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hxs-benefit-section,
  .hxs-featured-section {
    padding-block: 54px !important;
  }

  .hxs-benefit-grid {
    grid-auto-columns: minmax(144px, 44vw);
    margin-right: -14px;
  }

  .hxs-benefit-card {
    padding-inline: 6px;
  }

  .hxs-benefit-card p {
    display: block;
    font-size: 10px;
  }

  .hxs-featured-grid,
  .hxs-page-collection ul.products,
  .hxs-page-collection .elementor-posts-container,
  .hxs-page-collection .eael-product-grid {
    gap: 7px !important;
  }

  .hxs-product-media,
  .hxs-product-card .hxs-product-media,
  .hxs-product-card .elementor-post__thumbnail,
  .hxs-product-card .woocommerce-loop-product__link {
    --hxs-media-inset: 12px;
  }

  .hxs-product-copy,
  .hxs-product-card .elementor-post__text,
  .hxs-product-card .woocommerce-loop-product__title {
    padding: 10px 2px 18px;
  }

  .hxs-product-detail {
    width: calc(100% - 28px) !important;
    margin-block: 26px 58px !important;
    gap: 26px;
  }

  .hxs-product-detail .product_title {
    max-width: 18ch;
    font-size: clamp(2.2rem, 10vw, 3.15rem) !important;
  }

  .elementor-location-footer .elementor-section {
    padding-block: 34px;
  }

  .hxs-language-switcher,
  .hxs-language-float {
    background: var(--hxs-kendra-yellow) !important;
  }
}

@media (max-width: 430px) {
  .hxs-utility-brand {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hxs-brand {
    width: 132px;
  }

  .hxs-benefit-card p {
    display: block;
  }

  .hxs-product-link {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.elementor-location-footer :is([data-id="cf5925e"], [data-id="1c084b7"]) .elementor-icon-box-title {
  margin-bottom: 7px !important;
  color: var(--hxs-ink) !important;
  font-family: var(--hxs-body) !important;
  font-size: clamp(16px, 1.45vw, 22px) !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere;
}

.hxs-product-media,
.hxs-product-card .hxs-product-media,
.hxs-product-card .elementor-post__thumbnail,
.hxs-product-card .woocommerce-loop-product__link,
.hxs-product-detail .woocommerce-product-gallery__wrapper,
.hxs-product-detail .woocommerce-product-gallery__image,
.hxs-product-detail .woocommerce-product-gallery__image > a {
  background: var(--hxs-white) !important;
}

.hxs-whatsapp-float {
  top: 66.6667vh !important;
  right: 22px !important;
  bottom: auto !important;
  width: 68px !important;
  height: 68px !important;
  transform: translateY(-50%) !important;
}

.hxs-whatsapp-float svg {
  width: 40px !important;
  height: 40px !important;
}

@media (max-width: 767px) {
  .hxs-whatsapp-float {
    top: 66.6667vh !important;
    right: 14px !important;
    bottom: auto !important;
    width: 60px !important;
    height: 60px !important;
  }

  .hxs-whatsapp-float svg {
    width: 36px !important;
    height: 36px !important;
  }
}
