@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayLight.cedb0be9ae2b.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayLightItalic.f2f64f245b96.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayRoman.13568ea57eda.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayRomanItalic.87fe6070b5f7.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayMedium.c00931e8b3cc.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayMediumItalic.bfbca08a0812.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayBold.822ebe551ca0.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/fonts/NeueHaasDisplayBoldItalic.dae896913597.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  --viewport-inline-safe: calc(100vw - (100vw - 100%));
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Neue Haas Grotesk Display", "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: #1b1a17;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neue Haas Grotesk Display", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(24, 16, 8, 0.4);
  box-shadow: inset 0 18px 44px rgba(24, 16, 8, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 10;
}

body.menu-open::before {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

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

.shell {
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 24px;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.site-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.products {
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.grid.products .category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid.products .category-card__header {
  flex: 1 1 auto;
}

@media (max-width: 860px) {
  .shell {
    padding: 0px 14px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .grid.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.utility-bar {
  position: relative;
  z-index: 16;
  isolation: isolate;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(24, 16, 8, 0.14);
  font-size: 0.83rem;
  color: #2c2219;
}

.utility-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.utility-bar__left,
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-bar__message {
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.utility-bar__left a,
.utility-bar__right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.utility-bar__logout-form {
  margin: 0;
}

.utility-bar__logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.utility-bar__left a {
  text-decoration: none;
}

.utility-bar__left a span {
  display: inline-block;
  text-decoration: none;
}

.utility-bar__left a:hover span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.utility-bar__right a:hover {
  text-decoration: underline;
}

.utility-bar__logout-btn:hover {
  text-decoration: underline;
}

.utility-icon {
  font-size: 0.78rem;
  width: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.utility-icon--email {
  transform: translateY(2px);
}

.utility-icon--phone {
  transform: translateY(2px);
}

@media (max-width: 540px) {
  .utility-bar__inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
  }
  .utility-bar__right {
    order: 1;
    justify-content: flex-end;
  }
  .utility-bar__left {
    order: 2;
    justify-content: flex-end;
  }
  .utility-bar__message {
    display: block;
  }
}
.site-header {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #181008;
  box-shadow: 0 9px 22px rgba(24, 16, 8, 0.07), 0 1px 6px rgba(24, 16, 8, 0.06);
  z-index: 15;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 104px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.site-header__logo img {
  height: 58px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.site-header__logo:hover img {
  opacity: 0.6;
}

.site-header__shop-menu {
  justify-self: center;
  position: relative;
}

.shop-toggle {
  background: transparent;
  border: 0;
  color: #ffffff;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  transition: color 0.18s ease;
}

.shop-toggle__label {
  display: inline;
}

.shop-toggle__burger {
  display: none;
  width: 18px;
  height: 14px;
  flex-direction: column;
  justify-content: space-between;
}

.shop-toggle__burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .shop-toggle__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .shop-toggle__burger span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .shop-toggle__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.shop-toggle:hover {
  color: rgba(255, 255, 255, 0.82);
}

.shop-toggle:hover .shop-toggle__caret {
  border-top-color: rgba(255, 255, 255, 0.82);
}

.shop-toggle__caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #ffffff;
  transition: transform 0.2s ease;
}

.site-header.is-menu-open .shop-toggle__caret {
  transform: rotate(180deg);
}

.site-header.is-menu-open .shop-toggle {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.is-menu-open .shop-toggle .shop-toggle__caret {
  border-top-color: rgba(255, 255, 255, 0.82);
}

.site-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 10px;
}

.header-icon {
  font-size: 1.24rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 240px;
  min-height: 44px;
  color: #ffffff;
  margin-bottom: 0px;
}

.header-search__toggle {
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.08rem;
  font-weight: 300;
  padding: 10px 4px;
  transition: opacity 0.22s ease, transform 0.24s ease, color 0.2s ease;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header-search__toggle:hover {
  color: rgba(255, 255, 255, 0.82);
}

.header-search__field-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  opacity: 0;
  transform: translateY(-50%) translateX(10px) scale(0.98);
  transform-origin: right center;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.28s ease;
  position: absolute;
  right: 0;
  top: 50%;
}

.header-search__input {
  width: calc(100% - 30px);
  border: 1px solid #dfd6cb;
  border-radius: 5px;
  padding: 11px 12px;
  background: #ffffff;
  color: #181008;
  font: inherit;
}

.header-search__input:focus {
  outline: none;
  border-color: #7e5b45;
  box-shadow: 0 0 0 3px rgba(126, 91, 69, 0.14);
}

.header-search__input::placeholder {
  color: #6a655c;
}

.header-search__close {
  background: transparent;
  border: 0;
  color: #ffffff;
  padding: 6px;
  cursor: pointer;
  transition: color 0.18s ease;
}

.header-search__close:hover {
  color: rgba(255, 255, 255, 0.82);
}

.header-search.is-open .header-search__toggle {
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
  pointer-events: none;
}

.header-search.is-open .header-search__field-wrap {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
  pointer-events: auto;
}

.header-divider {
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, 0.35);
}

.header-checkout {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding-left: 2px;
  position: relative;
  transition: color 0.2s ease;
}

.header-checkout:hover {
  color: rgba(255, 255, 255, 0.82);
}

.header-checkout__count {
  position: absolute;
  top: -9px;
  right: -14px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(24, 16, 8, 0.82);
  color: #2c2219;
  font-size: 0.7rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(24, 16, 8, 0.26);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.985);
  width: min(1200px, 100vw - 48px);
  z-index: 20;
  background: #ffffff;
  border: 1px solid #dfd6cb;
  box-shadow: 0 24px 44px rgba(24, 16, 8, 0.16), 0 8px 18px rgba(24, 16, 8, 0.1);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.24s ease, visibility 0.24s ease;
  max-height: calc(90vh - 90px);
  overflow-y: auto;
}

.site-header.is-menu-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-menu::before,
.mega-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

.mega-menu::before {
  top: -11px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 11px solid #dfd6cb;
}

.mega-menu::after {
  top: -10px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 10px solid #ffffff;
}

.mega-menu__column h3 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dfd6cb;
  color: #181008;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mega-menu__column a {
  color: #2c2219;
  font-size: 0.92rem;
  line-height: 1.35;
}

.mega-menu__column a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }
  .site-header__inner {
    padding: 0 14px;
  }
  .site-header__bar {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    min-height: 72px;
  }
  .site-header__logo {
    order: 1;
    justify-self: start;
  }
  .site-header__shop-menu {
    order: 3;
    justify-self: end;
    margin-left: 6px;
    position: static;
  }
  .shop-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    justify-content: center;
  }
  .shop-toggle__label,
  .shop-toggle__caret {
    display: none;
  }
  .shop-toggle__burger {
    display: inline-flex;
  }
  .site-header__logo img {
    height: 44px;
  }
  .site-header__actions {
    order: 2;
    justify-self: end;
    margin-right: 0;
    gap: 10px;
  }
  .header-divider {
    display: none;
  }
  .header-search {
    width: auto;
    min-height: 0;
  }
  .header-search__toggle {
    position: static;
    transform: none;
    padding: 6px;
  }
  .header-search__toggle span {
    display: none;
  }
  .header-search__field-wrap {
    position: fixed;
    top: var(--mobile-header-offset, 0px);
    left: 0;
    right: 0;
    width: 100vw;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: #181008;
    box-shadow: 0 14px 24px rgba(24, 16, 8, 0.12);
    transform: translateY(0) translateX(10px) scale(0.98);
    z-index: 35;
  }
  .header-search__input {
    width: calc(100% - 36px);
  }
  .header-search.is-open .header-search__toggle {
    transform: translateX(-8px);
  }
  .header-search.is-open .header-search__field-wrap {
    transform: translateY(0) translateX(0) scale(1);
  }
  .header-checkout {
    padding-left: 0;
  }
  .mega-menu {
    position: fixed;
    top: var(--mobile-header-offset, 0px);
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100dvh - var(--mobile-header-offset, 0px));
    max-height: calc(100dvh - var(--mobile-header-offset, 0px));
    overflow-y: auto;
    margin-top: 0;
    transform: translateY(8px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 14px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    display: none;
    z-index: 34;
  }
  .site-header.is-menu-open .mega-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mega-menu::before,
  .mega-menu::after {
    display: none;
  }
}
@media (max-width: 630px) {
  .site-header__bar {
    min-height: 64px;
    gap: 12px;
  }
  .site-header__logo img {
    height: 40px;
  }
  .header-search__field-wrap,
  .mega-menu {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#breadcrumbs {
  margin: 18px 0 12px;
  font-size: 0.95rem;
  color: #6a655c;
  line-height: 1.6;
}

#breadcrumbs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#breadcrumbs a:hover {
  text-decoration: none;
}

#breadcrumbs .breadcrumb_last {
  color: #1b1a17;
}

