﻿:root {
  --dark: #646464;
  --dark-2: #3c3d42;
  --light: #e6e6e8;
  --panel: #f1f1f1;
  --line: #bfbfc2;
  --text: #101216;
  --text-soft: #4d5157;
  --hover-on-dark: rgba(255, 255, 255, 0.12);
  --hover-on-light: rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--dark-2);
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #676d78;
  outline-offset: 2px;
}

h1,
h2,
h3,
.menu-row,
.language-panel h3,
.language-panel label,
.newsletter-panel h3 {
  font-weight: 200;
}

.icon {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  transition: filter 180ms ease;
}

.icon-light {
  filter: invert(1) contrast(1.1);
}

.site-header {
  --header-height: 3.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: calc((var(--header-height) * 1.2) + 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.3rem;
  color: #fff;
  background: transparent;
  border-bottom: 0;
  transition:
    height 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: calc((var(--header-height) * 1.2) + 10px);
  background: var(--panel);
  color: #111318;
  box-shadow: none;
}

.site-header.is-scrolled .icon-light {
  filter: none;
}

.site-header.is-scrolled .logo-img-light {
  filter: none;
}

.site-header.is-scrolled .menu-trigger:hover,
.site-header.is-scrolled .lang-trigger:hover,
.site-header.is-scrolled .icon-button:hover {
  color: rgb(100, 100, 100);
  text-shadow: none;
}

.site-header.is-scrolled a:hover .icon-light,
.site-header.is-scrolled button:hover .icon-light {
  filter: brightness(0) saturate(100%) invert(39%);
}

.site-header.is-scrolled a:hover .icon:not(.icon-light),
.site-header.is-scrolled button:hover .icon:not(.icon-light) {
  filter: brightness(0) saturate(100%) invert(39%);
}

.site-header.is-scrolled .logo:hover .logo-img-light {
  filter: brightness(0) saturate(100%) invert(39%);
}

.site-header.header-light {
  background: var(--panel);
  color: #111318;
}

.site-header.header-light .icon-light,
.site-header.header-light .logo-img-light {
  filter: none;
}

.site-header.header-light .menu-trigger:hover,
.site-header.header-light .lang-trigger:hover,
.site-header.header-light .icon-button:hover {
  color: rgb(100, 100, 100);
  text-shadow: none;
}

.site-header.header-light a:hover .icon-light,
.site-header.header-light button:hover .icon-light {
  filter: brightness(0) saturate(100%) invert(39%);
}

.site-header.header-light .logo:hover .logo-img-light {
  filter: brightness(0) saturate(100%) invert(39%);
}

.menu-trigger,
.lang-trigger,
.icon-button {
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.54rem;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.08em;
  line-height: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: calc(1rem + 10px);
}

.menu-trigger .icon {
  width: 1.6rem;
  height: 1.6rem;
}

.icon-button .icon {
  width: 1.6rem;
  height: 1.6rem;
}

.lang-trigger .icon {
  width: 1.2rem;
  height: 1.2rem;
}

button,
.pill-button,
.menu-row,
.menu-trigger,
.lang-trigger,
.icon-button,
.panel-close,
.newsletter-link,
.menu-language a,
.submenu a,
.footer-columns a,
.text-link {
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

.menu-trigger span,
.lang-trigger span {
  font-size: 1.12rem;
  line-height: 1;
  display: inline-block;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
}

.logo.dark {
  position: static;
  transform: none;
  margin: 0 auto 1rem;
  display: inline-flex;
}

.logo-img {
  display: block;
  width: 5.4rem;
  height: auto;
  transition: filter 180ms ease;
}

.logo-img-light {
  filter: invert(1) brightness(2);
}

.hero-top {
  min-height: 100vh;
  background: var(--dark);
}

.hero-product {
  background: #040404;
  min-height: 63vh;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 10vw 4rem;
  position: relative;
}

.hero-product-copy {
  max-width: 28rem;
}

.hero-product-copy h1 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.hero-product-copy p {
  color: #d3d3d5;
  margin: 0.35rem 0 1.6rem;
}

.overline {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.pill-button {
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  min-width: 10rem;
  padding: 0 1.4rem;
  font-size: 0.88rem;
  background: transparent;
  cursor: pointer;
}

.pill-button.dark {
  color: #111;
  border-color: #111;
}

.site-header:not(.is-scrolled):not(.header-light) .menu-trigger:hover,
.site-header:not(.is-scrolled):not(.header-light) .lang-trigger:hover,
.site-header:not(.is-scrolled):not(.header-light) .icon-button:hover {
  color: rgb(225, 225, 225);
  text-shadow: none;
}

.pill-button:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.pill-button.dark:hover {
  color: #666d7b;
  text-shadow: none;
}

.menu-row:hover,
.accordion-row:hover {
  color: #727987;
}

.submenu a:hover,
.footer-columns a:hover,
.menu-language a:hover,
.newsletter-link:hover,
.text-link:hover {
  color: #727987;
  opacity: 1;
}

.site-header:not(.is-scrolled):not(.header-light) a:hover .icon-light,
.site-header:not(.is-scrolled):not(.header-light) button:hover .icon-light {
  filter: brightness(0) saturate(100%) invert(88%);
}

a:hover .icon:not(.icon-light),
button:hover .icon:not(.icon-light) {
  filter: brightness(1.7);
}

.site-header:not(.is-scrolled):not(.header-light) .logo:hover .logo-img-light {
  filter: brightness(0) saturate(100%) invert(88%);
}

.logo.dark:hover .logo-img {
  filter: brightness(1.55);
}

.hero-product-visual {
  display: flex;
  justify-content: center;
}

.faucet-shape {
  width: min(25rem, 70vw);
  height: min(24rem, 52vw);
  position: relative;
}

.faucet-shape .pipe {
  position: absolute;
  left: 3rem;
  top: 1rem;
  width: 12rem;
  height: 15rem;
  border: 0.8rem solid #bfc2c8;
  border-bottom: 0;
  border-radius: 6.5rem 6.5rem 0 0;
  box-shadow:
    inset -0.3rem 0.2rem 0.45rem rgba(255, 255, 255, 0.6),
    0.5rem 0.2rem 0.7rem rgba(0, 0, 0, 0.4);
}

.faucet-shape .pipe::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  bottom: -9.6rem;
  width: 0.85rem;
  height: 10rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #cfd2d7, #a9adb5, #d4d7dd);
}

.faucet-shape .control {
  position: absolute;
  bottom: 0;
  left: 14.2rem;
  width: 3.2rem;
  height: 2.5rem;
  border-radius: 0.35rem;
  background: linear-gradient(150deg, #d0d4da, #8c9098 64%, #d3d6dc);
}

.faucet-shape.light .pipe {
  border-color: #aeb1b8;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.dot.active {
  background: #fff;
}

main {
  background: var(--light);
}

.light-section {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3.6rem 0;
}

.light-section h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 400;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.placeholder-card {
  border-radius: 0.75rem;
  min-height: 14rem;
  background: #dddddf;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.8rem;
  font-size: 0.92rem;
}

.section-mini {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-align: center;
}

.references h2 {
  text-align: center;
  max-width: 34rem;
  margin: 0.5rem auto 2rem;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.reference-image {
  background: #dcdcdf;
  min-height: 11rem;
  border-radius: 0.75rem;
  margin-bottom: 0.8rem;
}

.reference-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.reference-card p {
  margin: 0.2rem 0 0;
  color: #5d5f64;
  font-size: 0.9rem;
}

.product-preview {
  border-top: 1px solid #d2d2d4;
  border-bottom: 1px solid #d2d2d4;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.product-visual {
  min-height: 26rem;
}

.crumbs,
.family,
.sku,
.description {
  margin: 0;
}

.crumbs {
  color: #70737a;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.family {
  color: #70737a;
  margin-bottom: 0.45rem;
}

.sku {
  color: #70737a;
  margin-bottom: 0.8rem;
}

.description {
  color: #4f5259;
  max-width: 28ch;
  margin-bottom: 1.2rem;
}

.color-swatches {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.swatch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #c1c1c4;
}

.swatch.white {
  background: #efefef;
}

.swatch.black {
  background: #24262a;
}

.swatch.steel {
  background: #a6acb4;
}

.swatch.gold {
  background: #ccab52;
}

.text-link {
  margin-top: 0.8rem;
  display: block;
  text-decoration: underline;
}

.accordion-list {
  border-top: 1px solid #c8c8cb;
}

.accordion-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c8c8cb;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font: inherit;
  font-size: clamp(1.25rem, 3vw, 2.05rem);
  padding: 21px 0;
  cursor: pointer;
}

.acc-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.acc-icon.minus {
  display: none;
}

.accordion-row.active .acc-icon.plus {
  display: none;
}

.accordion-row.active .acc-icon.minus {
  display: inline-block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: #51545c;
  padding: 0 0 0;
}

.accordion-content.open {
  max-height: 6rem;
  padding: 0.4rem 0 1rem;
}

.related-title {
  margin-top: 3rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.related-card {
  background: #dfdfe1;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.related-image {
  min-height: 10rem;
  border-radius: 0.5rem;
  background: #d4d5d8;
  margin-bottom: 0.7rem;
}

.related-family,
.related-name {
  margin: 0;
}

.contact-news {
  background: #ededee;
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3.4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-news h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 400;
}

.contact-news p {
  color: #4f535a;
  max-width: 33rem;
}

.site-footer {
  background: #fff;
  padding: 2.8rem 45px 1.8rem;
}

.footer-columns {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background: var(--panel);
  border-radius: 1.35rem;
  padding: 40px 22.4px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.footer-columns h3 {
  margin: 0 0 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1.68rem;
  font-weight: 200;
}

.footer-columns a {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d3138;
  font-family: "Poppins", sans-serif;
  font-size: 1.104rem;
  font-weight: 200;
}

.social-row {
  display: flex;
  gap: 1.1rem;
}

.social-row .icon {
  width: 1.95rem;
  height: 1.95rem;
  filter: brightness(0) saturate(0) invert(74%);
}

.social-row a:hover .icon {
  filter: brightness(0) saturate(0) invert(68%);
}

.footer-bottom {
  width: 100%;
  margin: 0;
  padding-inline: 45px;
  box-sizing: border-box;
  padding-top: 1rem;
  border-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #484b52;
  font-family: "Poppins", sans-serif;
  font-size: 0.918rem;
  font-weight: 200;
  text-align: center;
}

.footer-bottom div {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.overlay[hidden] {
  display: none !important;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 46, 51, 0.64);
  animation: overlayFadeIn 260ms ease;
}

.menu-panel,
.search-panel,
.language-panel,
.newsletter-panel {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border-radius: 1.55rem;
  color: var(--text);
}

.menu-panel {
  --menu-scrollbar-size: 0.42rem;
  --menu-scrollbar-gap: 0.34rem;
  --menu-scrollbar-offset: 0px;
  --menu-scrollbar-margin: 15px;
  --menu-scroll-content-gap: 10px;
  width: min(21rem, calc(100vw - 6rem));
  height: calc(100vh - 2rem);
  height: calc(100dvh - 2rem);
  margin: 1rem 0 0 1.4rem;
  padding: 1.35rem calc(1.2rem + var(--menu-scrollbar-gap)) 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideInFromLeft 320ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.menu-scroll {
  flex: 1;
  min-height: 0;
  margin-left: 20px;
  margin-right: calc((var(--menu-scrollbar-margin) * -1));
  padding-right: var(--menu-scroll-content-gap);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(73, 78, 86, 0.62) transparent;
  scrollbar-gutter: stable;
}

.menu-scroll::-webkit-scrollbar {
  width: calc(var(--menu-scrollbar-size) + var(--menu-scrollbar-gap));
  background: transparent;
}

.menu-scroll::-webkit-scrollbar-track {
  background: transparent;
  margin-block-start: 0.9rem;
  margin-block-end: 0;
}

.menu-scroll::-webkit-scrollbar-button {
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  -webkit-appearance: none;
}

.menu-scroll::-webkit-scrollbar-button:single-button,
.menu-scroll::-webkit-scrollbar-button:vertical:decrement,
.menu-scroll::-webkit-scrollbar-button:vertical:increment,
.menu-scroll::-webkit-scrollbar-button:start:decrement,
.menu-scroll::-webkit-scrollbar-button:end:increment {
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  display: none !important;
  -webkit-appearance: none;
}

.menu-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(73, 78, 86, 0.62);
  border-radius: 999px;
  border: var(--menu-scrollbar-gap) solid transparent;
  background-clip: content-box;
  min-height: 2.2rem;
  transform: translateX(var(--menu-scrollbar-offset));
}

.menu-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(55, 60, 68, 0.72);
}

.panel-close {
  border: 0;
  background: transparent;
  margin-left: auto;
  cursor: pointer;
}

.menu-panel .panel-close {
  position: relative;
  z-index: 3;
  margin-left: 0px;
  margin-right: auto;
  align-self: flex-start;
  transform: translateY(-5px);
}

.menu-panel .panel-close .icon {
  width: 2.52rem;
  height: 2.52rem;
}

.language-panel .panel-close {
  display: block;
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-right: 0;
  align-self: flex-end;
  transform: translate(10px, -5px);
}

.language-panel .panel-close .icon {
  width: 2.52rem;
  height: 2.52rem;
}

.newsletter-panel .panel-close {
  display: block;
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-right: 0;
  align-self: flex-end;
  transform: translate(10px, -5px);
}

.newsletter-panel .panel-close .icon {
  width: 2.52rem;
  height: 2.52rem;
}

.menu-items {
  margin-top: 1.2rem;
}

.menu-row {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  font-size: 1.5rem;
  padding: 0.72rem 0;
  color: var(--text);
}

.menu-row span {
  letter-spacing: 0.01em;
}

.menu-row .toggle {
  width: 1.9rem;
  height: 1.9rem;
}

.menu-row .minus {
  display: none;
}

.menu-row.open .plus {
  display: none;
}

.menu-row.open .minus {
  display: inline-block;
}

.menu-panel .menu-row:hover,
.menu-panel .submenu a:hover,
.menu-panel .submenu.open a:hover,
.menu-panel .menu-language a:hover,
.menu-panel .newsletter-link:hover,
.menu-panel .panel-close:hover {
  color: rgb(100, 100, 100);
  text-shadow: none;
}

.menu-panel a:hover .icon,
.menu-panel button:hover .icon,
.menu-panel a:hover .toggle,
.menu-panel button:hover .toggle {
  filter: brightness(0) saturate(100%) invert(39%);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.submenu.open {
  max-height: 22rem;
  margin-bottom: 0.8rem;
}

.submenu a {
  display: block;
  color: #4f5259;
  font-size: 1.05rem;
  padding: 0.38rem 0;
}

.menu-footer {
  margin-top: auto;
  border-top: 1px solid #b8bbc1;
  padding-top: 1.1rem;
}

.menu-language {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.menu-language a:first-child {
  font-weight: 600;
}

.menu-footer p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #40444c;
}

.newsletter-link {
  text-decoration: underline;
  color: #4e5259;
}

.menu-socials {
  position: absolute;
  left: calc(min(21rem, calc(100vw - 6rem)) + 2.2rem);
  bottom: 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 1.95rem;
  gap: 1.45rem;
  z-index: 2;
  visibility: visible;
  opacity: 1;
  animation: slideInFromLeft 360ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.menu-socials .icon {
  width: 1.95rem;
  height: 1.95rem;
}

.menu-socials .icon.icon-light {
  filter: brightness(0) saturate(0) invert(75%);
}

.menu-socials a:hover .icon.icon-light {
  filter: brightness(0) saturate(0) invert(89%);
}

.overlay-top .search-panel {
  width: calc(100vw - 2.8rem);
  max-width: calc(100vw - 2.8rem);
  margin: 1rem auto 0;
  min-height: 15rem;
  padding: 1rem 2rem 2rem;
  animation: slideInFromTop 320ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.search-panel .panel-close {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.search-panel .panel-close .icon {
  width: 2.52rem;
  height: 2.52rem;
}

.search-title {
  margin: 0.25rem 0 35px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #52565e;
}

.search-panel input {
  display: block;
  width: min(42rem, 90%);
  margin: 0.4rem auto 1rem;
  border: 0;
  background: #fff;
  border-radius: 999px;
  height: 3.2rem;
  padding: 0 1.8rem;
  font: inherit;
  font-size: 1.35rem;
  color: #7e8085;
}

.search-panel input:focus,
.search-panel input:focus-visible {
  outline: none;
  box-shadow: none;
}

.search-panel input::placeholder {
  font-size: 1.1rem;
  color: #8b8e95;
}

.search-panel input[type="search"]::-webkit-search-decoration,
.search-panel input[type="search"]::-webkit-search-cancel-button,
.search-panel input[type="search"]::-webkit-search-results-button,
.search-panel input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.search-panel input[type="search"]::-ms-clear,
.search-panel input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.search-panel p {
  text-align: center;
  margin: 0;
  color: #52565e;
  font-size: 1.03rem;
}

.search-panel p a {
  text-decoration: underline;
}

.overlay-right .language-panel {
  width: min(18rem, calc(100% - 2.4rem));
  min-height: calc(100vh - 2rem);
  margin: 1rem 1rem 0 auto;
  padding: 1rem 1.4rem;
  animation: slideInFromRight 320ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.language-panel h3 {
  margin: 1.2rem 0 1.2rem;
  font-size: 24px;
  font-weight: 400;
}

.language-panel label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.language-panel input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #d7d9de;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.language-panel input[type="radio"]::before {
  content: "";
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background: #7d828b;
  transform: scale(0);
  transition: transform 140ms ease;
}

.language-panel input[type="radio"]:checked::before {
  transform: scale(1);
}

.language-panel input[type="radio"]:focus,
.language-panel input[type="radio"]:focus-visible {
  outline: none;
  box-shadow: none;
}

.newsletter-panel {
  width: min(46rem, calc(100% - 2.5rem));
  margin: 8rem auto 0;
  padding: 1.2rem 1.6rem 1.8rem;
}

.overlay[data-overlay="newsletter"],
.overlay[data-overlay="contact"] {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.overlay[data-overlay="newsletter"] .newsletter-panel,
.overlay[data-overlay="contact"] .newsletter-panel {
  margin: 0;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
}

.newsletter-panel h3 {
  margin: 0.8rem 0 0.3rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

#contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: clamp(3.04rem, 5.06vw, 4.39rem);
}

.newsletter-panel > p {
  margin: 0 0 0;
  padding-bottom: 60px;
  color: #4a4f58;
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-2.2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(2.2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.newsletter-form .wide {
  grid-column: 1 / -1;
}

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  min-width: 0;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding: 0 1.2rem;
  font: inherit;
  box-shadow: none;
}

.newsletter-form textarea {
  height: auto;
  min-height: 7rem;
  border-radius: 1.1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  resize: vertical;
}

.newsletter-form input:focus,
.newsletter-form input:focus-visible,
.newsletter-form textarea:focus,
.newsletter-form textarea:focus-visible {
  outline: none;
  border: 0;
  box-shadow: none;
}

.newsletter-form input::placeholder,
.newsletter-form textarea::placeholder {
  color: #9aa0aa;
  opacity: 1;
}

.newsletter-panel .small {
  margin: 1rem 0 0;
  padding-bottom: 60px;
  font-size: 0.9rem;
  color: #50555d;
}

.newsletter-panel .small a {
  text-decoration: underline;
}

.newsletter-panel .pill-button.dark {
  display: flex;
  width: fit-content;
  margin-left: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.newsletter-panel .pill-button.dark:hover {
  background: #4f5259;
  border-color: #4f5259;
  color: #fff;
  text-shadow: none;
}

.plp-main,
.pdp-main {
  background: var(--panel);
  min-height: 100vh;
}

.pdp-main {
  background: #fff;
}

.plp-view .plp-main {
  background: #fff;
}

.plp-view .site-header,
.plp-view .site-header.header-light,
.plp-view .site-header.is-scrolled {
  background: #fff;
}

.pdp-view .site-header.is-scrolled,
.pdp-view .site-header.header-light.is-scrolled {
  background: #fff;
}

.contact-view .site-header,
.contact-view .site-header.header-light,
.contact-view .site-header.is-scrolled,
.contact-view .site-header.header-light.is-scrolled {
  background: #fff;
  color: #111318;
  box-shadow: none;
}

.contact-view .site-header .icon-light,
.contact-view .site-header .logo-img-light {
  filter: none;
}

.sustainability-view .site-header.is-scrolled,
.sustainability-view .site-header.header-light.is-scrolled {
  background: #fff;
}

.sustainability-main {
  background: #000;
  min-height: 100vh;
}

.sustainability-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.sustainability-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: 0;
}

.sustainability-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.sustainability-copy {
  position: absolute;
  left: 46px;
  bottom: 36px;
  z-index: 2;
  color: #fff;
  width: min(760px, calc(100vw - 92px));
}

.sustainability-copy h1 {
  margin: 0;
  font-size: clamp(2.99rem, 7.8vw, 6.11rem);
  line-height: 0.95;
  font-weight: 200;
}

.sustainability-copy h1 + h1 {
  margin-top: 0.25rem;
}

.sustainability-copy p {
  margin: 50px 0 0;
  max-width: 40rem;
  font-size: clamp(1.3rem, 2.34vw, 1.625rem);
  line-height: 1.5;
  font-weight: 200;
}

.sustainability-details {
  background: #fff;
  width: 100%;
  margin: 0;
  padding: 4.2rem 46px 4.8rem;
}

.sustainability-details-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.3rem 2.6rem;
}

.sustainability-detail h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.755rem, 2.73vw, 2.6rem);
  font-weight: 200;
  color: #141821;
}

.sustainability-detail p {
  margin: 0;
  color: #2e333d;
  font-size: clamp(0.98rem, 1.24vw, 1.15rem);
  line-height: 1.7;
  font-weight: 200;
}

.contact-page-main {
  background: #fff;
  min-height: 100vh;
}

.contact-page-shell {
  width: 100%;
  margin: 0;
  padding: 8.3rem 46px 3.2rem;
}

.contact-page-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2.2rem;
  min-height: calc(100vh - 11.5rem);
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.contact-page-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: #666b73;
}

.contact-page-info h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.1rem, 4.3vw, 4.2rem);
  line-height: 1;
  font-weight: 200;
  color: #141821;
}

.contact-page-intro {
  margin: 0 0 0.95rem;
  max-width: 44rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
  color: #2c323b;
  font-weight: 200;
}

.contact-page-meta {
  display: grid;
  gap: 0.65rem;
}

.contact-page-meta p {
  margin: 0;
  display: grid;
  gap: 0.2rem;
  color: #20252e;
}

.contact-page-meta strong {
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #6a6f78;
}

.contact-page-meta a,
.contact-page-meta span {
  font-size: 1rem;
  font-weight: 200;
  color: #1b2029;
}

.contact-page-form-wrap {
  background: #f1f1f1;
  border: none;
  border-radius: 1.35rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}

.contact-page-form-wrap h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 200;
  color: #141821;
}

.contact-page-form-wrap > p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #454b56;
  font-weight: 200;
}

.contact-page-form {
  margin-top: 0.2rem;
}

.contact-page-form .pill-button {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.contact-page-form .contact-consent {
  margin: 0.35rem 0 0.05rem;
  color: #50555d;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 200;
}

.contact-page-form .contact-send-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.contact-page-form .pill-button.dark:hover {
  background: #4f5259;
  border-color: #4f5259;
  color: #fff;
  text-shadow: none;
}

.contact-whatsapp-button {
  margin-top: 0.35rem;
  grid-column: 1 / -1;
  justify-self: start;
}

.contact-whatsapp-copy {
  margin: 0.95rem 0 0.25rem;
  color: #454b56;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 200;
}

.plp-page {
  width: 100%;
  margin: 0;
  padding: 8.3rem 45px 3.2rem;
}

.plp-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  color: #6a6e75;
  font-size: 0.92rem;
}

.plp-heading-row {
  margin: 0.75rem 0 1.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.plp-heading-row h1 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
}

.plp-heading-row p {
  margin: 0;
  color: #62666f;
  font-size: 0.95rem;
}

.plp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.plp-card {
  background: #f1f1f1;
  border-radius: 1.9rem;
  min-height: 38rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.plp-card:hover {
  transform: translateY(-0.2rem);
  box-shadow: none;
}

.plp-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 0 1.2rem;
}

.plp-card-media {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  overflow: hidden;
}

.plp-card-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.plp-family {
  margin: 0.4rem 0 0.2rem;
  color: #8f9298;
  font-size: 1.44rem;
  line-height: 1.2;
}

.plp-name {
  margin: 0 8px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.plp-sku {
  margin: 0.3rem 0 0;
  color: #666a72;
  font-size: 0.9rem;
}

.plp-swatches {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.72rem;
  margin-top: 0.95rem;
  margin-bottom: 15.3px;
}

.plp-swatch {
  width: 1.68rem;
  height: 1.68rem;
  border-radius: 50%;
  border: none;
  background: #e8eaef;
  padding: 0;
  cursor: pointer;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease;
}

.plp-swatch:hover {
  transform: translateY(-0.08rem);
}

.plp-swatch.is-active {
  box-shadow: 0 0 0 1px #1f242c;
}

.plp-empty,
.pdp-empty {
  margin: 2rem 0;
  color: #555962;
  font-size: 1rem;
}

.inventory-header {
  padding: 0 45px;
}

.inventory-header .logo.dark {
  margin: 0;
}

.inventory-topnav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.96rem;
}

.inventory-topnav a {
  color: #363a42;
  border: 1px solid #111318;
  border-radius: 999px;
  padding: 0.4rem 0.92rem;
}

.inventory-topnav a[aria-current="page"] {
  color: #fff;
  background: #111318;
}

.inventory-main {
  background: var(--panel);
  min-height: 100vh;
  padding: 8.3rem 45px 3rem;
}

.billing-main {
  background: var(--panel);
  min-height: 100vh;
  padding: 8.3rem 45px 3rem;
}

.inventory-page {
  width: 100%;
}

.billing-page {
  width: 100%;
}

.inventory-heading {
  max-width: 78ch;
  margin-bottom: 1.15rem;
}

.billing-heading {
  max-width: 78ch;
  margin-bottom: 1.15rem;
}

.inventory-mini {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d7178;
}

.inventory-heading h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
}

.billing-heading h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
}

