:root {
  --ink: #181512;
  --muted: #716b64;
  --line: rgba(24, 21, 18, 0.13);
  --paper: #fffdf9;
  --warm: #f3eee6;
  --sand: #d7c4aa;
  --accent: #9a5d38;
  --accent-dark: #6e3e25;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 28px 70px rgba(34, 27, 20, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
strong {
  font-family: "Manrope", sans-serif;
}
.announcement {
  padding: 9px 5%;
  background: var(--ink);
  color: #f8f2e8;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 80px;
  padding: 0 5%;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand img {
  width: 145px;
  max-height: 55px;
  object-fit: contain;
}
nav {
  justify-self: center;
  display: flex;
  gap: 30px;
}
nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--ink);
  transition: right 0.25s;
}
nav a:hover:after {
  right: 0;
}
.header-actions {
  display: flex;
  gap: 8px;
}
.icon-button,
.cart-button,
.secondary-button {
  border: 1px solid var(--line);
  padding: 11px 15px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.icon-button:hover {
  background: var(--warm);
}
.cart-button {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero {
  position: relative;
  min-height: 760px;
  padding: 96px 7%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #201c18;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(154, 93, 56, 0.42),
      transparent 35%
    ),
    linear-gradient(135deg, #171411 0%, #28221c 100%);
}
.hero-copy,
.hero img {
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin: 10px 0 24px;
  font-size: clamp(66px, 8vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.07em;
}
.hero p {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd4ca;
}
.hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #e8cdb0;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--accent);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}
.hero-link {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
}
.primary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}
.primary-button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 16px 30px rgba(154, 93, 56, 0.24);
}
.primary-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.benefits article {
  padding: 28px;
  background: var(--paper);
  text-align: center;
}
.benefits strong {
  font-size: 14px;
}
.benefits span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}
.section {
  padding: 105px 5%;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}
