:root {
  --bg: #f5f3ef;
  --white: #ffffff;
  --ink: #1f1f21;
  --muted: #6d6762;
  --line: rgba(31, 31, 33, 0.1);
  --accent: #ded1bc;
  --accent-dark: #a8947a;
  --accent-soft: rgba(222, 209, 188, 0.24);
  --sale: #d45248;
  --shell: 1640px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.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;
}

.shell {
  width: min(calc(100% - 60px), var(--shell));
  margin: 0 auto;
}

.breadcrumbs-list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs-list li + li::before {
  content: ">";
  margin-right: 10px;
  color: rgba(31, 31, 33, 0.36);
}

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.topbar-inner,
.header-main,
.header-categories {
  display: flex;
  align-items: center;
}

.topbar-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}

.topbar-left,
.topbar-right,
.main-nav,
.header-right,
.header-icons,
.header-categories {
  display: flex;
  align-items: center;
}

.topbar-left,
.topbar-right {
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-tag svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #e38a88;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-sale {
  color: #d85c56;
}

.topbar-left a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.topbar-dot,
.topbar-arrow {
  color: #a59d97;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(31, 31, 33, 0.08);
}

.content-page-main {
  padding-bottom: 64px;
}

.content-page-breadcrumbs {
  padding: 24px 0 0;
}

.content-page-hero {
  padding: 28px 0 24px;
}

.content-page-hero-card,
.content-page-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.content-page-hero-card {
  padding: 38px 42px;
}

.content-page-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-page-hero-card h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
}

.content-page-hero-card p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.content-page-section {
  padding: 10px 0 0;
}

.content-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.content-page-card {
  padding: 32px;
}

.content-page-body {
  display: grid;
  gap: 18px;
}

.content-page-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #4d4742;
}

.content-page-aside h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.content-page-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.content-page-highlights li {
  position: relative;
  padding-left: 22px;
  color: #4d4742;
  line-height: 1.7;
}

.content-page-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 980px) {
  .content-page-grid {
    grid-template-columns: 1fr;
  }

  .content-page-hero-card,
  .content-page-card {
    padding: 26px;
  }
}

.header-main {
  min-height: 92px;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  object-fit: contain;
}

.main-nav {
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: #46413c;
  white-space: nowrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-nav a svg,
.header-search button svg,
.help-link svg,
.icon-button svg,
.slide-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search {
  width: min(100%, 400px);
  height: 46px;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e8e1db;
  border-radius: 999px;
  background: #fdfcfa;
}

.header-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.header-search input::placeholder {
  color: #aca29a;
}

.header-search button,
.icon-button,
.slide-arrow,
.slide-dot,
.hotspot,
.variant-button {
  border: 0;
  cursor: pointer;
}

.header-search button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.header-right {
  gap: 18px;
  white-space: nowrap;
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4f4943;
  font-size: 15px;
}

.header-icons {
  gap: 8px;
}

.icon-button {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
}

.accent-icon {
  color: var(--accent-dark);
}

.accent-icon:hover {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
}

.icon-button.is-open {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
}

.icon-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cart-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

body.cart-popup-open .cart-popup-layer {
  opacity: 1;
  pointer-events: auto;
}

.cart-popup-panel {
  position: absolute;
  top: 110px;
  right: 30px;
  width: min(470px, calc(100vw - 32px));
  padding: 28px 28px 24px;
  border: 1px solid rgba(31, 31, 33, 0.8);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(10px);
  transition: transform 0.24s ease;
}

body.cart-popup-open .cart-popup-panel {
  transform: translateY(0);
}

.cart-popup-item,
.cart-popup-empty {
  min-width: 0;
}

.cart-popup-item {
  display: grid;
  grid-template-columns: 24px 92px minmax(0, 1fr) 94px;
  gap: 16px;
  align-items: center;
}

.cart-popup-remove {
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #8a837d;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.cart-popup-media {
  height: 92px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #f7f6f4;
}

.cart-popup-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-popup-copy {
  min-width: 0;
}

.cart-popup-brand {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #8d857f;
}

.cart-popup-copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.cart-popup-price {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.cart-popup-qty {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(31, 31, 33, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
}

.cart-popup-divider {
  height: 1px;
  margin: 20px 0 18px;
  background: rgba(31, 31, 33, 0.1);
}

.cart-popup-summary,
.cart-popup-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-popup-summary {
  font-size: 16px;
}

.cart-popup-summary strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.cart-popup-shipping {
  margin-top: 16px;
}

.cart-popup-shipping p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #534d48;
}

.cart-popup-shipping strong {
  color: var(--accent-dark);
}

.cart-popup-progress {
  height: 6px;
  border-radius: 999px;
  background: #e5e3df;
  overflow: hidden;
}

.cart-popup-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--accent-dark);
  transition: width 0.22s ease;
}