#breadcrumbs .breadcrumb_sep {
  display: inline-block;
  margin: 0 6px;
}

.hero,
.panel {
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(24, 16, 8, 0.05);
}

.hero {
  margin-top: 24px;
}

.hero h1,
.hero h2,
.panel h1,
.panel h2 {
  margin-top: 0;
}

.hero p {
  margin-bottom: 0;
}

.page-section {
  margin-top: 24px;
}

.product-card,
.line-item {
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 6px;
  padding: 18px;
}

.product-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.product-card > img,
.category-card > img,
.finish-look-range-card > img,
.finish-look-product-card > img,
.related-product-card__image img {
  transition: opacity 0.2s ease;
}

.product-card:hover > img,
.category-card:hover > img,
.finish-look-range-card:hover > img,
.finish-look-product-card:hover > img,
.related-product-card:hover .related-product-card__image img {
  opacity: 0.7;
}

.product-card:hover h2,
.product-card:hover h3,
.category-card:hover h2,
.category-card:hover h3,
.finish-look-range-card:hover h2,
.finish-look-product-card:hover h2,
.related-product-card:hover h2,
.related-product-card:hover h3 {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-card h3 {
  margin: 6px 0 10px;
}

.product-card p {
  margin: 0 0 10px;
}

.product-tile-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.button,
button {
  display: inline-block;
  background: #1b1a17;
  color: white;
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  cursor: pointer;
  font: inherit;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

button:not([class]):hover,
.button:not(.secondary):not(.button--ghost):hover,
.cart-summary__cta:hover,
.checkout-summary__pay-btn:hover,
.product-tabs__tab:not(.is-active):hover {
  background: #2c2219;
  color: #fff;
  opacity: 0.7;
}

.button.secondary {
  background: transparent;
  color: #1b1a17;
  border: 1px solid #dfd6cb;
}

.button.secondary:hover, .button.button--ghost:hover {
  background: #ffffff;
  color: #1b1a17;
  border-color: rgba(63, 50, 35, 0.35);
  box-shadow: none;
}

.button.button--ghost {
  background: transparent;
  color: #6a655c;
  border: 1px solid #dfd6cb;
}

.button.button--ghost:hover {
  color: #1b1a17;
  border-color: rgba(63, 50, 35, 0.35);
}

form p {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number] {
  width: 100%;
  padding: 12px 14px;
  min-height: 46px;
  border-radius: 4px;
  border: 1px solid #dfd6cb;
  background: white;
  font: inherit;
  line-height: 1.3;
}

input.checkout-input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid #dfd6cb;
  background: white;
  font: inherit;
  line-height: 1.3;
}

textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid #dfd6cb;
  background: white;
  font: inherit;
}