.section-heading h2,
.content-section h2,
.contact-section h2 {
  margin: 7px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.section-heading > p {
  color: var(--muted);
}
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 38px;
}
.filters {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--warm);
  border: 0;
  border-radius: var(--radius);
}
.filters label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
}
.filters input,
.filters select,
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  outline: none;
}
.filters input:focus,
.filters select:focus,
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154, 93, 56, 0.1);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}
.product-card {
  overflow: hidden;
  border: 0;
  background: transparent;
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--warm);
  aspect-ratio: 4/5;
}
.product-image-wrap:after {
  content: "Quick view";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px;
  text-align: center;
  background: rgba(255, 253, 249, 0.94);
  font-weight: 800;
  font-size: 12px;
  transform: translateY(70px);
  transition: 0.3s;
}
.product-card:hover .product-image-wrap:after {
  transform: translateY(0);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.055);
}
.wish-button {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.wish-button.active {
  color: var(--accent);
  background: #f6e9df;
}
.product-body {
  padding: 16px 2px;
}
.product-body h3 {
  min-height: auto;
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 11px 0;
}
.product-price {
  font-weight: 900;
}
.product-stock {
  font-size: 11px;
  color: #4b7453;
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 15px;
}
.view-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.empty-state {
  padding: 70px;
  text-align: center;
  color: var(--muted);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.promo-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 2px;
  background: #171411;
  color: #fff;
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: transform 0.7s;
}
.promo-card:hover img {
  transform: scale(1.045);
}
.promo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 10, 8, 0.82), transparent 70%);
}
.promo-card > div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 590px;
  padding: 45px;
}
.promo-card h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  margin: 8px 0 14px;
  letter-spacing: -0.045em;
}
.promo-card p {
  line-height: 1.7;
  color: #e2d9cf;
}
.content-section {
  max-width: 100%;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: start;
}
.content-section .eyebrow,
.content-section h2 {
  grid-column: 1;
}
.content-section > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  line-height: 1.85;
  color: var(--muted);
  font-size: 21px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-block: 110px;
  background: var(--ink);
  color: #fff;
}
.contact-section > div {
  align-self: center;
}
.contact-section > div > p:last-child {
  max-width: 500px;
  color: #cfc6bc;
  line-height: 1.7;
}
.contact-section h2 {
  max-width: 620px;
}
.contact-section .eyebrow {
  color: #e8cdb0;
}
#contactForm {
  display: grid;
  gap: 13px;
}
#contactForm input,
#contactForm textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
#contactForm textarea {
  min-height: 150px;
  resize: vertical;
}
#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #aaa098;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 5%;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
footer img {
  width: 135px;
}
footer p {
  font-size: 13px;
  color: var(--muted);
}
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(19, 16, 13, 0.67);
  backdrop-filter: blur(4px);
}
.drawer {
  position: fixed;
  top: 0;
  right: -480px;
  z-index: 210;
  width: min(450px, 100%);
  height: 100%;
  padding: 28px;
  overflow: auto;
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.16);
  transition: right 0.3s;
}
.drawer.open {
  right: 0;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.drawer-header h2 {
  letter-spacing: -0.04em;
}
.close-button {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.cart-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row img {
  width: 76px;
  height: 92px;
  object-fit: cover;
  border-radius: 4px;
}
.qty-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}
.qty-controls button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 9px;
  cursor: pointer;
}
.cart-summary {
  position: sticky;
  bottom: 0;
  margin-top: 24px;
  padding-top: 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(19, 16, 13, 0.72);
  backdrop-filter: blur(5px);
}
.modal[hidden] {
  display: none;
}
.modal-card {
  width: min(900px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: 28px;
  border-radius: 2px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.modal-product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}
.modal-product img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
}
.modal-product p {
  color: var(--muted);
  line-height: 1.7;
}
.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 25px);
  padding: 13px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  nav {
    gap: 18px;
  }
  .header-actions .icon-button {
    font-size: 0;
  }
  .header-actions .icon-button span {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .announcement {
    font-size: 9px;
  }
  .site-header {
    display: flex;
    min-height: 70px;
    padding: 0 4%;
  }
  .brand img {
    width: 122px;
  }
  nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero {
    min-height: auto;
    padding: 70px 5% 40px;
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(60px, 17vw, 90px);
  }
  .hero img {
    height: 390px;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 76px 5%;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filters {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .content-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .content-section .eyebrow,
  .content-section h2,
  .content-section > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .modal-product {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .icon-button {
    display: none;
  }
  .cart-button {
    padding: 10px 14px;
  }
  .hero {
    padding-top: 55px;
  }
  .hero img {
    height: 320px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
  .benefits article {
    padding: 19px 10px;
  }
  .section-heading,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 10px;
  }
  .product-body h3 {
    font-size: 13px;
  }
  .product-meta {
    display: block;
  }
  .product-stock {
    display: block;
    margin-top: 5px;
  }
  .product-actions {
    grid-template-columns: 1fr;
  }
  .view-button {
    display: none;
  }
  .product-image-wrap:after {
    display: none;
  }
  .promo-card {
    min-height: 470px;
  }
  .promo-card > div {
    padding: 30px;
  }
  .content-section > p:last-child {
    font-size: 18px;
  }
  .cart-row {
    grid-template-columns: 68px 1fr;
  }
  .cart-row > strong:last-child {
    display: none;
  }
}

/* Professional slideshow and menu */
.menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  transition: 0.25s;
}
.menu-button:hover {
  background: var(--ink);
}
.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.25s;
}
.menu-button:hover span {
  background: #fff;
}
.menu-button span:nth-child(2) {
  width: 13px;
  justify-self: end;
}
.hero-slider {
  position: relative;
  height: min(820px, calc(100vh - 111px));
  min-height: 650px;
  overflow: hidden;
  background: #171411;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 8% 7%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition:
    opacity 0.85s ease,
    visibility 0.85s,
    transform 6.5s ease;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(14, 12, 10, 0.82) 0%,
      rgba(14, 12, 10, 0.45) 48%,
      rgba(14, 12, 10, 0.12) 76%
    ),
    linear-gradient(0deg, rgba(14, 12, 10, 0.48), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(750px, 88%);
  padding-bottom: 26px;
}
.hero-slider h1 {
  margin: 12px 0 24px;
  font-size: clamp(62px, 8.2vw, 126px);
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-wrap: balance;
}
.hero-slider p {
  max-width: 570px;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.hero-slider .primary-button {
  background: #fff;
  color: var(--ink);
}
.hero-slider .primary-button:hover {
  background: var(--sand);
  box-shadow: none;
}
.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(20, 17, 14, 0.18);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.25s;
}
.slider-arrow:hover {
  background: #fff;
  color: var(--ink);
}
.slider-prev {
  left: 25px;
}
.slider-next {
  right: 25px;
}
.slider-dots {
  position: absolute;
  z-index: 5;
  left: 7%;
  bottom: 38px;
  display: flex;
  gap: 9px;
}
.slider-dot {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.35s;
}
.slider-dot.active {
  width: 68px;
  background: #fff;
}
.slider-counter {
  position: absolute;
  z-index: 5;
  right: 7%;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.slider-counter > span:nth-child(2) {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.slider-pause{position:absolute;z-index:6;left:50%;bottom:24px;transform:translateX(-50%);padding:8px 13px;border:1px solid rgba(255,255,255,.45);border-radius:999px;background:rgba(20,17,14,.35);color:#fff;font:700 11px/1 "DM Sans",sans-serif;letter-spacing:.06em;cursor:pointer;backdrop-filter:blur(8px)}
.slider-pause:hover,.slider-pause:focus-visible{background:#fff;color:var(--ink)}
@media(max-width:520px){.slider-pause{right:6%;left:auto;bottom:24px;transform:none}}
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 390;
  background: rgba(18, 15, 12, 0.62);
  backdrop-filter: blur(5px);
}
.site-menu {
  position: fixed;
  z-index: 400;
  top: 0;
  right: 0;
  width: min(510px, 100%);
  height: 100%;
  padding: 34px clamp(26px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.18, 1);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.18);
}
.site-menu.open {
  transform: translateX(0);
}
.site-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  justify-self: auto;
  gap: 0;
  margin: 55px 0 auto;
}
.menu-nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  padding: 16px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  border-bottom: 1px solid var(--line);
}
.menu-nav a:after {
  display: none;
}
.menu-nav a span {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.menu-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}
.site-menu-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.site-menu-footer button {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 700;
  cursor: pointer;
}
.site-menu-footer button strong {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
}
.site-menu-footer small {
  grid-column: 1/-1;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 800px) {
  .desktop-nav {
    display: none;
  }
  .hero-slider {
    height: 680px;
    min-height: 600px;
  }
  .hero-slide {
    align-items: flex-end;
    padding: 80px 6% 95px;
    background-position: center;
  }
  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(13, 11, 9, 0.84) 0%,
      rgba(13, 11, 9, 0.22) 75%
    );
  }
  .hero-content {
    width: 100%;
    padding: 0;
  }
  .hero-slider h1 {
    font-size: clamp(54px, 16vw, 84px);
  }
  .slider-arrow {
    display: none;
  }
  .slider-dots {
    left: 6%;
    bottom: 38px;
  }
  .slider-counter {
    right: 6%;
    bottom: 30px;
  }
  .menu-button {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 520px) {
  .header-actions {
    gap: 6px;
  }
  .cart-button {
    font-size: 0;
    width: 43px;
    height: 43px;
    padding: 0;
  }
  .cart-button:before {
    content: "Bag";
    font-size: 11px;
  }
  .cart-button span {
    font-size: 10px;
  }
  .hero-slider {
    height: 620px;
  }
  .hero-slide {
    padding-bottom: 94px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-slider .hero-link {
    font-size: 12px;
  }
  .slider-dots {
    bottom: 32px;
  }
  .slider-counter {
    display: none;
  }
  .site-menu {
    padding: 25px;
  }
  .menu-nav {
    margin-top: 38px;
  }
  .menu-nav a {
    font-size: 32px;
  }
  .site-menu-footer {
    grid-template-columns: 1fr;
  }
}
.account-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.account-link:hover {
  background: var(--warm);
}
@media (max-width: 700px) {
  .account-link {
    display: none;
  }
}

/* Account access lives inside the hamburger menu. */
.site-menu {
  overflow: hidden;
}
.menu-nav {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding-right: 8px;
}
.menu-nav::-webkit-scrollbar {
  width: 5px;
}
.menu-nav::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}
.menu-account-link {
  color: var(--accent);
}
.menu-account-link:hover {
  color: var(--ink);
}