.cart-popup-checkout {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.cart-popup-links {
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.cart-popup-links a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cart-popup-empty {
  display: none;
  padding: 12px 0 4px;
  text-align: center;
}

.cart-popup-empty.is-visible {
  display: block;
}

.cart-popup-empty p {
  margin: 0;
  font-size: 16px;
  color: #534d48;
}

.cart-popup-item.is-hidden,
.cart-popup-divider.is-hidden,
.cart-popup-summary.is-hidden,
.cart-popup-shipping.is-hidden,
.cart-popup-checkout.is-hidden {
  display: none;
}

.account-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 81;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

body.account-popup-open .account-popup-layer {
  opacity: 1;
  pointer-events: auto;
}

.account-popup-panel {
  position: absolute;
  top: 110px;
  right: 76px;
  width: min(430px, calc(100vw - 32px));
  padding: 28px 28px 24px;
  border: 1px solid rgba(31, 31, 33, 0.82);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(10px);
  transition: transform 0.24s ease;
}

body.account-popup-open .account-popup-panel {
  transform: translateY(0);
}

.account-popup-form {
  display: grid;
  gap: 14px;
}

.account-popup-field {
  display: grid;
  gap: 8px;
}

.account-popup-label {
  font-size: 15px;
  font-weight: 500;
  color: #3f3a35;
}

.account-popup-input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(31, 31, 33, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
}

.account-popup-input::placeholder {
  color: #b0a7a0;
}

.account-popup-input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.account-popup-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  border: none;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.account-popup-link {
  margin-top: 18px;
  display: block;
  text-align: center;
  font-size: 15px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-popup-divider {
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(31, 31, 33, 0.1);
}

.account-popup-register {
  margin: 0;
  text-align: center;
  font-size: 16px;
  color: #59524c;
}

.account-popup-register a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-categories {
  min-height: 58px;
  gap: 30px;
  border-top: 1px solid rgba(31, 31, 33, 0.06);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.header-categories::-webkit-scrollbar {
  display: none;
}

.header-categories a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #37332f;
}

.sale-link {
  color: var(--sale) !important;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: min(76vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #d7d0c7;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

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

.slide img {
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.16) 36%, rgba(0, 0, 0, 0.03) 72%);
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.slide-copy {
  max-width: 600px;
  margin-left: 112px;
  color: #ffffff;
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.slide-copy h1 {
  margin: 18px 0 0;
  max-width: 8ch;
  font-size: clamp(56px, 6.1vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.slide-copy p {
  margin: 18px 0 0;
  max-width: 36ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #ffffff;
  font-weight: 700;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.slide-arrow-left {
  left: 16px;
}

.slide-arrow-right {
  right: 16px;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.slide-dot.is-active {
  background: #ffffff;
}

.category-layer {
  padding: 40px 0 52px;
  background: var(--white);
}

.category-layer h2 {
  margin: 0 0 30px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 10px 8px 0;
  text-align: center;
  color: #1f1f21;
  transition: color 0.22s ease;
}

.category-image {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.category-card span {
  font-size: 15px;
  font-weight: 500;
}

.category-card:hover {
  color: var(--accent-dark);
}

.category-card:hover .category-image img {
  transform: scale(1.04);
}

.offer-layer {
  padding: 10px 0 64px;
  background: var(--white);
}

.offer-layer h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

.offer-card {
  position: relative;
  min-height: 320px;
  padding: 34px 28px;
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  --art-offset: 0px;
  --art-shift: 14px;
  --art-rise: 0px;
}

.offer-card-one {
  background: #f1d2c8;
  --art-offset: 22px;
}

.offer-card-two {
  background: #7c6e66;
  color: #ffffff;
  --art-offset: 2px;
  --art-rise: -16px;
}

.offer-card-three {
  background: #97bcc0;
  color: #ffffff;
  --art-offset: 10px;
}

.offer-copy {
  position: relative;
  z-index: 2;
  width: min(54%, 270px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-pill {
  width: fit-content;
  min-height: 28px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 31, 33, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.offer-pill-light {
  border-color: rgba(255, 255, 255, 0.82);
  color: #ffffff;
}

.offer-pill-sale {
  background: #ffffff;
  color: #d45248;
  border-color: #ffffff;
}

.offer-pill-soft {
  background: rgba(255, 255, 255, 0.92);
  color: #1f1f21;
  border-color: rgba(255, 255, 255, 0.92);
}

.offer-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  max-width: 8.5ch;
}

.offer-copy p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 22ch;
}

.offer-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.offer-art img {
  width: auto;
  max-width: 100%;
  max-height: 86%;
  object-fit: contain;
  transform: translate(var(--art-offset), var(--art-rise));
  transition: transform 0.28s ease;
}

.offer-card:hover .offer-art img {
  transform: translate(calc(var(--art-offset) + var(--art-shift)), var(--art-rise));
}

.offer-card-one .offer-art {
  width: 58%;
  align-items: flex-end;
}

.offer-card-one .offer-art img {
  max-width: 96%;
  max-height: 82%;
}

.offer-card-two .offer-art {
  width: 58%;
  align-items: flex-end;
}

.offer-card-two .offer-art img {
  max-width: 106%;
  max-height: 90%;
}

.offer-card-three .offer-art {
  width: 50%;
  align-items: flex-end;
}

.offer-card-three .offer-art img {
  max-width: 102%;
  max-height: 88%;
}

.latest-layer {
  padding: 4px 0 72px;
  background: var(--white);
}

.latest-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.latest-header h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.latest-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.latest-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 31, 33, 0.72);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.latest-arrow:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

.latest-arrow svg {
  width: 18px;
  height: 18px;
}

.latest-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.latest-track::-webkit-scrollbar {
  display: none;
}

.latest-card {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: 0;
}

.latest-card a {
  display: block;
}

.latest-media {
  position: relative;
  height: 336px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #f5f5f3;
  overflow: hidden;
}

.latest-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.latest-card:hover .latest-media img {
  transform: scale(1.03);
}

.latest-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #3f3b39;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.latest-wish:hover {
  color: var(--accent-dark);
  transform: scale(1.06);
}

.latest-wish svg {
  width: 18px;
  height: 18px;
}

.latest-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  min-width: 52px;
  height: 52px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.latest-copy {
  padding-top: 14px;
}

.latest-brand {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #9a938d;
}

.latest-copy h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.latest-price {
  margin: 10px 0 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
}

.latest-price strong {
  color: var(--accent-dark);
  font-weight: 700;
}

.latest-price span {
  color: #b0aaa5;
  text-decoration: line-through;
}

.inspiration-layer {
  padding: 10px 0 80px;
  background: var(--white);
}

.inspiration-title {
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.inspiration-title a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(320px, 0.74fr);
  gap: 18px;
  align-items: start;
}

.inspiration-feature {
  position: relative;
  min-height: 656px;
  border-radius: 8px;
  overflow: hidden;
  background: #ece8e0;
}

.inspiration-feature img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.inspiration-feature:hover img {
  transform: scale(1.02);
}

.inspiration-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 18px 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
}

.inspiration-badge-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  background: var(--accent-dark);
  position: relative;
}

.inspiration-badge-mark::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 9px 9px 4px 4px;
  border: 2px solid #ffffff;
}

.inspiration-badge-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.inspiration-badge-copy strong {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.inspiration-badge-copy span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.shop-stack {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shop-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.shop-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.shop-card-media {
  position: relative;
  min-height: 168px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f4f3f1;
  overflow: hidden;
}

.shop-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.03);
}

.shop-card-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #4d4944;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.shop-card-wish:hover {
  color: var(--accent-dark);
  transform: scale(1.06);
}

.shop-card-wish svg {
  width: 18px;
  height: 18px;
}

.shop-card-copy {
  min-width: 0;
}

.shop-card-brand {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #8a837d;
}

.shop-card-copy h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.shop-card-price {
  margin: 12px 0 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 17px;
}

.shop-card-price strong {
  color: var(--accent-dark);
  font-weight: 700;
}

.shop-card-price span {
  color: #ada6a0;
  text-decoration: line-through;
}

.shop-summary {
  padding-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.shop-summary-button {
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.shop-summary-count {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.shop-summary-total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.shop-summary-total span {
  font-size: 14px;
  color: var(--muted);
}

.shop-summary-total strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.craft-layer {
  padding: 10px 0 86px;
  background: var(--white);
}

.craft-layer h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

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

.craft-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.craft-index {
  padding-top: 10px;
}

.craft-index span {
  display: block;
  font-size: 52px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: -0.06em;
}

.craft-index::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 18px;
  background: var(--accent-dark);
  opacity: 0.35;
}

.craft-body {
  min-width: 0;
}

.craft-image {
  margin-bottom: 26px;
  border-radius: 6px;
  overflow: hidden;
  background: #ece8e0;
}

.craft-image img {
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.craft-card:hover .craft-image img {
  transform: scale(1.03);
}

.craft-body h3 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.craft-body p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: #7e7872;
}

.review-layer {
  padding: 0 0 88px;
  background: var(--white);
}

.review-panel {
  position: relative;
  min-height: 424px;
  padding: 56px 120px 60px;
  border-radius: 8px;
  background: var(--accent-soft);
  overflow: hidden;
}

.review-stage {
  position: relative;
  min-height: 280px;
}

.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.review-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.review-stars {
  margin-bottom: 26px;
  color: var(--accent-dark);
  font-size: 22px;
  letter-spacing: 0.3em;
}

.review-slide blockquote {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 3.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.review-author {
  margin: 30px 0 0;
  font-size: 17px;
  color: #4f4a46;
}

.review-dots {
  position: absolute;
  left: 50%;
  bottom: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.review-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(31, 31, 33, 0.65);
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.review-dot.is-active {
  background: var(--ink);
  border-color: var(--ink);
}

.review-dot:hover {
  transform: scale(1.08);
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 31, 33, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.review-arrow:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

.review-arrow svg {
  width: 18px;
  height: 18px;
}

.review-arrow-prev {
  left: 20px;
}

.review-arrow-next {
  right: 20px;
}

.newsletter-strip {
  padding: 28px 0;
  background: var(--white);
}

.newsletter-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.newsletter-copy {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #141416;
}

.newsletter-form {
  flex: 0 1 640px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(31, 31, 33, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
}

.newsletter-input::placeholder {
  color: #a9a19a;
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(31, 31, 33, 0.28);
}

.newsletter-submit {
  min-width: 154px;
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.newsletter-feedback {
  width: 100%;
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-feedback.is-success {
  color: var(--accent-dark);
}

.newsletter-feedback.is-error {
  color: #b63f3f;
}

.site-footer {
  background: var(--white);
}

.site-footer .shell {
  padding-top: 30px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(31, 31, 33, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-brand {
  width: 212px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-pill {
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
}

.footer-pill-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

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

.footer-address p {
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 700;
}

.footer-address a {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-column h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.footer-link-column a {
  font-size: 16px;
  line-height: 1.25;
  color: #2a2826;
}

.footer-social-row {
  margin-top: 42px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-label {
  margin-right: 14px;
  font-size: 18px;
  font-weight: 700;
}

.footer-social-pill {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(31, 31, 33, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
}

.footer-social-pill.is-highlighted {
  border-color: var(--accent-dark);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.footer-social-icon {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
}

.footer-delivery-pill {
  min-height: 54px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.footer-delivery-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.footer-delivery-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  font-size: 14px;
  line-height: 1.2;
}

.footer-delivery-copy strong {
  font-size: 15px;
}

.footer-bottom {
  margin-top: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 15px;
  color: #3b3835;
}

.footer-legal a {
  color: inherit;
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badge {
  min-width: 54px;
  height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hotspot {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.hotspot::before,
.hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #312d29;
  transform: translate(-50%, -50%);
}

.hotspot::before {
  width: 10px;
  height: 2px;
}

.hotspot::after {
  width: 2px;
  height: 10px;
}

.hotspot-a {
  left: 48%;
  top: 76%;
}

.hotspot-b {
  right: 14%;
  top: 68%;
}

.hotspot-c {
  left: 57%;
  top: 75%;
}

.hotspot-d {
  right: 18%;
  top: 54%;
}

@media (max-width: 1380px) {
  .header-main {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 18px 0;
  }

  .brand {
    width: 190px;
  }

  .main-nav {
    order: 2;
    width: 100%;
    flex-wrap: wrap;
  }

  .header-search {
    order: 3;
    width: min(100%, 520px);
  }

  .header-right {
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .shell {
    width: calc(100% - 28px);
  }

  .help-link span {
    display: none;
  }

  .topbar-right {
    gap: 10px;
  }

  .header-main {
    gap: 16px;
  }

  .header-right {
    gap: 8px;
  }

  .main-nav,
  .header-categories {
    gap: 18px;
  }

  .hero-slider {
    min-height: 520px;
    height: 68vh;
  }

  .slide-copy {
    margin-left: 36px;
    max-width: 430px;
  }

  .hotspot {
    display: none;
  }

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

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

  .offer-card {
    min-height: 290px;
  }

  .latest-card {
    flex-basis: calc((100% - 32px) / 3);
  }

  .latest-media {
    height: 290px;
  }

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

  .inspiration-feature {
    min-height: 540px;
  }

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

  .review-panel {
    min-height: 380px;
    padding: 48px 84px 56px;
  }

  .review-slide blockquote {
    font-size: clamp(34px, 4vw, 48px);
  }

  .newsletter-strip-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }

  .cart-popup-panel {
    width: min(430px, calc(100vw - 28px));
  }

  .account-popup-panel {
    width: min(410px, calc(100vw - 28px));
  }

  .cart-popup-item {
    grid-template-columns: 24px 84px minmax(0, 1fr);
  }

  .cart-popup-qty {
    grid-column: 2 / -1;
    max-width: 96px;
    justify-self: end;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .footer-social-row,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .topbar-right {
    width: 100%;
  }

  .brand {
    width: 165px;
  }

  .main-nav {
    font-size: 14px;
  }

  .header-search {
    width: 100%;
  }

  .header-categories a {
    font-size: 14px;
  }

  .hero-slider {
    min-height: 500px;
  }

  .slide-content {
    align-items: flex-end;
  }

  .slide-copy {
    margin: 0 18px 78px;
    max-width: none;
  }

  .slide-copy h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .slide-copy p {
    font-size: 15px;
  }

  .slide-arrow {
    top: auto;
    bottom: 74px;
  }

  .category-layer {
    padding: 32px 0 38px;
  }

  .category-layer h2 {
    margin-bottom: 22px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .category-image {
    height: 132px;
  }

  .category-image img {
    max-height: 116px;
  }

  .offer-layer {
    padding: 4px 0 40px;
  }

  .offer-layer h2 {
    margin-bottom: 18px;
  }

  .offer-card {
    min-height: 250px;
    padding: 24px 20px;
  }

  .offer-copy {
    width: 56%;
  }

  .offer-copy h3 {
    font-size: 34px;
  }

  .offer-copy p {
    font-size: 15px;
  }

  .offer-art {
    width: 48%;
    align-items: flex-end;
  }

  .offer-art img {
    max-height: 78%;
  }

  .latest-layer {
    padding: 2px 0 42px;
  }

  .latest-header {
    margin-bottom: 16px;
  }

  .latest-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .latest-media {
    height: 236px;
    padding: 14px;
  }

  .latest-copy {
    padding-top: 12px;
  }

  .latest-copy h3 {
    font-size: 17px;
  }

  .latest-price {
    margin-top: 8px;
    font-size: 15px;
  }

  .latest-badge {
    min-width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .inspiration-layer {
    padding: 2px 0 44px;
  }

  .inspiration-title {
    margin-bottom: 18px;
  }

  .inspiration-feature {
    min-height: 400px;
  }

  .inspiration-badge {
    top: 16px;
    left: 16px;
    padding: 14px 16px;
  }

  .shop-list {
    gap: 16px;
  }

  .shop-card {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 12px;
  }

  .shop-card-media {
    min-height: 124px;
    padding: 14px;
  }

  .shop-card-copy h3 {
    font-size: 26px;
  }

  .shop-card-price {
    margin-top: 10px;
    font-size: 16px;
  }

  .shop-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-summary-button {
    min-height: 56px;
    padding: 0 22px;
  }

  .craft-layer {
    padding: 4px 0 48px;
  }

  .craft-layer h2 {
    margin-bottom: 18px;
  }

  .craft-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .craft-index {
    padding-top: 6px;
  }

  .craft-index span {
    font-size: 42px;
  }

  .craft-index::after {
    width: 26px;
    margin-top: 14px;
  }

  .craft-image {
    margin-bottom: 18px;
  }

  .craft-body h3 {
    font-size: 28px;
  }

  .craft-body p {
    margin-top: 12px;
    font-size: 16px;
  }

  .review-layer {
    padding: 0 0 48px;
  }

  .review-panel {
    min-height: 360px;
    padding: 34px 22px 76px;
  }

  .review-stage {
    min-height: 236px;
  }

  .review-stars {
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: 0.18em;
  }

  .review-slide blockquote {
    font-size: 28px;
    line-height: 1.18;
  }

  .review-author {
    margin-top: 22px;
    font-size: 15px;
  }

  .review-dots {
    bottom: 28px;
  }

  .review-arrow {
    top: auto;
    bottom: 22px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .review-arrow-prev {
    left: 18px;
  }

  .review-arrow-next {
    right: 18px;
  }

  .newsletter-strip {
    padding: 24px 0;
  }

  .newsletter-copy {
    font-size: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .newsletter-submit {
    width: 100%;
  }

  .cart-popup-panel {
    top: auto !important;
    right: 14px !important;
    left: 14px;
    bottom: 18px;
    width: auto;
    padding: 22px 18px 20px;
  }

  .cart-popup-item {
    grid-template-columns: 22px 74px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-popup-media {
    height: 74px;
    padding: 8px;
  }

  .cart-popup-copy h3 {
    font-size: 15px;
  }

  .cart-popup-price {
    margin-top: 8px;
  }

  .cart-popup-qty {
    grid-column: 2 / -1;
    height: 38px;
    max-width: none;
    justify-self: stretch;
  }

  .cart-popup-checkout {
    min-height: 48px;
    font-size: 17px;
  }

  .cart-popup-links {
    gap: 12px 18px;
    font-size: 14px;
  }

  .account-popup-panel {
    top: auto !important;
    right: 14px !important;
    left: 14px;
    bottom: 18px;
    width: auto;
    padding: 22px 18px 20px;
  }

  .account-popup-input {
    height: 46px;
  }

  .account-popup-submit {
    min-height: 48px;
    font-size: 17px;
  }

  .account-popup-link,
  .account-popup-register {
    font-size: 14px;
  }

  .site-footer .shell {
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-brand {
    width: 176px;
  }

  .footer-contact-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-address p {
    font-size: 16px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .footer-link-column h3 {
    font-size: 16px;
  }

  .footer-link-column a {
    font-size: 15px;
  }

  .footer-social-row {
    margin-top: 28px;
    padding-top: 20px;
  }

  .footer-social-label {
    margin-right: 0;
    width: 100%;
    font-size: 17px;
  }

  .footer-delivery-pill {
    width: 100%;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 18px;
    align-items: flex-start;
  }

  .footer-delivery-copy {
    gap: 6px;
  }

  .footer-bottom {
    margin-top: 32px;
    gap: 16px;
  }

  .footer-legal {
    gap: 10px 18px;
    font-size: 14px;
  }

  .payment-badge {
    min-width: 48px;
  }
}