.inventory-heading p {
  margin: 0;
  color: #545962;
}

.billing-heading p {
  margin: 0;
  color: #545962;
}

.inventory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.2rem;
  align-items: start;
}

.billing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.2rem;
  align-items: start;
}

.inventory-panel {
  background: #d7d7da;
  border-radius: 1.3rem;
  padding: 1.1rem;
}

.billing-panel {
  background: #d7d7da;
  border-radius: 1.3rem;
  padding: 1.1rem;
}

.inventory-panel h2,
.inventory-panel h3 {
  margin: 0;
  font-weight: 300;
}

.billing-panel h2,
.billing-panel h3 {
  margin: 0;
  font-weight: 300;
}

.inventory-panel h2 {
  font-size: 1.28rem;
  margin-bottom: 0.95rem;
}

.billing-panel h2 {
  font-size: 1.28rem;
  margin-bottom: 0.95rem;
}

.inventory-section-toggle {
  width: 100%;
  border: 0;
  background: #efeff0;
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: #181c23;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
}

.inventory-section-toggle[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.inventory-toggle-symbol {
  font-size: 1.35rem;
  line-height: 1;
}

.inventory-section-body {
  padding-top: 0.8rem;
}

.inventory-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.inventory-field {
  display: grid;
  gap: 0.25rem;
}

.inventory-field span {
  font-size: 0.78rem;
  color: #52565f;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.inventory-field input,
.inventory-field textarea,
.inventory-field select {
  border: 1px solid #b1b2b8;
  border-radius: 0.75rem;
  padding: 0.6rem 0.72rem;
  font: inherit;
  color: #181c23;
  background: #efeff0;
}

.inventory-field textarea {
  resize: vertical;
  min-height: 4.6rem;
}

.inventory-field-full {
  grid-column: 1 / -1;
}

.inventory-colors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0 0.75rem;
  gap: 0.7rem;
}

.inventory-subsection-head {
  margin-top: 0.85rem;
}

.inventory-add-color {
  min-width: auto;
  height: 2.15rem;
  font-size: 0.84rem;
  padding: 0 1rem;
}

.inventory-colors {
  display: grid;
  gap: 0.75rem;
}

.inventory-color-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #4f545d;
  flex-wrap: wrap;
}