/* Sprint 3.0.7 branding and public footer polish */
.brand img,
.menu-brand img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.42));
}
.menu-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.menu-brand img {
  width: 132px !important;
  height: auto !important;
  max-height: 54px;
  object-fit: contain;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-icons a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 0.2s;
}
.footer-social-icons a:hover {
  transform: translateY(-2px);
  background: var(--warm);
}
.footer-social-icons svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social-icons a:first-child svg {
  fill: currentColor;
  stroke: none;
}
.footer-social-icons .fill-dot {
  fill: currentColor;
  stroke: none;
}
@media (max-width: 520px) {
  .footer-social-icons {
    margin: 6px 0;
  }
}

/* Sprint 3.0.8 storefront controls */
.cart-button {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0 !important;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  overflow: visible;
}
.cart-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  border: 2px solid var(--paper);
}
.product-actions {
  grid-template-columns: 1fr !important;
}
.menu-nav a {
  grid-template-columns: 1fr !important;
}
.menu-nav a span {
  display: none !important;
}
@media (max-width: 520px) {
  .cart-button:before {
    content: none !important;
  }
  .cart-button {
    width: 43px;
    height: 43px;
  }
  .cart-icon {
    width: 21px;
    height: 21px;
  }
}

/* Sprint 3.0.9 — transparent cart + smart search */
.cart-button {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
}
.cart-button:hover {
  background: rgba(255, 255, 255, 0.55) !important;
  border-color: var(--ink) !important;
}
.header-search-button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.header-search-button:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.header-search-button svg,
.filter-search-field svg,
.smart-search-box svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.filter-search-field {
  position: relative;
}
.filter-search-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.filter-search-field input {
  width: 100%;
  padding-left: 42px !important;
}
.search-panel {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  align-items: start;
  padding: 92px 20px 20px;
  background: rgba(17, 17, 17, 0.46);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s,
    visibility 0.22s;
}
.search-panel.open {
  opacity: 1;
  visibility: visible;
}
.search-panel-inner {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 30px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
  transform: translateY(-18px);
  transition: transform 0.22s;
}
.search-panel.open .search-panel-inner {
  transform: translateY(0);
}
.search-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.search-panel-top h2 {
  margin: 4px 0 20px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
}
.search-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}
.smart-search-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: #fff;
}
.smart-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 14px 0;
  background: transparent;
  font: inherit;
  font-size: 17px;
}
.smart-search-box kbd {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 7px;
  background: var(--warm);
  font:
    600 11px/1 DM Sans,
    sans-serif;
  color: var(--muted);
}
.search-suggestions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  max-height: 380px;
  overflow: auto;
}
.search-suggestion {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.search-suggestion:hover,
.search-suggestion.active {
  background: var(--warm);
}
.search-suggestion img {
  width: 54px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}
.search-suggestion strong {
  display: block;
}
.search-suggestion span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
.search-suggestion b {
  white-space: nowrap;
}
.search-empty {
  padding: 26px 10px;
  text-align: center;
  color: var(--muted);
}
@media (max-width: 720px) {
  .search-panel {
    padding-top: 58px;
  }
  .search-panel-inner {
    padding: 22px;
  }
  .search-panel-top h2 {
    font-size: 29px;
  }
  .smart-search-box kbd {
    display: none;
  }
  .header-search-button {
    width: 43px;
    height: 43px;
  }
  .wishlistButton {
    display: none;
  }
}
@media (max-width: 520px) {
  .header-actions .icon-button {
    display: none;
  }
  .search-suggestion {
    grid-template-columns: 48px 1fr;
  }
  .search-suggestion b {
    display: none;
  }
}

/* Sprint 3.1.1 — filters built directly into the quick-search panel */
.search-filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto auto;
  align-items: end;
  gap: 10px;
  margin-top: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--warm);
}
.search-filter-bar label {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.search-filter-bar label > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-filter-bar select {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 31px 0 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font:
    600 12px/1 DM Sans,
    sans-serif;
  color: var(--ink);
  outline: none;
}
.search-filter-bar select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 38, 0.14);
}
.search-stock-filter {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
}
.search-stock-filter input {
  accent-color: var(--gold);
}
.search-stock-filter span {
  font-size: 12px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--ink) !important;
}
.search-filter-apply {
  height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font:
    800 12px/1 DM Sans,
    sans-serif;
  cursor: pointer;
  white-space: nowrap;
}
.search-filter-apply:hover {
  background: var(--gold);
  color: var(--ink);
}
@media (max-width: 900px) {
  .search-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .search-stock-filter,
  .search-filter-apply {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .search-panel {
    padding: 20px 10px;
  }
  .search-panel-inner {
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 18px;
  }
  .search-filter-bar {
    grid-template-columns: 1fr;
  }
  .search-panel-top h2 {
    margin-bottom: 12px;
  }
  .search-suggestions {
    max-height: 260px;
  }
}

/* Sprint 3.1.3 — compact hamburger filter menu inside header search */
.smart-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}
.search-filter-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 108px;
  padding: 0 16px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font:
    800 12px/1 DM Sans,
    sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.search-filter-menu-button:hover,
