:root {
  --announcement-height: 38px;
  --header-height: 72px;
  --ink: #121212;
  --muted: #6b6b6b;
  --paper: #ffffff;
  --heritage-green: #0b3d2e;
  --announcement-bg: var(--heritage-green);
  --serif: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
  --max-width: 1440px;
  --site-chrome-height: calc(var(--announcement-height) + var(--header-height));
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: var(--site-chrome-height);
  background: var(--paper);
}

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

button,
input {
  font: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-canvas {
  background: var(--paper);
}

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

.section-heading p,
.section-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-heading h2,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--ink);
}

.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: var(--paper);
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.site-chrome.header-hidden {
  transform: translateY(-100%);
}

.announcement-bar {
  height: var(--announcement-height);
  overflow: hidden;
  background: var(--announcement-bg);
  color: var(--paper);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  min-width: max-content;
  animation: announcement-marquee 24s linear infinite;
  will-change: transform;
}

.announcement-group {
  display: flex;
  min-width: max-content;
}

.announcement-group span {
  display: inline-flex;
  align-items: center;
  min-width: 520px;
  justify-content: center;
  padding: 0 48px;
  font-size: 11px;
  font-weight: 400;
  line-height: var(--announcement-height);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
}

.site-header {
  height: var(--header-height);
  background: var(--paper);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 18px rgb(18 18 18 / 0.055);
}

.header-inner {
  width: min(100%, var(--max-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 48px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-logo-image {
  width: clamp(132px, 12vw, 190px);
}

.brand-logo-image img {
  display: block;
  width: 100%;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  min-width: 0;
  height: 100%;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  padding-top: 2px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: color 160ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--muted);
}

.primary-nav a.nav-sale {
  color: #b42318;
  font-weight: 600;
}

.primary-nav a.nav-sale::after {
  background: #b42318;
}

.primary-nav a.nav-sale:hover,
.primary-nav a.nav-sale:focus-visible {
  color: #e03125;
}

.primary-nav a.nav-sale:hover::after,
.primary-nav a.nav-sale:focus-visible::after {
  background: #e03125;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.icon-button {
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: opacity 160ms ease;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count-badge {
  position: absolute;
  top: 4px;
  right: 3px;
  min-width: 15px;
  height: 15px;
  border: 1px solid var(--paper);
  border-radius: 999px;
  padding: 0 4px;
  background: #9f4c27;
  color: #ffffff;
  font-size: 9px;
  font-weight: 600;
  line-height: 13px;
  text-align: center;
  transform-origin: center;
}

.cart-count-badge[hidden] {
  display: none;
}

.cart-count-badge.is-updating {
  animation: cartBadgePop 260ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  opacity: 0.58;
}

.primary-nav a:focus-visible,
.icon-button:focus-visible,
.brand-logo:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

.has-search-overlay {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--site-chrome-height) clamp(12px, 2.1vw, 34px) 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.search-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(18 18 18 / 0.42);
}

.search-card-container {
  position: relative;
  z-index: 1;
  width: min(100%, 812px);
  max-height: min(532px, calc(100vh - var(--site-chrome-height) - 34px));
  overflow-y: auto;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 17px 49px rgb(18 18 18 / 0.14);
  transform: translateY(-8px);
  transition: transform 220ms ease;
}

.search-overlay.is-active .search-card-container {
  transform: translateY(0);
}

.search-input-row {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr) 25px;
  align-items: center;
  gap: 10px;
  min-height: 55px;
  padding: 0 clamp(13px, 2.1vw, 25px);
  border-bottom: 1px solid #ece8df;
}

.search-input-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.search-input-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.search-input-row input::placeholder {
  color: #8c8c8c;
}

.search-input-row input:focus-visible {
  outline: 0;
}

.search-close-button {
  position: relative;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.search-close-button span,
.search-close-button span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: currentColor;
  content: "";
}

.search-close-button span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-close-button span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.search-results-section {
  padding: 18px clamp(13px, 2.1vw, 25px) 28px;
}

.search-results-heading {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--ink);
}

.search-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(11px, 1.4vw, 18px);
}

.search-product-card {
  display: block;
  min-width: 0;
}

.search-product-image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3f0ea;
}

.search-product-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.search-product-card:hover .search-product-image-wrap img,
.search-product-card:focus-visible .search-product-image-wrap img {
  transform: scale(1.025);
}

.search-product-title {
  display: block;
  margin-top: 9px;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  line-height: 1;
}

.search-product-compare-price {
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 400;
  text-decoration: line-through;
}

.search-product-current-price {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.search-empty-message {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-card {
  min-width: 0;
}

.product-link {
  display: block;
}

.product-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1ede6;
}

.product-media {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.quick-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  padding: 0 14px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-info {
  padding-top: 13px;
}

.product-info h3 {
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 0;
  line-height: 1;
}

.current-price {
  color: #b87333;
  font-size: 14px;
  font-weight: 600;
}

.compare-price {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
}

.product-card:hover .product-media img,
.product-media-wrap:hover .product-media img,
.product-media:focus-visible img {
  transform: scale(1.025);
}

.product-card:hover .quick-add,
.product-media-wrap:hover .quick-add,
.product-media:focus-visible + .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-add.is-added,
.pdp-atc-button.is-added {
  background: #2f5d50;
  color: #ffffff;
}

.cart-flyout-clone {
  position: fixed;
  z-index: 1400;
  width: 56px;
  height: 56px;
  border: 1px solid rgb(255 255 255 / 0.85);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgb(18 18 18 / 0.22);
  object-fit: cover;
  pointer-events: none;
  animation: cartFlyout 650ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes cartBadgePop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.26);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cartFlyout {
  0% {
    opacity: 0.95;
    transform: translate3d(0, 0, 0) scale(1);
  }

  72% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--cart-flyout-x), var(--cart-flyout-y), 0) scale(0.25);
  }
}