.inventory-color-chip {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #b5b7bc;
  flex-shrink: 0;
}

.inventory-tech-list {
  display: grid;
  gap: 0.58rem;
}

.inventory-color-row {
  background: #efeff0;
  border-radius: 0.92rem;
  padding: 0.78rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.58rem;
}

.inventory-color-row .inventory-field {
  min-width: 0;
}

.inventory-color-row input[type="file"] {
  width: 100%;
  min-width: 0;
}

.inventory-tech-row {
  background: #efeff0;
  border-radius: 0.92rem;
  padding: 0.78rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.inventory-color-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.inventory-file-field small {
  font-size: 0.72rem;
  color: #6c7077;
  overflow-wrap: anywhere;
}

.inventory-download-file-name {
  display: block;
  margin: -0.25rem 0 0.45rem;
  font-size: 0.72rem;
  color: #6c7077;
  overflow-wrap: anywhere;
}

.inventory-file-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: #efeff0;
  border: 1px dashed #9ea0a7;
  border-radius: 0.88rem;
  padding: 0.62rem 0.72rem;
  margin-bottom: 0.5rem;
}

.inventory-file-upload span {
  font-size: 0.84rem;
  color: #4f535b;
}

.inventory-file-upload input[type="file"] {
  width: min(62%, 320px);
}