.search-filter-menu-button[aria-expanded="true"] {
  background: var(--ink);
  color: #fff;
}
.search-filter-menu-icon {
  display: grid;
  gap: 3px;
  width: 17px;
}
.search-filter-menu-icon i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.search-filter-menu-button[aria-expanded="true"]
  .search-filter-menu-icon
  i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.search-filter-menu-button[aria-expanded="true"]
  .search-filter-menu-icon
  i:nth-child(2) {
  opacity: 0;
}
.search-filter-menu-button[aria-expanded="true"]
  .search-filter-menu-icon
  i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.search-filter-menu {
  margin-top: 10px;
}
.search-filter-menu[hidden] {
  display: none;
}
.search-filter-menu:not([hidden]) {
  animation: searchFilterReveal 0.18s ease-out;
}
@keyframes searchFilterReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.search-live-label {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 12px;
}
.search-live-label:empty {
  display: none;
}
@media (max-width: 560px) {
  .smart-search-row {
    grid-template-columns: 1fr;
  }
  .search-filter-menu-button {
    min-height: 46px;
  }
  .search-filter-menu-button span:last-child {
    display: inline;
  }
  .search-filter-menu {
    margin-top: 8px;
  }
}

/* Signed-in customer avatar in the header menu button */
.menu-button .menu-lines {
  display: grid;
  place-content: center;
  gap: 5px;
}
.menu-button .menu-lines i {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: 0.25s;
}
.menu-button .menu-lines i:nth-child(2) {
  width: 13px;
  justify-self: end;
}
.menu-user-initial {
  display: none;
  font:
    900 16px/1 Manrope,
    sans-serif;
  letter-spacing: -0.02em;
}
.menu-button.customer-signed-in {
  background: linear-gradient(145deg, #c9972b, #8f5f12);
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  box-shadow: 0 8px 22px rgba(122, 79, 13, 0.28);
}
.menu-button.customer-signed-in .menu-lines {
  display: none;
}
.menu-button.customer-signed-in .menu-user-initial {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  justify-self: center;
  color: #fff;
  opacity: 1;
  visibility: visible;
  background: transparent;
}
.site-header.scrolled .menu-button.customer-signed-in {
  color: #fff;
  border-color: #b98221;
}
.menu-button.customer-signed-in:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, #d8aa42, #8f5f12);
}
.menu-button.customer-signed-in:hover .menu-user-initial {
  color: #fff;
  opacity: 1;
  background: transparent;
}