.product-link:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 6px;
}

.site-footer {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid #faf9f6;
}

.footer-newsletter-upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px;
  text-align: center;
}

.footer-newsletter-upper h2 {
  margin: 0 0 12px;
  color: #121212;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-newsletter-upper p {
  margin: 0 0 30px;
  color: #6a6a6a;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  border-bottom: 1px solid #121212;
  padding: 6px 0;
}

.footer-newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.footer-newsletter-form input::placeholder {
  color: #6a6a6a;
  opacity: 1;
  text-align: center;
}

.footer-newsletter-form input:focus {
  outline: none;
}

.footer-newsletter-form button {
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-newsletter-form button:hover,
.footer-newsletter-form button:focus-visible {
  color: #121212;
  transform: translateX(3px);
}

.footer-newsletter-form button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

.footer-matrix-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr 1.5fr;
  gap: 30px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.footer-graphic-logo {
  min-width: 0;
}

.footer-graphic-logo svg {
  display: block;
  width: 60px;
  height: 60px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links-col,
.footer-partnerships-col {
  min-width: 0;
}

.footer-links-col h3,
.footer-partnerships-col h3 {
  margin: 0 0 20px;
  color: #121212;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: capitalize;
}

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

.footer-link-list a {
  display: inline-flex;
  color: #6a6a6a;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: #121212;
}

.footer-link-list a:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

.footer-partnerships-col {
  display: flex;
  flex-direction: column;
}

.footer-partnership-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-partnership-badge {
  display: block;
  width: 170px;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
  color: var(--ink);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  filter: grayscale(100%);
  opacity: 0.75;
}

.footer-partnership-badge text {
  fill: currentColor;
  stroke: none;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-partnership-badge:first-child text:first-of-type {
  font-size: 15px;
}

.footer-partnership-badge:first-child text:not(:first-of-type) {
  font-size: 10px;
}

.footer-partnership-badge:nth-child(2) text,
.footer-partnership-badge:nth-child(3) text {
  font-size: 30px;
}

.footer-sub-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #faf9f6;
}

.footer-sub-bar p {
  margin: 0;
  color: #9a9a9a;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

@keyframes announcement-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    row-gap: 0;
    min-height: var(--header-height);
    padding: 0 18px;
  }

  .brand-logo {
    grid-area: brand;
    min-height: var(--header-height);
    font-size: 30px;
  }

  .header-actions {
    grid-area: actions;
  }

  .primary-nav {
    grid-area: nav;
    height: 42px;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    height: 42px;
    font-size: 12px;
  }

  .primary-nav a::after {
    bottom: 9px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .section-title {
    font-size: 28px;
  }

  .quick-add {
    min-height: 40px;
    opacity: 1;
    transform: translateY(0);
  }

  .search-overlay {
    padding: var(--site-chrome-height) 12px 24px;
  }

  .search-card-container {
    max-height: calc(100vh - var(--site-chrome-height) - 24px);
  }

  .search-input-row {
    min-height: 55px;
  }

  .search-input-row input {
    font-size: 20px;
  }

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

@media (max-width: 768px) {
  .footer-newsletter-upper {
    padding: 48px 20px 36px;
  }

  .footer-newsletter-upper h2 {
    font-size: 28px;
  }

  .footer-newsletter-form {
    max-width: none;
  }

  .footer-matrix-bottom {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
    padding: 36px 20px 48px;
  }

  .footer-graphic-logo {
    grid-column: 1 / -1;
  }

  .footer-sub-bar {
    align-items: flex-start;
  }

  .search-results-heading {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  :root {
    --announcement-height: 38px;
  }

  .announcement-group span {
    min-width: 420px;
    padding: 0 32px;
    font-size: 10px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand-logo {
    font-size: 28px;
  }

  .header-actions {
    gap: 0;
  }

  .icon-button {
    width: 34px;
    height: 38px;
  }

  .icon-button svg {
    width: 20px;
    height: 20px;
  }

  .search-overlay {
    padding: var(--site-chrome-height) 0 0;
  }

  .search-card-container {
    width: 100%;
    max-height: calc(100vh - var(--site-chrome-height));
  }

  .search-input-row {
    grid-template-columns: 17px minmax(0, 1fr) 25px;
    gap: 10px;
    min-height: 55px;
    padding: 0 13px;
  }

  .search-input-row input {
    font-size: 20px;
  }

  .search-results-section {
    padding: 18px 13px 28px;
  }

  .search-products-grid {
    gap: 13px 8px;
  }

  .search-product-title {
    font-size: 11px;
  }

  .footer-newsletter-upper {
    padding: 42px 16px 32px;
  }

  .footer-newsletter-upper h2 {
    font-size: 26px;
  }

  .footer-newsletter-upper p {
    max-width: 320px;
  }

  .footer-matrix-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 44px;
  }

  .footer-sub-bar {
    padding: 18px 16px;
  }
}