.inventory-file-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.inventory-file-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  background: #efeff0;
  border-radius: 0.66rem;
  padding: 0.42rem 0.58rem;
}

.inventory-file-list li span {
  font-size: 0.8rem;
  color: #4d5159;
  word-break: break-word;
}

.inventory-file-empty {
  font-size: 0.82rem;
  color: #666b73;
}

.inventory-library-head p {
  margin: -0.4rem 0 0.8rem;
  font-size: 0.84rem;
  color: #575b64;
}

.inventory-library-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
  margin-bottom: 0.8rem;
}

.inventory-add-library {
  min-width: auto;
  height: 2.2rem;
  justify-self: start;
}

.inventory-library-list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.inventory-library-item {
  background: #efeff0;
  border-radius: 0.72rem;
  padding: 0.45rem 0.58rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.inventory-library-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.inventory-library-color {
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.inventory-library-color strong {
  display: block;
  font-size: 0.84rem;
  color: #1a1e25;
}

.inventory-library-color p {
  margin: 0;
  font-size: 0.74rem;
  color: #5d6169;
}

.inventory-field input[readonly] {
  background: #e6e6e8;
  color: #4f545c;
}

.inventory-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.62rem;
}

.crm-main .inventory-grid {
  align-items: stretch;
}

.crm-subhead {
  margin: 1rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 300;
  color: #21252d;
}

.crm-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.crm-list-head p {
  margin: 0;
  font-size: 0.84rem;
  color: #535861;
}

.crm-search {
  margin-bottom: 0.65rem;
}

.crm-list {
  display: grid;
  gap: 0.58rem;
}

.crm-item {
  background: #efeff0;
  border-radius: 0.92rem;
  padding: 0.72rem;
  display: grid;
  gap: 0.58rem;
}

.crm-item-head {
  display: grid;
  gap: 0.18rem;
}

.crm-item-name {
  margin: 0;
  font-size: 0.95rem;
  color: #161b22;
}

.crm-item-company {
  margin: 0;
  font-size: 0.79rem;
  color: #575c65;
}

.crm-item-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 0.62rem;
}