/* V4.0.2 Premium Search & Discovery */
.premium-search .search-panel-inner {
  width: min(920px, 100%);
  max-height: calc(100vh - 120px);
  overflow: auto;
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
}
.premium-search .smart-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.premium-search .smart-search-box {
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
}
.search-filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 10px;
}
.search-discovery {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}
.search-discovery-block {
  display: grid;
  gap: 12px;
}
.search-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.search-section-heading h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.search-section-heading button,
.search-results-heading button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font:
    700 12px DM Sans,
    sans-serif;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.search-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.search-chip {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font:
    700 12px DM Sans,
    sans-serif;
  cursor: pointer;
  transition: 0.18s ease;
}
.search-chip:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.search-chip.trending::before {
  content: "↗";
  margin-right: 6px;
  color: var(--gold-dark);
}
.search-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.search-category-card {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #111;
  cursor: pointer;
  text-align: left;
}
.search-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.72));
}
.search-category-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.search-category-card:hover img {
  transform: scale(1.05);
}
.search-category-card span {
  position: absolute;
  z-index: 1;
  left: 13px;
  bottom: 12px;
  color: #fff;
  font:
    800 13px DM Sans,
    sans-serif;
}
.search-results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.search-live-label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.premium-search .search-suggestions {
  max-height: none;
  overflow: visible;
}
.premium-search .search-suggestion {
  grid-template-columns: 64px minmax(0, 1fr) auto 22px;
  padding: 11px;
  border: 1px solid transparent;
}
.premium-search .search-suggestion:hover,
.premium-search .search-suggestion.active {
  border-color: #eadfca;
  background: #fff8e9;
  transform: translateX(2px);
}
.premium-search .search-suggestion img {
  width: 64px;
  height: 72px;
}
.search-suggestion-copy small {
  display: block;
  margin-top: 5px;
  color: #7a746a;
  font-size: 11px;
}
.search-result-arrow {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.search-filter-reset {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.search-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 38px 12px;
}
.search-empty strong {
  font-size: 18px;
  color: var(--ink);
}
.search-empty span {
  font-size: 13px;
}
.search-empty button {
  margin-top: 4px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 720px) {
  .premium-search .search-panel-inner {
    max-height: calc(100vh - 78px);
  }
  .search-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-search .search-suggestion {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }
  .premium-search .search-suggestion img {
    width: 54px;
    height: 62px;
  }
  .search-result-arrow {
    display: none;
  }
}
@media (max-width: 520px) {
  .premium-search .smart-search-row {
    grid-template-columns: 1fr;
  }
  .search-category-card,
  .search-category-card img {
    min-height: 92px;
    height: 92px;
  }
  .premium-search .search-suggestion {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .premium-search .search-suggestion b {
    display: block;
    grid-column: 2;
    margin-top: -5px;
    font-size: 12px;
  }
  .search-suggestion-copy small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* V4.0.5 — refined cart layering and organized catalog filters */
.backdrop {
  z-index: 1000;
}
.drawer {
  z-index: 1010;
  top: 0;
  border-radius: 24px 0 0 24px;
  padding: 0;
  background: #fff;
  box-shadow: -24px 0 80px rgba(18, 16, 13, 0.22);
}
.drawer-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 26px 28px 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.cart-drawer-heading > div {
  display: grid;
  gap: 3px;
}
.cart-eyebrow {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.cart-drawer-heading h2 {
  margin: 0;
  font-size: 32px;
}
.cart-drawer-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
#cartItems {
  padding: 0 28px;
}
.cart-items-list {
  display: grid;
}
.cart-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row-image {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--warm);
}
.cart-row img {
  width: 92px;
  height: 112px;
  border-radius: 0;
  object-fit: cover;
}
.cart-row-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.cart-row-topline,
.cart-row-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cart-row-topline > div {
  display: grid;
  gap: 6px;
}
.cart-row-topline strong {
  font-size: 14px;
  line-height: 1.35;
}
.cart-row-topline span {
  font-size: 12px;
  color: var(--muted);
}
.cart-remove {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f4f0e8;
  color: var(--muted);
  font-size: 19px;
  cursor: pointer;
}
.cart-remove:hover {
  background: #1a1815;
  color: #fff;
}
.cart-row-bottom {
  align-items: center;
}
.qty-controls {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-controls button {
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 7px 0;
}
.qty-controls span {
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
.cart-summary {
  padding: 22px 28px 28px;
  margin-top: 0;
  background: #fff;
  box-shadow: 0 -18px 45px rgba(20, 17, 12, 0.07);
}
.cart-summary > div {
  font-size: 15px;
}
.cart-summary .primary-button {
  width: 100%;
  padding: 15px;
}
.cart-empty {
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 55px 25px;
}
.cart-empty-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--warm);
  font-size: 30px;
}
.cart-empty h3 {
  margin: 18px 0 7px;
  font-size: 24px;
}
.cart-empty p {
  max-width: 260px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}
.filters {
  gap: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(29, 23, 16, 0.055);
}
.filters-heading {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, #fbf8f2, #fff);
}
.filters > label,
.filters > .filter-group,
.filters > .filter-check {
  padding: 17px 20px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.filters > .secondary-button {
  margin: 18px 20px 20px;
}
.filter-group legend {
  float: left;
  width: 100%;
  margin: 0 0 12px;
}
.filter-group legend + * {
  clear: both;
}
.filter-help {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.size-filter-group[hidden] {
  display: none !important;
}
.size-filter-grid {
  gap: 7px;
}
.size-filter {
  min-width: 42px;
  border-radius: 9px;
}
.shop-layout {
  grid-template-columns: minmax(245px, 280px) minmax(0, 1fr);
  align-items: start;
}
.shop-results-panel {
  min-width: 0;
}
@media (max-width: 800px) {
  .drawer {
    width: 100%;
    border-radius: 0;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filters {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1030;
    width: min(360px, 92vw);
    overflow: auto;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform 0.28s;
  }
  .filters.mobile-open {
    transform: translateX(0);
  }
}
@media (max-width: 520px) {
  .drawer-header {
    padding: 22px 20px 17px;
  }
  #cartItems {
    padding: 0 20px;
  }
  .cart-summary {
    padding: 20px;
  }
  .cart-row {
    grid-template-columns: 76px 1fr;
  }
  .cart-row img {
    width: 76px;
    height: 96px;
  }
  .cart-drawer-heading h2 {
    font-size: 27px;
  }
  .qty-controls {
    grid-template-columns: 28px 30px 28px;
  }
}

/* V4.0.6 — compact slide-out filters and refined customer initial */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.shop-layout {
  display: block;
}
.shop-results-panel {
  width: 100%;
}
.filter-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}
.filter-toggle span {
  font-size: 15px;
  line-height: 1;
}
.filters {
  position: fixed !important;
  inset: 0 auto 0 0 !important;
  z-index: 1200 !important;
  width: min(390px, 92vw) !important;
  height: 100dvh !important;
  max-height: none !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  gap: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 22px 22px 0 !important;
  overflow: hidden !important;
  box-shadow: 24px 0 65px rgba(18, 14, 10, 0.22) !important;
  transform: translateX(-105%);
  transition: transform 0.3s ease;
  top: 0 !important;
}
.filters.open {
  transform: translateX(0);
}
.filters[aria-hidden="false"] {
  transform: translateX(0);
}
.filters-heading {
  padding: 20px 22px 17px !important;
  background: linear-gradient(135deg, #fbf8f2, #fff) !important;
  border-bottom: 1px solid var(--line) !important;
}
.filters-heading div {
  gap: 2px;
}
.filters-heading strong {
  font-size: 20px;
}
.filters-heading small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.4;
}
.filters-heading button {
  display: grid !important;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}
.filters-heading button:hover {
  background: var(--warm);
}
.filter-scroll-area {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 8px 18px 18px;
}
.filter-accordion {
  border-bottom: 1px solid var(--line);
}
.filter-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 850;
}
.filter-accordion summary::-webkit-details-marker {
  display: none;
}
.filter-accordion summary:after {
  content: "+";
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
}
.filter-accordion[open] summary:after {
  content: "−";
}
.filter-accordion-content,
.filter-accordion > .filter-group {
  padding: 0 2px 16px;
}
.filter-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.filter-fields-grid label {
  padding: 0 !important;
  border: 0 !important;
  font-size: 11px !important;
}
.filter-accordion select {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.filter-check-list {
  display: grid;
  gap: 8px;
}
.filter-check {
  padding: 8px 0 !important;
  border: 0 !important;
}
.color-filter-grid,
.size-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.color-filter {
  width: 29px;
  height: 29px;
}
.size-filter {
  min-width: 0;
  width: 100%;
  padding: 8px 4px;
}
.price-filter {
  gap: 7px !important;
}
.price-filter input[type="range"] {
  height: 14px;
}
.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10px;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(30, 22, 14, 0.06);
}
.filter-actions button {
  margin: 0 !important;
  width: 100%;
  justify-content: center;
}
.filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  border: 0;
  background: rgba(12, 10, 8, 0.42);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.filter-backdrop[hidden] {
  display: none;
}
.menu-button.customer-signed-in {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.menu-user-initial {
  font:
    900 19px/1 Manrope,
    sans-serif !important;
  letter-spacing: -0.04em !important;
  transform: translateY(-0.5px);
}
.menu-button .menu-user-initial,
.menu-button:hover .menu-user-initial {
  width: auto;
  height: auto;
  justify-self: center;
  color: inherit;
  opacity: 1;
  visibility: visible;
  background: transparent;
}
.menu-button .menu-lines,
.menu-button:hover .menu-lines {
  width: auto;
  height: auto;
  background: transparent;
}
@media (max-width: 520px) {
  .menu-brand img {
    width: 122px !important;
  }
  .filters {
    inset: auto 0 0 0 !important;
    width: 100% !important;
    height: min(82dvh, 690px) !important;
    border-radius: 22px 22px 0 0 !important;
    transform: translateY(105%);
  }
  .filters.open,
  .filters[aria-hidden="false"] {
    transform: translateY(0);
  }
  .filter-fields-grid {
    grid-template-columns: 1fr;
  }
  .color-filter-grid,
  .size-filter-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .filter-actions {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

/* V4.0.7 — language and display-currency preferences in the hamburger menu */
.menu-preferences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.menu-preferences label {
  display: grid;
  gap: 7px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-preferences select {
  width: 100%;
  min-width: 0;
  padding: 12px 34px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font:
    700 13px "DM Sans",
    sans-serif;
  cursor: pointer;
}
.menu-preferences select:focus {
  outline: 3px solid rgba(154, 93, 56, 0.13);
  border-color: var(--accent);
}
.menu-preferences p {
  grid-column: 1/-1;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
@media (max-width: 520px) {
  .menu-preferences select {
    font-size: 12px;
    padding-left: 10px;
  }
}

/* V4.0.9 — collapsible store preferences */
.menu-preferences {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 16px 0;
}
.menu-preference-dropdown {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.menu-preference-dropdown summary {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  list-style: none;
  cursor: pointer;
}
.menu-preference-dropdown summary::-webkit-details-marker {
  display: none;
}
.menu-preference-dropdown summary span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-preference-dropdown summary strong {
  font-size: 13px;
  color: var(--ink);
}
.menu-preference-dropdown summary:after {
  content: "⌄";
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s;
}
.menu-preference-dropdown[open] summary:after {
  transform: rotate(180deg);
}
.menu-preference-panel {
  padding: 0 12px 12px;
}
.menu-preference-panel select {
  width: 100%;
  padding: 12px 34px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--warm);
  color: var(--ink);
  font:
    700 13px "DM Sans",
    sans-serif;
  cursor: pointer;
}
.menu-preferences > p {
  margin: 3px 2px 0;
}

/* V4.1.2 — compact language and currency controls in the menu footer */
.site-menu {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.site-menu-footer {
  display: block;
  margin-top: auto;
  padding-top: 18px;
}
.site-menu-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-menu-footer small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-preferences {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
}
.menu-preference-dropdown {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.menu-preference-dropdown summary {
  display: grid;
  grid-template-columns: 1fr auto;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 34px;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  list-style: none;
  cursor: pointer;
}
.menu-preference-dropdown summary strong {
  font-size: 11px;
  line-height: 1;
  color: var(--ink);
}
.menu-preference-dropdown summary:after {
  content: "⌃";
  font-size: 9px;
  line-height: 1;
  color: var(--muted);
  transform: none;
}
.menu-preference-dropdown[open] {
  z-index: 5;
}
.menu-preference-dropdown[open] summary {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154, 93, 56, 0.1);
}
.menu-preference-dropdown[open] summary:after {
  transform: rotate(180deg);
}
.menu-preference-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: 175px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 16, 12, 0.14);
}
.menu-preference-panel select {
  padding: 9px 28px 9px 9px;
  font-size: 12px;
}
.menu-preference-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}
@media (max-width: 520px) {
  .site-menu-footer-row {
    gap: 10px;
  }
  .menu-preference-panel {
    width: 160px;
  }
  .menu-preference-note {
    font-size: 8px;
  }
}