.messages {
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.message {
  background: #181008;
  border: 0;
  color: #ffffff;
  border-radius: 6px;
  padding: 12px 14px;
}

.muted {
  color: #6a655c;
}

.totals {
  display: grid;
  gap: 8px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.auth-layout {
  display: grid;
  gap: 16px;
}

.auth-card {
  max-width: 640px;
}

.auth-actions {
  margin-top: 14px;
}

.auth-actions--split {
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.search-results-stack {
  display: grid;
  gap: 30px !important;
}

.search-results-section {
  display: grid;
  gap: 30px !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

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

.storefront-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.storefront-pagination__meta {
  font-size: 0.92rem;
  color: #6a655c;
  height: 47px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 12px;
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.2);
  border-radius: 4px;
  line-height: 0;
}

.storefront-pagination .button {
  width: 112px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .search-results-grid {
    grid-template-columns: 1fr;
  }
}
.info-page {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px;
}

.hero.info-page {
  border: 0;
  padding: 0;
  box-shadow: none;
}

.info-page__title {
  margin: 0;
  letter-spacing: 0.01em;
}

.info-page__intro {
  margin: 14px 0 0;
  line-height: 1.65;
  font-size: 1.02rem;
}

.info-page__section {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(121, 100, 74, 0.16);
}

.info-page__heading {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
}

.info-page__paragraph {
  margin: 12px 0 0;
  line-height: 1.72;
}

.info-page__list {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.info-page__list li {
  line-height: 1.6;
}

@media (max-width: 860px) {
  .info-page {
    padding: 22px;
  }
  .info-page__section {
    margin-top: 24px;
    padding-top: 18px;
  }
}
.news-page {
  display: grid;
  gap: 16px;
}

.news-page__intro-block,
.news-detail-page__header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 100%);
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(24, 16, 8, 0.06);
  padding: 26px;
}

.news-page__intro-block::after,
.news-detail-page__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7e5b45 0%, #c9a98e 100%);
}

.news-kicker {
  margin: 0 0 10px;
  color: #7e5b45;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-category-block {
  background: #ffffff;
  border: 1px solid rgba(121, 100, 74, 0.2);
  border-radius: 10px;
  padding: 20px;
}

.news-category-block__heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.news-category-block__heading-link,
.news-card__title-link {
  color: inherit;
  text-decoration: none;
}

.news-category-block__heading-link:hover,
.news-category-block__heading-link:focus-visible,
.news-card__title-link:hover,
.news-card__title-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-card__surface:has(.news-card__media-link:hover) .news-card__title-link,
.news-card__surface:has(.news-card__media-link:focus-visible) .news-card__title-link,
.news-card__surface:has(.news-card__title-link:hover) .news-card__title-link,
.news-card__surface:has(.news-card__title-link:focus-visible) .news-card__title-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-category-block__count {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  background: #ffffff;
  border: 1px solid rgba(121, 100, 74, 0.28);
  color: #4f3a2c;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.news-category-block__pagination {
  margin-top: 24px;
}

.news-category-block__discover {
  margin: 16px 0 0;
  display: flex;
  justify-content: flex-end;
}

.news-grid {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.news-grid--compact {
  grid-template-columns: 1fr;
}

.news-grid--category-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.news-grid--category-featured .news-card--featured {
  grid-column: 1/-1;
}

.news-grid--category-featured .news-card--featured .news-card__surface {
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  gap: 14px;
}

.news-grid--category-featured .news-card--featured .news-card__media {
  aspect-ratio: 1/1;
  padding: 0;
}

.news-grid--category-featured .news-card:not(.news-card--featured) .news-card__surface {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.news-grid--category-featured .news-card:not(.news-card--featured) .news-card__media {
  align-self: stretch;
  width: auto;
  min-width: 92px;
  max-width: 38%;
  height: auto;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  padding: 0;
}

.news-card {
  margin: 0;
}

.news-card--featured {
  grid-column: auto;
}

.news-card__surface {
  height: 100%;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card--featured .news-card__surface {
  background: #ffffff;
  grid-template-columns: 190px minmax(0, 1fr);
}

.news-card__content {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
}

.news-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(121, 100, 74, 0.2);
  aspect-ratio: 1/1;
  background: radial-gradient(circle at top left, #f8f3ec 0%, #ede4d7 48%, #e3d8c9 100%);
  display: grid;
  align-content: end;
  justify-items: start;
  padding: 12px;
}

.news-card__media::after {
  content: none;
}

.news-card__media--has-image {
  display: block;
  padding: 0;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__media-link {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.2s ease;
}

.news-card__media-link:hover,
.news-card__media-link:focus-visible {
  opacity: 0.7;
}

.news-card__surface:has(.news-card__title-link:hover) .news-card__media-link,
.news-card__surface:has(.news-card__title-link:focus-visible) .news-card__media-link {
  opacity: 0.7;
}

.news-card__media-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(27, 26, 23, 0.86);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 10px;
}

.news-card--featured .news-card__title {
  font-size: 1.2rem;
}

.news-card__title {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.news-card__meta {
  margin: 0;
  color: #685947;
  font-size: 0.86rem;
}

.news-card__preview {
  margin: 0;
  color: #3f352a;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.news-card__actions {
  margin: 2px 0 0;
}

.news-card__button {
  padding: 10px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card__button:hover {
  opacity: 1;
}

.news-empty {
  background: #ffffff;
  border-radius: 8px;
  border: 1px dashed rgba(121, 100, 74, 0.34);
  padding: 22px;
}

.news-detail-page__header-layout {
  display: grid;
  grid-template-columns: minmax(260px, 460px) 1fr;
  gap: 22px;
  align-items: start;
}

.news-detail-page__header-layout--no-image {
  grid-template-columns: 1fr;
}

.news-detail-page__header-content {
  display: grid;
  gap: 8px;
  align-content: start;
}

.news-detail-page__hero-media {
  margin-top: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(121, 100, 74, 0.2);
  aspect-ratio: 1/1;
}

.news-detail-page__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-detail-page__lead,
.news-detail-page__body {
  background: #ffffff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 10px;
  padding: 20px;
}

.news-detail-page__content {
  margin-top: 12px;
  line-height: 1.78;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.news-detail-page__content p {
  margin: 12px 0 0;
}

.news-detail-page__content p:first-child {
  margin-top: 0;
}

.news-detail-page__content img,
.news-detail-page__content video,
.news-detail-page__content iframe,
.news-detail-page__content table {
  max-width: 100%;
}

.news-detail-page__content table {
  display: block;
  overflow-x: auto;
}

.news-detail-page__content pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
}

.news-detail-page__content code,
.news-detail-page__content a {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.category-cards-hero {
  margin-bottom: 8px;
}

.category-cards-page {
  display: grid;
  gap: 18px;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-card.category-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.category-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.category-card__header {
  margin-bottom: 0;
  padding-bottom: 12px;
}

.category-card__header h2 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.category-card__type {
  display: none;
}

.category-card__description {
  margin: 0;
  color: #43382d;
  line-height: 1.6;
}

.category-card__cta {
  margin-top: auto;
  color: #7e5b45;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.category-cards-empty {
  max-width: 760px;
}

@media (max-width: 1200px) {
  .category-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1000px) and (min-width: 861px) {
  .news-grid--category-featured .news-card--featured .news-card__surface {
    grid-template-columns: minmax(280px, 49%) minmax(0, 1fr);
  }
  .news-grid--category-featured .news-card:not(.news-card--featured) .news-card__surface {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }
  .news-grid--category-featured .news-card:not(.news-card--featured) .news-card__media {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    aspect-ratio: 1/1;
    flex: none;
    align-self: auto;
  }
}
@media (max-width: 820px) {
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .news-grid,
  .news-grid--compact {
    grid-template-columns: 1fr;
  }
  .news-grid {
    gap: 20px;
  }
  .news-card__surface,
  .news-card--featured .news-card__surface {
    grid-template-columns: 1fr;
  }
  .news-card--featured {
    grid-column: auto;
  }
}
@media (max-width: 460px) {
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .news-grid--category-featured {
    grid-template-columns: 1fr;
  }
  .news-grid--category-featured .news-card--featured {
    grid-column: auto;
  }
  .news-grid--category-featured .news-card__surface {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }
  .news-grid--category-featured .news-card__media {
    align-self: stretch;
    width: auto;
    min-width: 92px;
    max-width: 38%;
    height: auto;
    aspect-ratio: 1/1;
    flex: 0 0 auto;
    padding: 0;
  }
  .news-grid--category-featured .news-card--featured .news-card__title {
    font-size: 1.04rem;
  }
  .news-page__intro-block,
  .news-detail-page__header,
  .news-detail-page__lead,
  .news-detail-page__body {
    padding: 18px;
  }
  .news-detail-page__header-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 549px) {
  .news-card__surface,
  .news-card--featured .news-card__surface,
  .news-grid--category-featured .news-card__surface {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
    align-items: start;
  }
  .news-card__media,
  .news-grid--category-featured .news-card__media {
    width: 100% !important;
    min-width: 0;
    max-width: none !important;
    height: auto;
    aspect-ratio: 1/1;
    flex: none !important;
    align-self: auto;
  }
}
.cart-page {
  margin-top: 24px;
}

.cart-page .button {
  border-radius: 4px;
}

.cart-page__header {
  margin-bottom: 20px;
}

.cart-page__header h1 {
  margin: 0;
}

.cart-page__header .muted {
  margin: 8px 0 0;
}

.cart-page__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}

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

.cart-item {
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(24, 16, 8, 0.05);
  padding: 18px;
  max-height: none;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cart-item__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-item__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.cart-item__meta {
  margin: 6px 0 0;
  color: #6a655c;
  font-size: 0.86rem;
}

.cart-item__line-total {
  font-weight: 400;
  font-size: 1rem;
  align-self: center;
  justify-self: end;
}

.cart-item__actions {
  grid-column: 1/-1;
  border-top: 1px solid rgba(121, 100, 74, 0.18);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cart-item__update-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-item__qty-label {
  color: #6a655c;
  font-size: 0.9rem;
}

.cart-item__qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-item__qty-button {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  border: 1px solid #dfd6cb;
  background: #fff;
  color: #2c2219;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-item__qty-button:hover {
  background: #ffffff;
}

.cart-item__qty-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cart-item__qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  color: #2c2219;
}

.cart-item__qty-input {
  display: none;
}

.cart-item__remove-form {
  margin: 0;
}

.cart-summary,
.cart-empty {
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(24, 16, 8, 0.05);
  padding: 20px;
}

.cart-summary {
  align-self: start;
  position: sticky;
  top: 18px;
}

.cart-summary__title {
  margin: 0 0 14px;
}

.cart-summary__delivery-form {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.cart-summary__delivery-form label {
  font-size: 0.9rem;
  color: #6a655c;
}

.cart-summary__delivery-form select {
  border: 1px solid #dfd6cb;
  border-radius: 4px;
  padding: 9px 10px;
  background: #fff;
}

.cart-summary__delivery-help {
  border-top: 1px solid rgba(121, 100, 74, 0.18);
  border-bottom: 1px solid rgba(121, 100, 74, 0.18);
  padding: 14px 0;
  margin-bottom: 14px;
  display: grid;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.cart-summary__delivery-help p {
  margin: 0;
}

.cart-summary__rows {
  display: grid;
  gap: 10px;
}

.cart-summary__total {
  border-top: 1px solid rgba(121, 100, 74, 0.18);
  padding-top: 12px;
  margin-top: 2px;
}

.cart-summary .summary-discount-line strong,
.cart-summary .summary-discount-line span {
  color: #7e5b45;
}

.cart-summary__cta-wrap {
  margin: 18px 0 0;
}

.cart-summary__cta {
  width: 100%;
  text-align: center;
}

.cart-empty h2 {
  margin: 0 0 8px;
}

.cart-empty .muted {
  margin: 0 0 16px;
}

.cart-empty {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.cart-empty__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 100%);
  color: #2c2219;
  border: 1px solid rgba(121, 100, 74, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cart-empty__icon i {
  font-size: 1.1rem;
}

.cart-empty__highlights {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #2c2219;
}

.cart-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.cart__placeholder {
  flex: 0 0 80px;
  width: 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 80px;
  border-radius: 8px;
  border: 1px solid rgba(121, 100, 74, 0.2);
  background: radial-gradient(circle at top left, #f8f3ec 0%, #ede4d7 48%, #e3d8c9 100%);
  display: grid;
  align-content: start;
  justify-items: start;
}

.cart__placeholder--has-image {
  display: block;
}

.cart__image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

.cart__placeholder-badge {
  display: inline-block;
  background: #1b1a17;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 8px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .cart-page__grid {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
  .cart-item {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .cart-item__line-total {
    justify-self: start;
  }
  .cart__placeholder {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }
  .cart-item__actions {
    justify-content: flex-start;
  }
  .cart-item__update-form {
    width: auto;
    flex-wrap: nowrap;
    min-width: 0;
  }
  .cart-item__remove-form {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
  }
}
.product-card,
.line-item {
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 6px;
  padding: 18px;
}

.product-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
  color: #7e5b45;
}

.product-card:hover .muted {
  color: #7e5b45;
}

.listing-page-banner,
.category-page-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  display: grid;
  align-items: stretch;
  background: #ffffff;
}

.listing-page-banner__image,
.category-page-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.listing-page-banner__overlay,
.category-page-banner__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: max(33.333vw, 50vw - 200px);
  z-index: 1;
  background: rgba(126, 91, 69, 0.9);
}

@media (max-width: 1080px) {
  .listing-page-banner__overlay,
  .category-page-banner__overlay {
    width: max(33.333vw + 64px, 50vw - 136px);
  }
}
.listing-page-banner__content,
.category-page-banner__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: clamp(3.5rem, 8.4vw, 6.72rem) clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}

.listing-page-banner__panel,
.category-page-banner__panel {
  width: min(31vw, 350px);
  min-width: min(31vw, 350px);
  display: grid;
  gap: 0.72rem;
}

.listing-page-banner__panel h1,
.listing-page-banner__panel p,
.category-page-banner__panel h1,
.category-page-banner__panel p {
  margin: 0;
  color: inherit;
}

.listing-page-banner h1,
.category-page-banner h1 {
  max-width: 18ch;
  line-height: 1.1;
}

.listing-page-banner__lead,
.category-page-banner__lead {
  font-size: 1.3rem;
  max-width: 31ch;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.65;
}

.listing-page-banner__eyebrow,
.category-page-banner__eyebrow {
  margin: 0;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.92;
  max-width: 30ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-page-banner__actions,
.category-page-banner__actions {
  margin-top: 0.55rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.listing-page-banner__actions .button,
.category-page-banner__actions .button {
  background: #7e5b45;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
  padding-inline: 28px;
}

.listing-page-banner__actions .button:not(.secondary):not(.button--ghost):hover,
.listing-page-banner__actions .button:not(.secondary):not(.button--ghost):focus-visible,
.listing-page-banner__actions .button:not(.secondary):not(.button--ghost):active,
.category-page-banner__actions .button:not(.secondary):not(.button--ghost):hover,
.category-page-banner__actions .button:not(.secondary):not(.button--ghost):focus-visible,
.category-page-banner__actions .button:not(.secondary):not(.button--ghost):active {
  background: #fff;
  color: #7e5b45;
  border-color: #fff;
  opacity: 1;
}

.listing-page-banner__footer,
.category-page-banner__footer {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background: #7e5b45;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  min-height: 112px;
  padding: 18px clamp(1rem, 4vw, 2rem) calc(18px + env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  gap: 12px;
}

.listing-page-banner__footer-copy,
.category-page-banner__footer-copy {
  margin: 0;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  max-width: 70ch;
  display: grid;
  gap: 2px;
}

.listing-page-banner__footer-copy-primary,
.category-page-banner__footer-copy-primary {
  font-size: 1.3rem;
}

.listing-page-banner__footer-copy-secondary,
.category-page-banner__footer-copy-secondary {
  font-size: 1rem;
}

.listing-page-banner__footer-copy strong,
.category-page-banner__footer-copy strong {
  font-weight: 500;
}

.listing-page-banner__footer .button.listing-page-banner__footer-cta,
.category-page-banner__footer .button.category-page-banner__footer-cta {
  justify-self: center;
  background: #7e5b45;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
  padding-inline: 28px;
}

.listing-page-banner__footer .button.listing-page-banner__footer-cta:hover,
.listing-page-banner__footer .button.listing-page-banner__footer-cta:focus-visible,
.listing-page-banner__footer .button.listing-page-banner__footer-cta:active,
.category-page-banner__footer .button.category-page-banner__footer-cta:hover,
.category-page-banner__footer .button.category-page-banner__footer-cta:focus-visible,
.category-page-banner__footer .button.category-page-banner__footer-cta:active {
  background: #fff;
  color: #7e5b45;
  border-color: #fff;
  opacity: 1;
}

.listing-page-banner__mobile-content,
.category-page-banner__mobile-content {
  display: none;
  background: #fff;
}

.listing-page-banner__mobile-inner,
.category-page-banner__mobile-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 1.2rem clamp(1rem, 4vw, 2rem) 0;
  display: grid;
  gap: 0.72rem;
  color: #1b1a17;
}

.listing-page-banner__mobile-inner h1,
.listing-page-banner__mobile-inner p,
.category-page-banner__mobile-inner h1,
.category-page-banner__mobile-inner p {
  margin: 0;
  color: inherit;
}

.listing-page-banner__mobile-inner .listing-page-banner__eyebrow,
.category-page-banner__mobile-inner .category-page-banner__eyebrow {
  color: #2c2219;
  opacity: 1;
}

.listing-page-banner__mobile-inner .listing-page-banner__lead,
.category-page-banner__mobile-inner .category-page-banner__lead {
  color: #1b1a17;
  max-width: none;
}

.listing-page-banner__mobile-inner .listing-page-banner__actions .button,
.category-page-banner__mobile-inner .category-page-banner__actions .button {
  background: #1b1a17;
  color: #fff;
  border: 0;
}

.listing-page-banner__mobile-inner .listing-page-banner__actions .button:hover,
.listing-page-banner__mobile-inner .listing-page-banner__actions .button:focus-visible,
.listing-page-banner__mobile-inner .listing-page-banner__actions .button:active,
.category-page-banner__mobile-inner .category-page-banner__actions .button:hover,
.category-page-banner__mobile-inner .category-page-banner__actions .button:focus-visible,
.category-page-banner__mobile-inner .category-page-banner__actions .button:active {
  background: #2c2219;
  color: #fff;
  border-color: transparent;
  opacity: 1;
}

.product-detail {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
}

.product-detail__media,
.product-detail__summary,
.related-products {
  background: #ffffff;
  border: 0;
  box-shadow: none;
  min-width: 0;
}

.product-detail__media,
.product-detail__summary {
  padding: 0;
}

.product-detail__summary {
  display: grid;
  align-content: start;
  gap: 12px;
}

.product-detail__selection-back {
  justify-self: start;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-gallery {
  position: relative;
}

.product-gallery__placeholder {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1/1;
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(121, 100, 74, 0.2);
  background: radial-gradient(circle at top left, #f8f3ec 0%, #ede4d7 48%, #e3d8c9 100%);
  padding: 24px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
}

.product-gallery__placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 16, 8, 0.12) 0%, rgba(24, 16, 8, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.product-gallery__placeholder--has-image::after {
  display: none;
}

.product-gallery__placeholder > :not(.product-gallery__image) {
  position: relative;
  z-index: 2;
}

.product-gallery__placeholder img.product-gallery__image {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: inherit !important;
  display: block !important;
  z-index: 0;
}

.product-gallery__thumbs {
  margin-top: 12px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
  box-sizing: border-box;
}

.product-gallery__thumb {
  flex: 0 0 72px;
  border: 1px solid rgba(121, 100, 74, 0.28);
  background: #fff;
  border-radius: 6px;
  padding: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: transparent;
  box-shadow: none;
}

.product-gallery__thumb:hover img {
  opacity: 0.7;
}

.product-gallery__badge {
  display: inline-block;
  background: #1b1a17;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 10px;
}

.product-gallery__placeholder h2,
.product-gallery__placeholder p {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 10px rgba(24, 16, 8, 0.45);
}

.product-detail__title {
  margin: 0;
  line-height: 1.2;
}

.product-detail__sku {
  color: #1b1a17;
  margin: 0px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.product-detail__price {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0px;
}

.product-detail__payment-message {
  min-height: 20px;
  max-width: 420px;
  margin-top: -4px;
  color: #6a655c;
  font-size: 0.88rem;
}

.product-buy-form {
  display: grid;
  gap: 8px;
}

.product-buy-form__inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-buy-form__inline label {
  margin: 0;
  font-size: 0.9rem;
  color: #1b1a17;
}

.product-buy-form__qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-buy-form__qty-button {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  border: 1px solid #dfd6cb;
  background: #fff;
  color: #2c2219;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-buy-form__qty-button:hover {
  background: #ffffff;
}

.product-buy-form__qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  color: #2c2219;
}

.product-buy-form__qty-input {
  display: none;
}

.product-buy-form button[type=submit] {
  width: fit-content;
}

.product-buy-form__inline > button[type=submit] {
  margin-left: auto;
}

.product-detail__actions {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.product-feature-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-feature-badge {
  text-decoration: none;
}

.product-feature-badge__icon {
  width: 60px;
  height: 60px;
  display: block;
  transition: opacity 0.2s ease;
}

.product-feature-badge:hover .product-feature-badge__icon {
  opacity: 0.8;
}

.product-tabs {
  margin-top: 18px;
  border-top: 1px solid rgba(121, 100, 74, 0.2);
  padding-top: 18px;
}

.product-detail__summary--has-feature-badges .product-tabs {
  margin-top: 4px;
}

.product-tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.product-tabs__tab {
  border: 1px solid rgba(121, 100, 74, 0.24);
  background: #ffffff;
  color: #3c2f1f;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.product-tabs__tab.is-active {
  background: #1b1a17;
  color: #fff;
  border-color: #1b1a17;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel.is-active {
  display: block;
}

.product-tabs__panel p {
  margin: 0;
  line-height: 1.7;
}

.delivery-copy {
  display: grid;
  gap: 10px;
}

.delivery-copy__line {
  margin: 0;
  font-weight: 300;
}

.delivery-copy__line--heading {
  margin-top: 2px;
  font-weight: 400;
  color: #1b1a17;
}

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

.product-tech-grid__item {
  border: 1px solid rgba(121, 100, 74, 0.2);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: #fff;
}

.related-products {
  margin-top: 30px;
  padding: 0;
}

.related-products h2 {
  margin-top: 0;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1200px) {
  .related-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.related-product-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.related-product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.related-product-card__image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 76px;
  height: 76px;
  border-radius: 4px;
  border: 1px solid rgba(121, 100, 74, 0.2);
  background: radial-gradient(circle at top left, #f8f3ec 0%, #e8ddce 100%);
}

.related-product-card__image img.related-product-card__image-media {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: inherit !important;
  display: block !important;
}

.related-product-card__content h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.related-product-card__content strong {
  display: inline-block;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .product-detail__media {
    padding-bottom: 0;
  }
  .product-detail__summary {
    padding: 0;
  }
  .product-tabs {
    margin-top: 8px;
  }
  .product-gallery__thumbs {
    padding-bottom: 10px;
  }
}
@media (max-width: 860px) {
  .listing-page-banner,
  .category-page-banner {
    height: 260px;
  }
  .listing-page-banner__overlay,
  .listing-page-banner__content,
  .category-page-banner__overlay,
  .category-page-banner__content {
    display: none;
  }
  .listing-page-banner__mobile-content,
  .category-page-banner__mobile-content {
    display: block;
  }
  .listing-page-banner__mobile-inner,
  .category-page-banner__mobile-inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }
  .listing-page-banner__footer-copy-primary,
  .category-page-banner__footer-copy-primary {
    font-size: 1.12rem;
  }
  .listing-page-banner__mobile-inner .listing-page-banner__lead,
  .category-page-banner__mobile-inner .category-page-banner__lead {
    font-size: 1.12rem;
  }
  .listing-page-banner__footer-copy-secondary,
  .category-page-banner__footer-copy-secondary {
    font-size: 0.9rem;
  }
  .listing-page-banner__footer,
  .category-page-banner__footer {
    min-height: 96px;
    padding-top: 14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    gap: 10px;
  }
}
@media (max-width: 460px) {
  .related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.checkout-hero {
  margin-bottom: 0;
}

.checkout-hero h1 {
  margin: 0;
}

.checkout-hero__lead {
  margin: 2px 0 8px;
}

.checkout-hero p.checkout-hero__signin-intro {
  margin-top: 12px;
  margin-bottom: 16px;
}

.checkout-inline-signin {
  margin-top: 10px;
  max-width: 760px;
  gap: 14px;
}

.checkout-inline-signin .checkout-grid {
  margin-top: 0;
}

.checkout-inline-signin .checkout-actions {
  margin-top: 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
}

.checkout-stack {
  display: grid;
  gap: 22px;
}

.checkout-form {
  display: grid;
  gap: 22px;
}

.checkout-card {
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(24, 16, 8, 0.05);
  padding: 18px;
}

.checkout-card--notice {
  padding: 14px 18px;
}

.checkout-card--notice p {
  margin: 0;
}

.checkout-card__header {
  border-bottom: 1px solid rgba(121, 100, 74, 0.18);
  padding: 0 0 10px;
}

.checkout-card__header h1 {
  margin: 0;
}

.checkout-card__header p {
  margin: 2px 0 16px;
}

.checkout-card__header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.checkout-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  align-items: start;
}

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

.checkout-account-password-fields {
  display: grid;
  gap: 12px;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-field {
  display: grid;
  gap: 6px;
}

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

.checkout-field label {
  font-size: 0.9rem;
  color: #6a655c;
}

.checkout-field .input-locked {
  background: #ffffff;
  color: #2c2219;
}

.checkout-field p {
  margin: 0;
}

.checkout-field.has-error input,
.checkout-field.has-error select,
.checkout-field.has-error textarea {
  border-color: #b43d2f;
  background: #ffffff;
}

.checkout-field__error {
  margin: 0;
  color: #9b3227;
  font-size: 0.84rem;
}

.checkout-errors {
  border: 1px solid #d0695d;
  background: #ffffff;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 4px;
}

.checkout-errors p {
  margin: 0;
}

.checkout-toggles {
  display: grid;
  gap: 10px;
}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.checkout-checkbox--billing-sync {
  margin-top: 10px;
}

.checkout-checkbox--account-create {
  align-items: center;
}

.checkout-checkbox--marketing {
  align-items: center;
  margin: 4px 0;
}

.checkout-checkbox--marketing-edit {
  margin-block: 0;
}

.checkout-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkout-radio input[type=radio] {
  margin-top: 3px;
}

.checkout-radio span {
  display: grid;
  gap: 3px;
}

.checkout-radio small {
  color: #6a655c;
  font-size: 0.85rem;
}

.checkout-delivery-options {
  margin-top: 12px;
}

.checkout-delivery-options .muted {
  margin: 0;
}

.checkout-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkout-checkbox--account-create input[type=checkbox] {
  margin-top: 0;
}

.checkout-checkbox--marketing input[type=checkbox] {
  margin: 0;
}

.checkout-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 2px;
}

.checkout-actions button {
  min-width: 220px;
}

.checkout-summary {
  background: #fff;
  border: 1px solid rgba(121, 100, 74, 0.22);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(24, 16, 8, 0.05);
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 18px;
}

.checkout-summary__title {
  margin: 0 0 14px;
}

.checkout-summary__rows {
  display: grid;
  gap: 10px;
}

.checkout-summary__total {
  border-top: 1px solid rgba(121, 100, 74, 0.22);
  margin-top: 2px;
  padding-top: 12px;
}

.summary-discount-line strong,
.summary-discount-line span {
  color: #7e5b45;
}

.checkout-success-meta .summary-discount-line span,
.checkout-success-meta .summary-discount-line strong {
  color: #7e5b45;
}

.checkout-summary__pay-form {
  margin-top: 18px;
}

.checkout-payment-message {
  min-height: 20px;
  margin-top: 14px;
  color: #6a655c;
  font-size: 0.88rem;
}

.checkout-summary__pay-btn {
  width: 100%;
  text-align: center;
}

.checkout-success-hero {
  margin-bottom: 0;
}

.checkout-success-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
}

.checkout-success-card {
  background: #fff;
}

.checkout-success-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.checkout-success-meta p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(121, 100, 74, 0.2);
  padding-bottom: 6px;
}

.checkout-success-meta p:first-child {
  margin-top: 8px;
}

.checkout-success-meta span {
  color: #6a655c;
}

.checkout-success-lines h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.checkout-success-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(121, 100, 74, 0.14);
}

.checkout-success-line__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.checkout-success-line__identity > div {
  min-width: 0;
}

.checkout-success-line p {
  margin: 4px 0 0;
}

.checkout-success-next {
  align-self: start;
  display: grid;
  gap: 15px;
  position: sticky;
  top: 18px;
}

.checkout-success-next p {
  margin: 0;
}

.checkout-success-next__actions {
  margin-top: 2px;
}

.checkout-success-next__actions--links {
  display: flex;
  gap: 10px;
}

.checkout-success-next__actions--links .button {
  flex: 1;
}

.checkout-success-next .button {
  width: 100%;
  text-align: center;
}

.checkout-success-create-account-grid {
  margin-top: 0;
}

@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
  }
  .checkout-success-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .checkout-hero {
    padding: 18px;
  }
  .checkout-inline-signin .auth-actions--split {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .checkout-inline-signin .auth-actions--split button,
  .checkout-inline-signin .auth-actions--split .button {
    width: 100%;
    text-align: center;
  }
  .checkout-account-password-fields {
    grid-template-columns: 1fr;
  }
  .checkout-grid--two {
    grid-template-columns: 1fr;
  }
  .checkout-success-next__actions--links {
    flex-direction: column;
  }
}
.account-actions {
  margin-top: 12px;
}

.account-form-actions {
  gap: 14px;
}

.account-form-actions .button,
.account-form-actions button {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.account-profile__save-btn {
  height: 44px;
}

.account-password-toggle-row {
  margin-top: 22px;
  margin-bottom: 12px;
  display: flex;
}

.account-summary__actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.account-summary__actions .button {
  text-align: center;
}

.account-summary__actions--profile {
  margin-top: 16px;
}

.account-order-card {
  display: grid;
  gap: 14px;
}

.account-order-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.account-order-card__status {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #2c2219;
  border: 1px solid rgba(121, 100, 74, 0.28);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.82rem;
}

.account-order-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-order-card__actions .button {
  min-width: 210px;
  text-align: center;
}

.summary-discount-note {
  color: #7e5b45;
}

.account-order-detail-card {
  display: grid;
  gap: 12px;
}

.account-order-lines {
  display: grid;
  gap: 10px;
}

.account-order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(121, 100, 74, 0.2);
  border-radius: 6px;
}

.account-order-line__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.account-order-line__identity > div {
  min-width: 0;
}

.account-order-line p {
  margin: 4px 0 0;
}

.account-order-totals .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.account-order-help-actions {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.account-order-help-actions .button {
  width: 100%;
  text-align: center;
}

@media (max-width: 980px) {
  .account-order-card__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-order-card__actions .button {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 680px) {
  .account-order-card .checkout-grid {
    margin-top: 0;
  }
  .account-order-line {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-order-help-actions {
    grid-template-columns: 1fr;
  }
}
.finish-look-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  display: grid;
  align-items: stretch;
  background: #ffffff;
}

.page-home .site-footer {
  margin-top: 0;
}

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

.finish-look-hero__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: max(33.333vw, 50vw - 200px);
  z-index: 1;
  background: rgba(126, 91, 69, 0.9);
}

@media (max-width: 1160px) {
  .finish-look-hero__overlay {
    width: max(33.333vw + 64px, 50vw - 136px);
  }
  .finish-look-hero__panel {
    width: min(33vw, 380px);
    min-width: min(33vw, 380px);
  }
}
.finish-look-hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: clamp(3.5rem, 8.4vw, 6.72rem) clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
}

.finish-look-hero__panel {
  width: min(31vw, 350px);
  min-width: min(31vw, 350px);
  display: grid;
  gap: 0.72rem;
}

.finish-look-hero__panel h1,
.finish-look-hero__panel p {
  margin: 0;
  color: inherit;
}

.finish-look-hero h1 {
  max-width: 18ch;
  line-height: 1.1;
}

.finish-look-hero__eyebrow {
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.92;
  max-width: 30ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0;
}

.finish-look-hero__lead {
  font-size: 1.3rem;
  max-width: 31ch;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.65;
}

.finish-look-hero__actions {
  margin-top: 0.55rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.finish-look-hero__actions .button {
  background: #7e5b45;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
  padding-inline: 28px;
}

.finish-look-hero__actions .button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.finish-look-hero__actions .button:not(.secondary):not(.button--ghost):hover,
.finish-look-hero__actions .button:not(.secondary):not(.button--ghost):focus-visible,
.finish-look-hero__actions .button:not(.secondary):not(.button--ghost):active {
  background: #fff;
  color: #7e5b45;
  border-color: #fff;
  opacity: 1;
}

.finish-look-hero__footer {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background: #7e5b45;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  min-height: 112px;
  padding: 18px clamp(1rem, 4vw, 2rem) calc(18px + env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  gap: 12px;
}

.finish-look-hero__footer-copy {
  margin: 0;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  max-width: 70ch;
  display: grid;
  gap: 2px;
}

.finish-look-hero__footer-copy-primary {
  font-size: 1.3rem;
}

.finish-look-hero__footer-copy-secondary {
  font-size: 1rem;
}

.finish-look-hero__footer-copy strong {
  font-weight: 500;
}

.finish-look-hero__footer .button.finish-look-hero__footer-cta {
  justify-self: center;
  background: #7e5b45;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
  padding-inline: 28px;
}

.finish-look-hero__footer .button.finish-look-hero__footer-cta:hover {
  background: #fff;
  color: #7e5b45;
  border-color: #fff;
  opacity: 1;
}

.finish-look-hero__footer .button.finish-look-hero__footer-cta:focus-visible,
.finish-look-hero__footer .button.finish-look-hero__footer-cta:active {
  background: #fff;
  color: #7e5b45;
  border-color: #fff;
  opacity: 1;
}

.finish-look-hero__mobile-content {
  display: none;
  background: #fff;
}

.finish-look-hero__mobile-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 1.2rem clamp(1rem, 4vw, 2rem) 0;
  display: grid;
  gap: 0.72rem;
  color: #1b1a17;
}

.finish-look-hero__mobile-inner h1,
.finish-look-hero__mobile-inner p {
  margin: 0;
  color: inherit;
}

.finish-look-hero__mobile-inner .finish-look-hero__eyebrow {
  color: #2c2219;
  opacity: 1;
}

.finish-look-hero__mobile-inner .finish-look-hero__lead {
  color: #1b1a17;
  max-width: none;
}

.finish-look-hero__mobile-inner .finish-look-hero__actions .button {
  background: #1b1a17;
  color: #fff;
  border: 0;
}

.finish-look-hero__mobile-inner .finish-look-hero__actions .button:hover,
.finish-look-hero__mobile-inner .finish-look-hero__actions .button:focus-visible,
.finish-look-hero__mobile-inner .finish-look-hero__actions .button:active {
  background: #2c2219;
  color: #fff;
  border-color: transparent;
  opacity: 1;
}

.finish-look-hero--with-lines::before,
.finish-look-hero--with-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.46);
  z-index: 2;
  pointer-events: none;
}

.finish-look-hero--with-lines::before {
  left: 33.333%;
}

.finish-look-hero--with-lines::after {
  left: 66.666%;
}

.finish-look-journey {
  display: grid;
  gap: 30px;
  margin-top: 1.4rem;
}

.finish-look-journey__head {
  display: grid;
  gap: 6px;
}

.finish-look-journey__head h2,
.finish-look-journey__head p {
  margin: 0;
}

.finish-look-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.finish-look-journey-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  height: 100%;
  border-color: rgba(121, 100, 74, 0.24);
  box-shadow: 0 10px 22px rgba(24, 16, 8, 0.05);
}

.finish-look-journey-card h3,
.finish-look-journey-card p {
  margin: 0;
}

.finish-look-journey-card h3 {
  font-size: 1.02rem;
  color: #2c2219;
}

.finish-look-journey-card p {
  line-height: 1.55;
}

.finish-look-journey-card__body {
  flex: 1;
}

.finish-look-journey-card__step {
  color: #7e5b45;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 0.74rem;
}

.finish-look-ranges,
.finish-look-products {
  display: grid;
  gap: 30px;
  margin-top: 2rem;
}

.finish-look-products[hidden] {
  display: none !important;
}

.page-section.finish-look-products {
  margin-bottom: 2rem;
}

.finish-look-ranges--no-selection {
  margin-bottom: 2rem;
}

.finish-look-ranges__head,
.finish-look-products__head {
  display: grid;
  gap: 6px;
}

.finish-look-products__head {
  margin-bottom: 0;
}

.finish-look-ranges__head h2,
.finish-look-ranges__head p,
.finish-look-products__head h2,
.finish-look-products__head p {
  margin: 0;
}

.finish-look-ranges__grid {
  gap: 30px;
  align-items: stretch;
}

.finish-look-range-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: #fff;
  cursor: pointer;
  color: #1b1a17;
}

.finish-look-range-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.finish-look-range-card .category-card__type,
.finish-look-range-card .category-card__cta,
.finish-look-range-card h2 {
  color: #2c2219;
}

.finish-look-range-card .category-card__cta,
.finish-look-product-card .category-card__cta {
  font-weight: 300;
}

.finish-look-range-card.is-selected {
  border-color: transparent;
  background: #ffffff;
  box-shadow: none;
}

.finish-look-products__layout {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  align-items: start;
}

.finish-look-products__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.finish-look-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: #fff;
  cursor: pointer;
  color: #1b1a17;
}

.finish-look-product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.finish-look-product-card .category-card__type,
.finish-look-product-card .category-card__cta,
.finish-look-product-card h2 {
  color: #2c2219;
}

.finish-look-product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.finish-look-product-card__price-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
}

.finish-look-product-card__price-row .category-card__cta {
  white-space: nowrap;
  margin-top: 0;
}

.finish-look-product-card__qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.finish-look-product-card__qty[hidden] {
  display: none !important;
}

.finish-look-product-card__qty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #dfd6cb;
  border-radius: 4px;
  background: #fff;
  color: #2c2219;
  cursor: pointer;
  padding: 12px;
  font-size: 0.68rem;
  line-height: 1;
}

.finish-look-product-card__qty-button:hover,
.finish-look-product-card__qty-button:focus-visible {
  background: #ffffff;
  border-color: #2c2219;
}

.finish-look-product-card__qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 400;
  color: #2c2219;
}

.finish-look-range-card .checkout-card__header,
.finish-look-product-card .checkout-card__header {
  flex: 1 1 auto;
}

.finish-look-range-card .category-card__cta {
  margin-top: auto;
}

.finish-look-product-card__details {
  font-size: 0.8rem;
  font-weight: 300;
  color: #7e5b45;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.finish-look-product-card__details:hover,
.finish-look-product-card__details:focus-visible {
  color: #2c2219;
}

.finish-look-product-card.is-selected {
  border-color: transparent;
  background: #ffffff;
  box-shadow: none;
}

.finish-look-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #2c2219;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.finish-look-range-card.is-selected .finish-look-card-badge,
.finish-look-product-card.is-selected .finish-look-card-badge {
  opacity: 1;
  transform: translateY(0);
}

.finish-look-selection {
  position: sticky;
  top: 18px;
}

.finish-look-selection__list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.3rem;
  max-height: 260px;
  overflow: auto;
  font-size: 0.92rem;
}

.finish-look-selection__list p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.finish-look-selection__form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.finish-look-selection__total {
  margin-top: 0.5rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.finish-look-selection__line {
  margin-top: 0.5rem;
}

.finish-look-selection__meta {
  margin: 0;
  font-size: 0.92rem;
}

.finish-look-selection__line--discount strong {
  color: #7e5b45;
}

.finish-look-selection__list strong,
.finish-look-selection__line strong,
.finish-look-selection__total strong {
  font-weight: 300;
}

.finish-look-selection .button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.finish-look-news {
  --finish-look-news-rotation-ms: 15000ms;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background: #7e5b45;
  padding: 42px clamp(1rem, 4vw, 2rem) 26px;
  color: #fff;
}

.finish-look-news__shell {
  width: min(1220px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: #7e5b45;
  box-shadow: none;
  padding: 32px clamp(1rem, 3.2vw, 2rem);
}

.finish-look-news__slides {
  position: relative;
}

.finish-look-news__slide {
  display: grid;
  gap: 22px;
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.finish-look-news__slide[hidden] {
  display: none;
}

.finish-look-news__slide.is-transition-layer {
  position: absolute;
  inset: 0;
  width: 100%;
}

.finish-look-news__slide.is-transitioning-out,
.finish-look-news__slide.is-transitioning-in {
  opacity: 0;
}

.finish-look-news__head {
  display: grid;
  gap: 8px;
}

.finish-look-news__head h2,
.finish-look-news__head p {
  margin: 0;
  color: inherit;
}

.finish-look-news__heading-link,
.finish-look-news-card__title-link {
  color: inherit;
  text-decoration: none;
}

.finish-look-news__heading-link:hover,
.finish-look-news__heading-link:focus-visible,
.finish-look-news-card__title-link:hover,
.finish-look-news-card__title-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.finish-look-news-card:has(.finish-look-news-card__media-link:hover) .finish-look-news-card__title-link,
.finish-look-news-card:has(.finish-look-news-card__media-link:focus-visible) .finish-look-news-card__title-link,
.finish-look-news-card:has(.finish-look-news-card__title-link:hover) .finish-look-news-card__title-link,
.finish-look-news-card:has(.finish-look-news-card__title-link:focus-visible) .finish-look-news-card__title-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.finish-look-news__head p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 70ch;
}

.finish-look-news__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.finish-look-news__item {
  margin: 0;
  display: flex;
}

.finish-look-news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
}

.finish-look-news-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 16/11;
}

.finish-look-news-card__media--has-image {
  background: transparent;
}

.finish-look-news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.finish-look-news-card__media-link {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.2s ease;
}

.finish-look-news-card__media-link:hover,
.finish-look-news-card__media-link:focus-visible {
  opacity: 0.7;
}

.finish-look-news-card:has(.finish-look-news-card__title-link:hover) .finish-look-news-card__media-link,
.finish-look-news-card:has(.finish-look-news-card__title-link:focus-visible) .finish-look-news-card__media-link {
  opacity: 0.7;
}

.finish-look-news-card__meta {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

.finish-look-news-card__title {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 2.7em;
}

.finish-look-news-card__preview {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  overflow-wrap: anywhere;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 3em;
}

.finish-look-news-card__actions {
  margin: auto 0 0;
}

.finish-look-news-card__button {
  background: #1b1a17;
  color: #fff;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
}

.finish-look-news-card__button:hover,
.finish-look-news-card__button:focus-visible,
.finish-look-news-card__button:active {
  background: #fff;
  color: #1b1a17;
  border-color: #fff;
  opacity: 1;
}

.finish-look-news__dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.finish-look-news__discover {
  margin: 16px 0 0;
  display: flex;
  justify-content: center;
}

.finish-look-news__dot {
  position: relative;
  overflow: hidden;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.56);
  padding: 0;
  cursor: pointer;
}

.finish-look-news__dot:not(.is-active):hover,
.finish-look-news__dot:not(.is-active):focus-visible {
  background: rgba(255, 255, 255, 0.82);
}

.finish-look-news__dot.is-active {
  width: 30px;
  background: rgba(255, 255, 255, 0.35);
}

.finish-look-news__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}

.finish-look-news__dot.is-active.is-progressing::after {
  animation: finish-look-news-dot-progress var(--dot-progress-duration, var(--finish-look-news-rotation-ms)) linear forwards;
}

@keyframes finish-look-news-dot-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.finish-look-mobile-selection {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.finish-look-mobile-selection__button {
  width: 100%;
  position: relative;
  min-height: 46px;
  -webkit-tap-highlight-color: transparent;
}

.finish-look-mobile-selection .finish-look-mobile-selection__button.button[data-mobile-selection-view]:hover,
.finish-look-mobile-selection .finish-look-mobile-selection__button.button[data-mobile-selection-view]:focus-visible,
.finish-look-mobile-selection .finish-look-mobile-selection__button.button[data-mobile-selection-view]:active {
  opacity: 1;
}

.finish-look-mobile-selection__default {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.finish-look-mobile-selection__announce {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 4px));
  width: calc(100% - 24px);
  text-align: center;
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.finish-look-mobile-selection__button.is-announcing .finish-look-mobile-selection__default {
  opacity: 0;
  transform: translateY(-4px);
}

.finish-look-mobile-selection__button.is-announcing .finish-look-mobile-selection__announce {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
  .finish-look-journey__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .finish-look-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .finish-look-news__grid .finish-look-news__item:nth-child(n+3) {
    display: none;
  }
  .finish-look-products__layout {
    grid-template-columns: 1fr;
  }
  .finish-look-selection {
    position: static;
  }
}
@media (max-width: 860px) {
  .finish-look-news__shell {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }
  .finish-look-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .finish-look-hero {
    aspect-ratio: auto;
    height: 260px;
  }
  .finish-look-hero__overlay,
  .finish-look-hero__content,
  .finish-look-hero--with-lines::before,
  .finish-look-hero--with-lines::after {
    display: none;
  }
  .finish-look-hero__mobile-content {
    display: block;
  }
  .finish-look-hero__footer-copy-primary {
    font-size: 1.12rem;
  }
  .finish-look-hero__mobile-inner .finish-look-hero__lead {
    font-size: 1.12rem;
  }
  .finish-look-hero__footer-copy-secondary {
    font-size: 0.9rem;
  }
  .finish-look-hero__mobile-inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }
  .finish-look-mobile-selection {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: grid;
    gap: 6px;
    z-index: 32;
  }
  .finish-look-mobile-selection.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .finish-look-mobile-selection.is-hidden-below {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }
  .finish-look-mobile-selection[hidden] {
    display: none;
  }
  .finish-look-card-badge {
    top: 5px;
    right: 5px;
    line-height: 1;
  }
}
@media (max-width: 820px) {
  .finish-look-ranges__grid,
  .finish-look-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .finish-look-news {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .finish-look-news__shell {
    border-radius: 8px;
    padding: 0;
  }
  .finish-look-news__slide {
    gap: 16px;
  }
}
@media (max-width: 460px) {
  .finish-look-hero__content {
    padding-top: 2.8rem;
    padding-bottom: 2.4rem;
  }
  .finish-look-hero__panel {
    width: min(100%, 280px);
    min-width: 0;
  }
  .finish-look-hero__footer {
    min-height: 96px;
    padding-top: 14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .finish-look-hero__footer-copy {
    gap: 1px;
  }
  .finish-look-hero__actions {
    margin-top: 0.4rem;
  }
  .finish-look-hero__actions .button {
    width: 100%;
    text-align: center;
  }
  .finish-look-journey__grid {
    grid-template-columns: 1fr;
  }
  .finish-look-ranges__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .finish-look-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .finish-look-products__head {
    margin-bottom: 0;
  }
  .finish-look-product-card__meta {
    justify-content: space-between;
    text-align: left;
  }
  .finish-look-product-card__price-row {
    width: auto;
  }
  .finish-look-product-card.is-selected .finish-look-product-card__price-row {
    width: 100%;
    justify-content: space-between;
  }
  .finish-look-product-card__details {
    margin-left: auto;
    text-align: right;
  }
  .finish-look-product-card.is-selected .finish-look-product-card__details {
    width: 100%;
  }
  .finish-look-product-card__qty-button {
    width: 20px;
    height: 20px;
  }
}
.site-footer {
  margin-top: 42px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #181008;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 -10px 28px rgba(24, 16, 8, 0.06), 0 8px 18px rgba(24, 16, 8, 0.06);
  color: #ffffff;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 16px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h4 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #ffffff;
  font-size: 0.93rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.payment-logos i {
  font-size: 1.65rem;
}

.payment-logo--klarna {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  min-height: 25px;
  padding: 0 7px;
  border-radius: 4px;
  background: #ffffff;
  color: #181008;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.site-footer__bottom {
  margin: 22px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__copyright {
  margin: 0;
  color: #ffffff;
  font-size: 0.88rem;
}

.site-footer__legal {
  max-width: 760px;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal p + p {
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  text-decoration: none;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__social i {
  font-size: 1.45rem;
}

.site-footer__payments {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer__payments-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .site-footer__inner {
    padding: 22px 14px 14px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__social,
  .site-footer__payments {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=main.css.ebad64f5d373.map */