.crm-item-details p {
  margin: 0;
  min-width: 0;
  font-size: 0.78rem;
  color: #4e535c;
  overflow-wrap: anywhere;
}

.crm-item-details p strong {
  color: #242932;
  font-weight: 400;
}

.crm-item-actions {
  display: flex;
  gap: 0.48rem;
}

.crm-item-actions .pill-button {
  min-width: auto;
  height: 2rem;
  padding: 0 0.9rem;
}

.crm-empty {
  margin: 0;
  color: #5b5f67;
  font-size: 0.9rem;
}

.billing-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.billing-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}

.billing-search {
  margin-bottom: 0.55rem;
}

.billing-note {
  margin: 0 0 0.7rem;
  color: #535861;
  font-size: 0.84rem;
}

.billing-products {
  display: grid;
  gap: 0.58rem;
}

.billing-item {
  background: #efeff0;
  border-radius: 0.86rem;
  padding: 0.62rem 0.72rem;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 0.6rem;
}

.billing-item.is-selected {
  box-shadow: inset 0 0 0 1px #191d24;
}

.billing-item-media {
  width: 72px;
  height: 72px;
  border-radius: 0.6rem;
  background: #e2e2e5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.billing-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.billing-item-media-placeholder {
  font-size: 0.66rem;
  color: #666b73;
}

.billing-item-main {
  min-width: 0;
}

.billing-item-title {
  margin: 0;
  font-size: 0.9rem;
  color: #171b21;
}

.billing-item-meta {
  margin: 0.16rem 0 0;
  font-size: 0.77rem;
  color: #585d66;
}

.billing-mini-field {
  display: grid;
  gap: 0.2rem;
  min-width: 84px;
  align-self: center;
}

.billing-mini-field span {
  font-size: 0.68rem;
  color: #52565f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.billing-mini-field input {
  border: 1px solid #b1b2b8;
  border-radius: 0.62rem;
  padding: 0.42rem 0.5rem;
  font: inherit;
  color: #181c23;
  background: #fff;
  width: 84px;
}

.billing-mini-field-readonly strong {
  padding: 0;
  color: #20242b;
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
  border: 0;
}

.billing-item-add {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #666b73;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.billing-item-add.is-selected {
  border-color: #111318;
  background: rgba(17, 19, 24, 0.1);
}

.billing-item-add-icon {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.billing-summary {
  margin-top: 0.88rem;
}

.billing-summary-box {
  background: #efeff0;
  border-radius: 0.9rem;
  padding: 0.74rem 0.82rem;
}

.billing-summary-box h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: #20242b;
}

.billing-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: #4c515a;
  font-size: 0.86rem;
  padding: 0.16rem 0;
}

.billing-summary-row strong {
  color: #1a1e25;
  font-weight: 500;
}

.billing-summary-total {
  margin-top: 0.22rem;
  padding-top: 0.45rem;
  border-top: 1px solid #c1c3c8;
}

.billing-empty {
  margin: 0;
  color: #5b5f67;
  font-size: 0.9rem;
}

.inventory-actions .pill-button {
  min-width: auto;
  height: 2.45rem;
  padding: 0 1.1rem;
}

.inventory-secondary {
  border-color: #5a5e66;
  color: #5a5e66;
}

.inventory-feedback {
  margin: 0.7rem 0 0;
  min-height: 1.3rem;
  font-size: 0.87rem;
}

.inventory-feedback.is-success {
  color: #205d3a;
}

.inventory-feedback.is-error {
  color: #a73d3d;
}

.inventory-saved-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
}

.inventory-saved-head p {
  margin: 0;
  color: #575b62;
  font-size: 0.9rem;
}

.inventory-note {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: #535861;
}

.inventory-saved-list {
  display: grid;
  gap: 0.72rem;
}

.inventory-saved-item {
  background: #efeff0;
  border-radius: 0.9rem;
  padding: 0.78rem;
}

.inventory-saved-layout {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
}

.inventory-saved-media {
  width: 110px;
  height: 110px;
  border-radius: 0.72rem;
  background: #e2e2e5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inventory-saved-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inventory-saved-media-placeholder {
  font-size: 0.75rem;
  color: #666b73;
}

.inventory-saved-top {
  display: flex;
  justify-content: space-between;
  gap: 0.72rem;
  align-items: flex-start;
}

.inventory-saved-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.inventory-saved-top h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
  color: #191d24;
}

.inventory-saved-top p {
  margin: 0.1rem 0;
  font-size: 0.84rem;
  color: #52565f;
}

.inventory-source-badge {
  background: #111318;
  color: #fff;
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.inventory-saved-colors {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.inventory-saved-colors li {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.38rem;
  font-size: 0.8rem;
  color: #4b5059;
}

.inventory-saved-colors strong {
  color: #191d24;
  font-weight: 500;
}

.inventory-empty {
  margin: 0;
  color: #5b5f67;
  font-size: 0.92rem;
}

.pdp-hero {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background: #f1f1f1;
  box-sizing: border-box;
  padding: 2.2rem 0 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.pdp-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pdp-visual img {
  height: calc(100svh - 11rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.pdp-copy {
  padding: 0 4vw 0 1.5vw;
}

.pdp-copy h1 {
  margin: 0 0 0.2rem;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
}

.pdp-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.pdp-crumb-link,
.pdp-crumb-current {
  color: inherit;
  font: inherit;
  line-height: 1.32;
}

.pdp-crumb-link {
  text-decoration: none;
  border-bottom: none;
  transition: color 140ms ease;
}

.pdp-crumb-link:hover {
  color: #000;
}

.pdp-crumb-separator {
  color: #8f949d;
}

.pdp-sku {
  margin-bottom: 0.95rem;
}

.pdp-description {
  max-width: 32ch;
  margin-bottom: 60px;
}

.pdp-swatches {
  margin: 0 0 1.2rem;
}

.pdp-swatch {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: none;
  background: #e8eaef;
  cursor: pointer;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease;
}

.pdp-swatch--chrome,
.plp-swatch--chrome {
  background: linear-gradient(135deg, #cbcbcb 0 50%, #bebebe 50% 100%);
}

.pdp-swatch--black,
.plp-swatch--black {
  background: #636363;
}

.pdp-swatch--steel-brushed,
.plp-swatch--steel-brushed {
  background: #bebebe;
}

.pdp-swatch--gold-brushed,
.plp-swatch--gold-brushed {
  background: #e1c765;
}

.pdp-swatch:hover {
  transform: translateY(-0.08rem);
}

.pdp-swatch.is-active {
  box-shadow: 0 0 0 1px #1f242c;
}

.pdp-current-finish {
  margin: 0 0 60px;
  color: #666a72;
  font-size: 0.92rem;
}

.pdp-request {
  height: 3.11rem;
  min-width: 12.94rem;
  padding: 0 1.73rem;
  font-size: 1.14rem;
  margin-bottom: 0.35rem;
}

.pill-button.dark.pdp-request:hover {
  background: #4f5259;
  border-color: #4f5259;
  color: #fff;
  text-shadow: none;
}

.pdp-specs {
  background: #fff;
  margin: 0 46px;
  padding: 0 0 3rem;
}

.pdp-accordion-list {
  width: 100%;
  margin: 0 auto;
  border-top: 0;
}

.pdp-accordion-list .accordion-row {
  padding: 21px 0;
}

.pdp-accordion-list .acc-icon {
  width: calc(1.35rem * 3);
  height: calc(1.35rem * 3);
}

.pdp-accordion-list .acc-icon.plus {
  width: calc(1.35rem * 3 * 0.768);
  height: calc(1.35rem * 3 * 0.768);
}

.pdp-accordion-list .acc-icon.minus {
  width: calc(1.35rem * 3 * 0.768);
  height: calc(1.35rem * 3 * 0.768);
}

.pdp-content {
  color: #4f5259;
}

.pdp-content.open {
  max-height: none;
  padding: 0.8rem 0 1.25rem;
}

.spec-table {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.spec-table-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.32rem 0;
  font-size: 0.97rem;
}

.spec-table-row span {
  color: #5f636a;
}

.spec-table-row strong {
  font-weight: 400;
  color: #1a1d23;
}

.pdp-resource-table {
  gap: 0.42rem;
}

.pdp-resource-row {
  align-items: center;
}

.pdp-download-link.pdp-download-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  text-decoration: none;
  color: #5f636a;
}

.pdp-download-link.pdp-download-button > span {
  color: currentColor;
}

.pdp-download-link.pdp-download-button:hover {
  color: #000;
}

.pdp-download-icon {
  width: 1.54rem;
  height: 1.54rem;
  display: inline-block;
  flex-shrink: 0;
}

.pdp-certs p {
  margin: 0.18rem 0 0.6rem;
  max-width: 95ch;
}

.related-card-link {
  display: block;
}

.related-image-asset {
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-image-asset img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-card-soon {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1280px) {
  .site-header {
    padding: 0 1.6rem;
  }

  .inventory-header {
    padding: 0 30px;
  }

  .hero-product {
    padding: 4.2rem 7vw 3.4rem;
  }

  .light-section,
  .contact-news {
    width: calc(100% - 2.6rem);
  }
}

@media (min-width: 761px) {
  .menu-panel .menu-language {
    display: none;
  }
}

@media (max-width: 1050px) {
  .site-header {
    --header-height: 3.3rem;
    padding: 0 1.34rem;
  }

  .inventory-header {
    padding: 0 24px;
  }

  .logo-img {
    width: 4.7rem;
  }

  .hero-top {
    min-height: 76vh;
  }

  .hero-product,
  .product-hero,
  .contact-news {
    grid-template-columns: 1fr;
  }

  .hero-product {
    padding: 3.4rem 6vw 3.2rem;
  }

  .hero-product-copy {
    order: -1;
    max-width: 38rem;
  }

  .collection-grid,
  .reference-grid,
  .related-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-news {
    padding: 2.8rem 0;
  }

  .overlay-top .search-panel {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .overlay-right .language-panel {
    min-height: calc(100vh - 2rem);
  }

  .inventory-main {
    padding: 7.8rem 24px 2.3rem;
  }

  .billing-main {
    padding: 7.8rem 24px 2.3rem;
  }

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

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

  .inventory-fields {
    grid-template-columns: 1fr;
  }

  .inventory-library-form {
    grid-template-columns: 1fr;
  }

  .inventory-color-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inventory-tech-row {
    grid-template-columns: 1fr;
  }

  .inventory-saved-colors li {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .pdp-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .pdp-copy {
    max-width: 40rem;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    --header-height: 3.1rem;
    padding: 0 0.67rem;
  }

  .inventory-header {
    padding: 0 15px;
  }

  .menu-trigger span {
    display: none;
  }

  .menu-trigger {
    gap: 0;
  }

  .lang-trigger {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .logo-img {
    width: 4rem;
  }

  .hero-product {
    min-height: 52vh;
    padding: 2.2rem 1rem 3rem;
  }

  .hero-top {
    min-height: 85vh;
  }

  .light-section {
    width: calc(100% - 1.2rem);
    padding: 2.4rem 0;
  }

  .collection-grid,
  .reference-grid,
  .related-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-inline: 15px;
  }

  .contact-news {
    width: 100%;
    padding: 2.4rem 1rem;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .menu-panel {
    --menu-scrollbar-margin: 10px;
    width: 75vw;
    max-width: calc(100vw - 2rem);
    margin: 0.5rem 0 0 1rem;
    height: calc(100vh - 1rem);
    height: calc(100dvh - 1rem);
  }

  .menu-row {
    font-size: 1.5rem;
  }

  .submenu a {
    font-size: 1.05rem;
  }

  .menu-footer .menu-newsletter-copy,
  .menu-footer .menu-contact-info {
    display: none;
  }

  .menu-socials {
    left: calc(1rem + 75vw + 0.35rem);
    right: auto;
    bottom: 3rem;
    width: 1.95rem;
    gap: 1.1rem;
    align-items: flex-end;
    display: flex !important;
    visibility: visible;
    opacity: 1;
  }

  .overlay-top .search-panel {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    margin-top: 0.5rem;
    padding: 0.8rem 0.8rem 1.3rem;
    border-radius: 1rem;
    min-height: auto;
  }

  .search-panel input {
    width: 100%;
    font-size: 1.1rem;
    height: 2.7rem;
  }

  .newsletter-form input,
  .newsletter-form textarea {
    padding: 0 0.95rem;
    font-size: 0.95rem;
  }

  .newsletter-form textarea {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    min-height: 6.2rem;
  }

  .newsletter-form input::placeholder,
  .newsletter-form textarea::placeholder {
    font-size: 0.95rem;
  }

  .overlay-right .language-panel {
    width: min(18rem, calc(100% - 1rem));
    margin: 0.5rem 0.5rem 0 auto;
    min-height: calc(100vh - 1rem);
  }

  .language-panel h3 {
    font-size: 1.5rem;
  }

  .language-panel label {
    font-size: 1.05rem;
  }

  .newsletter-panel {
    margin-top: 1.2rem;
  }

  .inventory-main {
    padding: 6.7rem 15px 2rem;
  }

  .billing-main {
    padding: 6.7rem 15px 2rem;
  }

  .inventory-topnav {
    gap: 0.45rem;
    font-size: 0.82rem;
  }

  .inventory-topnav a {
    padding: 0.35rem 0.65rem;
  }

  .inventory-panel {
    border-radius: 1rem;
    padding: 0.85rem;
  }

  .billing-panel {
    border-radius: 1rem;
    padding: 0.85rem;
  }

  .inventory-color-row {
    grid-template-columns: 1fr;
  }

  .inventory-file-upload {
    flex-direction: column;
    align-items: flex-start;
  }

  .inventory-file-upload input[type="file"] {
    width: 100%;
  }

  .inventory-actions {
    flex-direction: column;
  }

  .billing-form {
    grid-template-columns: 1fr;
  }

  .crm-item-details {
    grid-template-columns: 1fr;
  }

  .crm-item-actions {
    flex-direction: column;
  }

  .crm-item-actions .pill-button {
    width: 100%;
  }

  .billing-item {
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }

  .billing-item-media {
    width: 64px;
    height: 64px;
  }

  .billing-mini-field,
  .billing-mini-field-readonly {
    grid-column: 2 / -1;
  }

  .inventory-actions .pill-button {
    width: 100%;
  }

  .inventory-saved-top {
    flex-direction: column;
  }

  .inventory-saved-layout {
    grid-template-columns: 1fr;
  }

  .inventory-saved-media {
    width: 100%;
    height: 180px;
  }

  .inventory-saved-actions {
    align-items: flex-start;
  }

  .inventory-library-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .inventory-saved-colors li {
    grid-template-columns: 1fr 1fr;
  }

  .plp-page {
    padding-top: 6.6rem;
    padding-left: 15px;
    padding-right: 15px;
  }

  .sustainability-copy {
    left: 16px;
    top: auto;
    bottom: 36px;
    transform: none;
    width: calc(100vw - 32px);
    text-align: left;
  }

  .sustainability-details {
    padding: 3rem 16px 3.5rem;
  }

  .sustainability-details-grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .contact-page-shell {
    padding: 6.6rem 16px 2.6rem;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.5rem;
  }

  .contact-page-info {
    order: -1;
    gap: 1.4rem;
  }

  .plp-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
  }

  .plp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .plp-card {
    min-height: 32rem;
    border-radius: 1.3rem;
  }

  .plp-card-link {
    padding: 0 0 1.05rem;
  }

  .pdp-hero {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    gap: 0;
  }

  .pdp-specs {
    margin-left: 11px;
    margin-right: 11px;
  }

  .pdp-visual {
    padding: 0;
  }

  .pdp-visual img {
    height: min(56svh, calc(100svh - 10rem));
  }

  .pdp-accordion-list .accordion-row > span {
    font-size: 1.5rem;
  }

  .pdp-crumbs {
    margin-bottom: 35px;
  }

  .pdp-sku {
    margin-bottom: 35px;
  }

  .pdp-swatch {
    width: 2.3rem;
    height: 2.3rem;
  }

  .pdp-current-finish {
    margin-bottom: 1.4rem;
  }

  .pdp-content.open {
    max-height: none;
  }

  .spec-table-row {
    flex-direction: column;
    gap: 0.12rem;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .overlay-backdrop,
  .menu-panel,
  .menu-socials,
  .overlay-top .search-panel,
  .overlay-right .language-panel {
    animation: none !important;
  }
}
