:root {
  --primary: #1d394f;
  --secondary: #b59047;
  --black: #000000;
  --white: #ffffff;
  --primary-rgb: 29, 57, 79;
  --secondary-rgb: 181, 144, 71;
  --black-rgb: 0, 0, 0;
  --white-rgb: 255, 255, 255;
  --background: var(--white);
  --foreground: var(--black);
  --card: var(--white);
  --muted: rgba(var(--black-rgb), 0.68);
  --accent: var(--secondary);
  --accent-strong: var(--primary);
  --border: rgba(var(--primary-rgb), 0.12);
  --topbar: var(--primary);
  --offer-bg: rgba(var(--secondary-rgb), 0.14);
  --offer-foreground: var(--primary);
  --sale: var(--secondary);
  --sale-foreground: var(--white);
  --shadow: 0 16px 40px rgba(var(--primary-rgb), 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", system-ui, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 100%;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: min(90vw, 25rem);
  text-align: center;
}

.preloader__logo-wrap {
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 1.75rem;
  background: rgba(29, 57, 79, 0.05);
  box-shadow:
    0 20px 44px rgba(29, 57, 79, 0.12),
    inset 0 0 0 1px rgba(29, 57, 79, 0.08);
  backdrop-filter: blur(18px);
}

.preloader__logo {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
}

.preloader__title {
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d394f;
}

.preloader__progress {
  overflow: hidden;
  margin-top: 16px;
  width: min(13rem, 60vw);
  height: 2px;
  border-radius: 999px;
  background: rgba(29, 57, 79, 0.12);
}

.preloader__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #6b8fe0 0%, #b59047 50%, #fff3df 100%);
}

.topbar {
  background: var(--topbar);
  color: #fff;
  font-size: 0.78rem;
}

.topbar__inner,
.topbar__group,
.topbar__item,
.navbar__inner,
.navbar__actions,
.search,
.category-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__inner {
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
}

.topbar__group {
  gap: 20px;
}

.topbar__item {
  gap: 8px;
  white-space: nowrap;
  opacity: 0.96;
}

.navbar {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s ease,
    opacity 0.35s ease;
}

.navbar__inner {
  gap: 20px;
  justify-content: space-between;
  min-height: 82px;
}

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

.brand img {
  width: clamp(172px, 20vw, 260px);
  height: auto;
}

.search {
  position: relative;
  flex: 1;
  max-width: 520px;
}

.search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--foreground);
  padding: 14px 18px 14px 46px;
}

.search input:focus {
  box-shadow: 0 0 0 2px rgba(180, 138, 198, 0.35);
}

.navbar__actions {
  gap: 10px;
}

.sign-in,
.hero__cta {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.sign-in {
  padding: 12px 18px;
}

.sign-in:hover,
.hero__cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--foreground);
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-button:hover {
  background: var(--secondary);
  color: var(--accent-strong);
}

.navbar__actions > .icon-button[aria-label="Wishlist"] svg {
  width: 1.38rem;
  height: 1.38rem;
}

.navbar__actions > .icon-button[aria-label="Wishlist"] {
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.navbar__actions > .icon-button[aria-label="Wishlist"]:hover,
.navbar__actions > .icon-button[aria-label="Wishlist"]:focus-visible {
  transform: scale(1.08);
}

.cart-button {
  position: relative;
  color: #1d394f;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cart-button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button:hover {
  color: #b59047;
  transform: scale(1.04);
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  background: rgba(255, 252, 247, 0.96);
  border-bottom-color: rgba(var(--primary-rgb), 0.08);
  box-shadow: 0 16px 34px rgba(var(--primary-rgb), 0.12);
  animation: navbar-slide-in 0.4s ease both;
}

.navbar.is-sticky .navbar__inner {
  min-height: 78px;
}

body.has-sticky-navbar {
  padding-top: var(--navbar-height, 82px);
}

body.cart-drawer-open {
  overflow: hidden;
}

@keyframes navbar-slide-in {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-count {
  position: absolute;
  top: 5px;
  right: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--sale);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle__bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-open .mobile-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-open .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open .mobile-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.search--mobile,
.mobile-menu {
  display: none;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu .container {
  padding: 16px 0 18px;
}

.sign-in--full {
  width: 100%;
}

.mobile-menu__links {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  color: var(--muted);
}

.mobile-menu__links a:hover {
  color: var(--foreground);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 26, 18, 0.42);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 9998;
}

.cart-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100vw, 380px);
  height: 100vh;
  padding: 1.25rem;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: -24px 0 60px rgba(var(--primary-rgb), 0.16);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 9999;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header,
.cart-drawer__subtotal,
.cart-drawer__qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__header {
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.cart-drawer__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-drawer__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: var(--primary);
}

.cart-drawer__close {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cart-drawer__close:hover {
  transform: rotate(90deg);
  background: var(--secondary);
  color: var(--white);
}

.cart-drawer__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 0;
}

.cart-drawer__items {
  display: grid;
  gap: 0.95rem;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(var(--white-rgb), 0.92);
  box-shadow: 0 14px 32px rgba(var(--primary-rgb), 0.08);
}

.cart-drawer__item-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.cart-drawer__item-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
}

.cart-drawer__item-price {
  margin: 0 0 0.8rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--secondary);
}

.cart-drawer__qty {
  justify-content: flex-start;
  gap: 0.55rem;
}

.cart-drawer__qty-button,
.cart-drawer__remove {
  border: 0;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cart-drawer__qty-button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

.cart-drawer__qty-button:hover,
.cart-drawer__remove:hover {
  transform: translateY(-1px);
  background: var(--secondary);
  color: var(--white);
}

.cart-drawer__qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
}

.cart-drawer__remove {
  margin-top: 0.8rem;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.cart-drawer__empty {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}

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

.cart-drawer__footer {
  display: grid;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}

.cart-drawer__subtotal {
  font-size: 1rem;
  color: var(--primary);
}

.cart-drawer__subtotal strong {
  font-size: 1.18rem;
}

.cart-drawer__checkout,
.cart-drawer__view-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cart-drawer__checkout {
  border: 0;
  background: linear-gradient(135deg, var(--secondary), #c4a05b);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(var(--secondary-rgb), 0.24);
}

.cart-drawer__checkout:hover {
  transform: translateY(-1px);
  background: var(--primary);
}

.cart-drawer__view-cart {
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  color: var(--primary);
  background: rgba(var(--white-rgb), 0.9);
}

.cart-drawer__view-cart:hover {
  transform: translateY(-1px);
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary);
}

.category-strip {
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid var(--border);
}



.category-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: start;
  justify-items: center;
  gap: 20px;
  width: 100%;
  padding: 0;
  overflow: visible;
}

.category-card {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  color: var(--foreground);
  text-align: center;
  transition: transform 0.25s ease;
}

.category-card__image-wrap {
  position: relative;
  width: min(100%, 84px);
  aspect-ratio: 1;
  border: 2px solid var(--border);
  border-radius: 50%;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.25s ease;
}

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

.category-card:hover .category-card__image-wrap {
  border-color: var(--accent);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

.category-card__badge {
  position: absolute;
  inset: auto 0 0 0;
  background: var(--sale);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 0;
}

.category-card__label {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--foreground);
  box-shadow: var(--shadow);
}

.offer-strip {
  background: var(--offer-bg);
  color: var(--offer-foreground);
  text-align: center;
  padding: 14px 16px;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.offer-strip__code {
  display: inline-block;
  margin: 0 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(49, 43, 38, 0.08);
  font-weight: 700;
}

.hero {
  padding: 24px 0 32px;
  max-width: 100%;
  overflow-x: clip;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.hero__image-panel,
.hero__content {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero__image-panel {
  box-shadow: var(--shadow);
}

.hero__image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  will-change: transform, opacity;
}

.hero__image-panel:hover img {
  transform: scale(1.04);
}

.hero__content {
  position: relative;
  background: linear-gradient(145deg, #ef4444, var(--sale));
  color: var(--sale-foreground);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 32px;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  will-change: transform;
}

.hero__ring--one {
  width: 120px;
  height: 120px;
  top: 16px;
  right: 16px;
}

.hero__ring--two {
  width: 170px;
  height: 170px;
  bottom: 20px;
  left: 20px;
}

.hero__eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.9;
  will-change: transform, opacity;
}

.hero__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.95;
  will-change: transform, opacity;
}

.hero__discount {
  margin: 16px 0 26px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  will-change: transform, opacity;
}

.hero__cta {
  display: inline-block;
  justify-self: center;
  background: #fff;
  color: var(--sale);
  padding: 14px 26px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  will-change: transform, opacity;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.hero__nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  z-index: 1;
}

.hero__nav--left {
  left: -8px;
}

.hero__nav--right {
  right: -8px;
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #dacdc2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__dot.is-active {
  background: var(--foreground);
  transform: scale(1.15);
}

.top-categories {
  padding: 10px 0 24px;
}

.top-categories__intro {
  background: linear-gradient(135deg, #dfe9dc 0%, #e8f1e3 100%);
  border-top: 1px solid rgba(113, 138, 106, 0.12);
  border-bottom: 1px solid rgba(113, 138, 106, 0.12);
}

.top-categories__intro-inner {
  padding: 26px 0 30px;
  text-align: center;
}

.top-categories__kicker {
  margin: 0 0 8px;
  font-size: 0.98rem;
  color: #63745d;
}

.top-categories__heading {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #263126;
}

.top-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 28px;
}

.top-categories__card {
  min-width: 0;
}

.top-categories__link {
  display: block;
}

.top-categories__image-wrap {
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(39, 47, 35, 0.08);
}

.top-categories__image-wrap img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.top-categories__link:hover .top-categories__image-wrap img {
  transform: scale(1.05);
}

.top-categories__title {
  margin: 16px 2px 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
  color: #302822;
}

.top-homeware {
  padding: 10px 0 24px;
}

.top-homeware__intro {
  background: linear-gradient(135deg, #eee2cf 0%, #f5ecde 100%);
  border-top: 1px solid rgba(170, 141, 90, 0.14);
  border-bottom: 1px solid rgba(170, 141, 90, 0.14);
}

.top-homeware__intro-inner {
  padding: 26px 0 30px;
  text-align: center;
}

.top-homeware__kicker {
  margin: 0 0 8px;
  font-size: 0.98rem;
  color: #8a6d46;
}

.top-homeware__heading {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #35291c;
}

.top-homeware__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 28px;
}

.top-homeware__card {
  min-width: 0;
}

.top-homeware__link {
  display: block;
}

.top-homeware__image-wrap {
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(64, 50, 32, 0.08);
}

.top-homeware__image-wrap img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.top-homeware__link:hover .top-homeware__image-wrap img {
  transform: scale(1.05);
}

.top-homeware__title {
  margin: 16px 2px 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
  color: #302822;
}

.living-feature {
  padding: 20px 0 56px;
}

.living-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #f7f0e7 0%, #f2e7da 100%);
  box-shadow: var(--shadow);
}

.living-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(32px, 6vw, 72px);
}

.living-feature__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #8b6f5b;
}

.living-feature__title {
  margin: 0;
  max-width: 10ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #2d241d;
}

.living-feature__description {
  margin: 0;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #6d5b4d;
}

.living-feature__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 178px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #2f241d;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.living-feature__cta:hover {
  background: #47372e;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(47, 36, 29, 0.18);
}

.living-feature__media {
  min-height: 100%;
}

.living-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.dining-feature {
  padding: 0 0 56px;
}

.dining-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #f6eee4 0%, #efe1d1 100%);
  box-shadow: var(--shadow);
}

.dining-feature__media {
  min-height: 100%;
}

.dining-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.dining-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(32px, 6vw, 72px);
}

.dining-feature__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #8b6f5b;
}

.dining-feature__title {
  margin: 0;
  max-width: 10ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #2d241d;
}

.dining-feature__description {
  margin: 0;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #6d5b4d;
}

.dining-feature__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 178px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #2f241d;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dining-feature__cta:hover {
  background: #47372e;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(47, 36, 29, 0.18);
}

.bedroom-feature {
  padding: 0 0 56px;
}

.bedroom-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #f6eee4 0%, #efe1d1 100%);
  box-shadow: var(--shadow);
}

.bedroom-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(32px, 6vw, 72px);
}

.bedroom-feature__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #8b6f5b;
}

.bedroom-feature__title {
  margin: 0;
  max-width: 10ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #2d241d;
}

.bedroom-feature__description {
  margin: 0;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #6d5b4d;
}

.bedroom-feature__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 178px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #2f241d;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bedroom-feature__cta:hover {
  background: #47372e;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(47, 36, 29, 0.18);
}

.bedroom-feature__media {
  min-height: 100%;
}

.bedroom-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.furniture-deals {
  padding: 0 0 56px;
}

.furniture-deals__intro {
  overflow: hidden;
  background: linear-gradient(135deg, #eee0c9 0%, #f4eadc 100%);
  border-top: 1px solid rgba(170, 141, 90, 0.14);
  border-bottom: 1px solid rgba(170, 141, 90, 0.14);
}

.furniture-deals__intro-inner {
  position: relative;
  padding: 30px 0 34px;
  text-align: center;
}

.furniture-deals__pattern {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(120, 94, 56, 0.08);
  white-space: nowrap;
  pointer-events: none;
}

.furniture-deals__heading {
  position: relative;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #35291c;
}

.furniture-deals__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 28px;
}

.furniture-deals__card {
  min-width: 0;
  height: 100%;
}

.furniture-deals__link {
  display: block;
}

.furniture-deals__image-wrap {
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(64, 50, 32, 0.08);
}

.furniture-deals__image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.furniture-deals__link:hover .furniture-deals__image-wrap img {
  transform: scale(1.05);
}

.furniture-deals__title {
  margin: 16px 2px 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
  color: #302822;
}

.stores-showcase {
  padding: 0 0 56px;
}

.stores-showcase__features {
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stores-showcase__features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0;
}

.stores-showcase__feature {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 14px 12px;
  text-align: center;
  border-radius: 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.stores-showcase__feature:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.7);
}

.stores-showcase__feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4e8d8 0%, #efe0ca 100%);
  color: #6f5840;
  box-shadow: 0 10px 24px rgba(64, 50, 32, 0.08);
}

.stores-showcase__feature-icon svg {
  width: 26px;
  height: 26px;
}

.stores-showcase__feature-text {
  margin: 0;
  max-width: 14ch;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
  color: #302822;
}

.stores-showcase__store-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.stores-showcase__content,
.stores-showcase__image-wrap {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.stores-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(32px, 6vw, 68px);
  background: linear-gradient(135deg, #f6eee4 0%, #efe1d1 100%);
  box-shadow: var(--shadow);
}

.stores-showcase__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #8b6f5b;
}

.stores-showcase__title {
  margin: 0;
  max-width: 12ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #2d241d;
}

.stores-showcase__description {
  margin: 0;
  max-width: 29rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #6d5b4d;
}

.stores-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 176px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #2f241d;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.stores-showcase__cta:hover {
  background: #47372e;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(47, 36, 29, 0.18);
}

.stores-showcase__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stores-showcase__image-wrap {
  min-height: 100%;
  box-shadow: var(--shadow);
}

.stores-showcase__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.reviews-section {
  padding: 0 0 72px;
}

.reviews-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.reviews-section__eyebrow,
.reviews-section__count {
  margin: 0;
}

.reviews-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #6d5b4d;
}

.reviews-section__google-logo {
  height: 26px;
  width: auto;
  max-width: 132px;
  flex: 0 0 auto;
  object-fit: contain;
}

.reviews-section__score {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: #2d241d;
}

.reviews-section__score span {
  font-size: 0.72em;
  letter-spacing: 0.08em;
  color: #c59b2f;
}

.reviews-section__count {
  margin-top: 8px;
  font-size: 0.96rem;
  color: #8b7a6d;
}

.reviews-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #2f241d;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reviews-section__cta:hover {
  background: #47372e;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(47, 36, 29, 0.18);
}

.reviews-section {
  max-width: 100%;
  overflow-x: clip;
}

.reviews-carousel {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

.reviews-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0;
}

.reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

.reviews-carousel__nav {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #2f241d;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.12);
}

.reviews-carousel__nav--left {
  left: -22px;
}

.reviews-carousel__nav--right {
  right: -22px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(42, 24, 14, 0.08);
}

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

.review-card__identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8dbc9 0%, #e0cfb8 100%);
  color: #5c4835;
  font-weight: 700;
}

.review-card__name,
.review-card__meta,
.review-card__text,
.review-card__source {
  margin: 0;
}

.review-card__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #2d241d;
}

.review-card__meta {
  margin-top: 4px;
  font-size: 0.88rem;
  color: #8b7a6d;
}

.review-card__stars {
  white-space: nowrap;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #c59b2f;
}

.review-card__text {
  margin-top: 18px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #54463c;
  flex: 1;
}

.review-card__source {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #8b7a6d;
}

.review-card__google-badge {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.instagram-feed {
  padding: 0 0 80px;
  max-width: 100%;
  overflow-x: clip;
}

.instagram-feed__header {
  margin-bottom: 22px;
}

.instagram-feed__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2d241d;
}

.instagram-feed__title svg {
  width: 0.92em;
  height: 0.92em;
  flex: 0 0 auto;
}

.instagram-carousel {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

.instagram-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0;
}

.instagram-carousel__track::-webkit-scrollbar {
  display: none;
}

.instagram-carousel__nav {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #2f241d;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.12);
}

.instagram-carousel__nav--left {
  left: -22px;
}

.instagram-carousel__nav--right {
  right: -22px;
}

.instagram-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(42, 24, 14, 0.08);
  aspect-ratio: 0.82;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(32, 24, 18, 0.1), rgba(32, 24, 18, 0.5));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.instagram-card__overlay svg {
  width: 20px;
  height: 20px;
}

.instagram-card:hover img {
  transform: scale(1.05);
}

.instagram-card:hover video {
  transform: scale(1.05);
}

.instagram-card:hover .instagram-card__overlay {
  opacity: 1;
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #f7f1e8 100%);
  border-top: 1px solid var(--border);
}

.site-footer__top {
  padding: 42px 0 36px;
  border-bottom: 1px solid rgba(111, 88, 64, 0.12);
}

.site-footer__top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
}

.site-footer__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2d241d;
}

.site-footer__text {
  margin: 12px 0 0;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #6d5b4d;
}

.site-footer__subscribe-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.site-footer__subscribe-form input {
  flex: 1;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(111, 88, 64, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #2d241d;
  outline: 0;
}

.site-footer__subscribe-form input:focus {
  box-shadow: 0 0 0 2px rgba(180, 138, 198, 0.18);
}

.site-footer__subscribe-form button,
.site-footer__store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #2f241d;
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-footer__subscribe-form button {
  min-width: 150px;
  padding: 0 26px;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.14);
}

.site-footer__subscribe-form button:hover,
.site-footer__store-button:hover {
  background: #47372e;
  transform: translateY(-2px);
}

.site-footer__app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.site-footer__store-button {
  min-width: 168px;
  min-height: 56px;
  padding: 10px 18px;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 12px 24px rgba(47, 36, 29, 0.12);
}

.site-footer__store-button--image {
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  color: inherit;
  line-height: 0;
}

.site-footer__store-button--image img {
  display: block;
  height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-footer__store-button--image:hover {
  background: transparent !important;
  color: inherit;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.site-footer__store-label {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.82;
}

.site-footer__middle {
  padding: 38px 0 30px;
}

.site-footer__links-grid,
.site-footer__extra-grid {
  display: grid;
  gap: 24px;
}

.site-footer__links-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.site-footer__extra-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(111, 88, 64, 0.12);
}

.site-footer__column h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #2d241d;
}

.site-footer__column a,
.site-footer__contact a,
.site-footer__legal p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6d5b4d;
}

.site-footer__column a,
.site-footer__contact a {
  display: block;
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover {
  color: #2d241d;
  text-decoration-color: currentColor;
}

.site-footer__bottom {
  padding: 28px 0 22px;
  border-top: 1px solid rgba(111, 88, 64, 0.12);
}

.site-footer__bottom-main,
.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #2f241d;
  box-shadow: 0 10px 20px rgba(47, 36, 29, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer__social a:hover {
  transform: translateY(-2px);
  background: #fff;
}

.site-footer__legal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 88, 64, 0.1);
}

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

.site-footer__brand img {
  width: clamp(170px, 18vw, 230px);
  height: auto;
}

.site-footer__legal p {
  margin: 0;
}

@media (max-width: 980px) {
  .search--desktop,
  .sign-in,
  .navbar__more,
  .topbar__group--desktop {
    display: none;
  }

  .mobile-toggle,
  .search--mobile {
    display: flex;
  }

  .search--mobile {
    margin-bottom: 14px;
  }

  .navbar__inner {
    min-height: 74px;
  }

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

  .hero__image-panel,
  .hero__content {
    min-height: 320px;
  }

  .hero__nav {
    top: 190px;
  }

  .living-feature__grid {
    grid-template-columns: 1fr;
  }

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

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

  .category-card__image-wrap {
    width: min(100%, 76px);
  }

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

  .living-feature__media {
    order: -1;
  }

  .living-feature__media img {
    min-height: 320px;
  }

  .dining-feature__grid {
    grid-template-columns: 1fr;
  }

  .dining-feature__media {
    order: -1;
  }

  .dining-feature__media img {
    min-height: 320px;
  }

  .bedroom-feature__grid {
    grid-template-columns: 1fr;
  }

  .bedroom-feature__media {
    order: -1;
  }

  .bedroom-feature__media img {
    min-height: 320px;
  }

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

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

  .stores-showcase__store-grid {
    grid-template-columns: 1fr;
  }

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

  .stores-showcase__image-wrap img {
    min-height: 320px;
  }

  .reviews-carousel__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .reviews-carousel__nav--left {
    left: -10px;
  }

  .reviews-carousel__nav--right {
    right: -10px;
  }

  .instagram-carousel__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .instagram-carousel__nav--left {
    left: -10px;
  }

  .instagram-carousel__nav--right {
    right: -10px;
  }

  .site-footer__top-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .topbar__group {
    gap: 14px;
  }

  .topbar__inner {
    min-height: 38px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topbar__inner::-webkit-scrollbar {
    display: none;
  }

  .navbar__actions {
    gap: 4px;
  }

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

  .category-card__image-wrap {
    width: min(100%, 76px);
  }

  .hero {
    padding-top: 16px;
  }

  .hero__layout {
    gap: 16px;
  }

  .hero__content {
    padding: 28px 22px;
  }

  .hero__nav {
    width: 40px;
    height: 40px;
    top: 166px;
  }

  .top-categories {
    padding: 8px 0 16px;
  }

  .top-categories__intro-inner {
    padding: 22px 0 24px;
  }

  .top-categories__kicker {
    font-size: 0.92rem;
  }

  .top-categories__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 20px;
  }

  .top-categories__title {
    margin-top: 12px;
  }

  .top-homeware {
    padding: 8px 0 16px;
  }

  .top-homeware__intro-inner {
    padding: 22px 0 24px;
  }

  .top-homeware__kicker {
    font-size: 0.92rem;
  }

  .top-homeware__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 20px;
  }

  .top-homeware__title {
    margin-top: 12px;
  }

  .living-feature {
    padding: 12px 0 40px;
  }

  .living-feature__content {
    gap: 14px;
    padding: 28px 22px 30px;
  }

  .living-feature__title {
    max-width: none;
  }

  .living-feature__description {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .living-feature__media img {
    min-height: 240px;
  }

  .dining-feature {
    padding: 0 0 40px;
  }

  .category-strip {
    padding: 18px 0 20px;
  }

  .category-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    justify-items: unset;
    align-items: flex-start;
    padding: 0 4px 6px;
    -webkit-overflow-scrolling: touch;
  }

  .category-list::-webkit-scrollbar {
    display: none;
  }

  .category-list {
    scrollbar-width: none;
  }

  .category-card {
    flex: 0 0 92px;
    width: 92px;
    min-width: 92px;
    scroll-snap-align: start;
  }

  .category-card__image-wrap {
    width: 84px;
  }

  .dining-feature__content {
    gap: 14px;
    padding: 28px 22px 30px;
  }

  .dining-feature__title {
    max-width: none;
  }

  .dining-feature__description {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .dining-feature__media img {
    min-height: 240px;
  }

  .bedroom-feature {
    padding: 0 0 40px;
  }

  .bedroom-feature__content {
    gap: 14px;
    padding: 28px 22px 30px;
  }

  .bedroom-feature__title {
    max-width: none;
  }

  .bedroom-feature__description {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .bedroom-feature__media img {
    min-height: 240px;
  }

  .furniture-deals {
    padding: 0 0 40px;
  }

  .furniture-deals__intro-inner {
    padding: 24px 0 28px;
  }

  .furniture-deals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 20px;
  }

  .furniture-deals__title {
    margin-top: 12px;
  }

  .stores-showcase {
    padding: 0 0 40px;
  }

  .stores-showcase__features {
    margin-bottom: 20px;
  }

  .stores-showcase__features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 0;
  }

  .stores-showcase__feature {
    gap: 10px;
    padding: 12px 10px;
  }

  .stores-showcase__content {
    gap: 14px;
    padding: 28px 22px 30px;
  }

  .stores-showcase__title {
    max-width: none;
  }

  .stores-showcase__description {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .stores-showcase__media {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stores-showcase__image-wrap img {
    min-height: 240px;
  }

  .reviews-section {
    padding: 0 0 52px;
  }

  .reviews-section__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .reviews-section__cta {
    min-width: 0;
    width: 100%;
  }

  .reviews-carousel__track {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .reviews-carousel__nav {
    display: none;
  }

  .review-card {
    padding: 20px;
  }

  .review-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .instagram-feed {
    padding: 0 0 56px;
  }

  .instagram-feed__header {
    margin-bottom: 16px;
  }

  .instagram-carousel__track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }

  .instagram-carousel__nav {
    display: none;
  }

  .instagram-card {
    border-radius: 22px;
  }

  .site-footer__top {
    padding: 34px 0 28px;
  }

  .site-footer__subscribe-form {
    flex-direction: column;
  }

  .site-footer__subscribe-form button {
    min-height: 52px;
  }

  .site-footer__app-buttons {
    flex-direction: column;
  }

  .site-footer__store-button {
    width: 100%;
    align-items: center;
  }

  .site-footer__middle {
    padding: 30px 0 24px;
  }

  .site-footer__links-grid,
  .site-footer__extra-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer__extra-grid {
    margin-top: 24px;
    padding-top: 24px;
  }

  .site-footer__bottom-main,
  .site-footer__legal,
  .site-footer__contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__bottom {
    padding: 24px 0 20px;
  }

  .site-footer__legal {
    margin-top: 16px;
    padding-top: 16px;
  }
}

/* Brand palette overrides */
.topbar,
.offer-strip,
.hero__content {
  color: var(--white);
}

.navbar,
.mobile-menu,
.category-strip,
.top-categories,
.top-homeware,
.living-feature,
.dining-feature,
.bedroom-feature,
.furniture-deals,
.stores-showcase,
.reviews-section,
.instagram-feed,
.site-footer {
  background: var(--white);
}

.navbar {
  background: rgba(var(--white-rgb), 0.96);
}

.search input,
.mobile-menu,
.review-card,
.stores-showcase__feature,
.site-footer__subscribe-form input,
.site-footer__social a,
.reviews-carousel__nav,
.instagram-carousel__nav {
  background: var(--white);
}

.search input,
.site-footer__subscribe-form input {
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  color: var(--black);
}

.search input:focus,
.site-footer__subscribe-form input:focus {
  box-shadow: 0 0 0 2px rgba(var(--secondary-rgb), 0.25);
}

.search svg,
.top-categories__kicker,
.top-homeware__kicker,
.living-feature__eyebrow,
.dining-feature__eyebrow,
.bedroom-feature__eyebrow,
.stores-showcase__eyebrow,
.reviews-section__eyebrow,
.reviews-section__count,
.review-card__meta,
.review-card__source,
.site-footer__text,
.site-footer__column a,
.site-footer__contact a,
.site-footer__legal p {
  color: var(--muted);
}
.topbar__item{
  color : #fff;
}
.brand,

.navbar__actions,
.icon-button,
.category-card,
.top-categories__heading,
.top-homeware__heading,
.top-categories__title,
.top-homeware__title,
.living-feature__title,
.dining-feature__title,
.bedroom-feature__title,
.living-feature__description,
.dining-feature__description,
.bedroom-feature__description,
.furniture-deals__heading,
.furniture-deals__title,
.stores-showcase__feature-text,
.stores-showcase__title,
.stores-showcase__description,
.reviews-section__score,
.review-card__name,
.review-card__text,
.instagram-feed__title,
.site-footer__title,
.site-footer__column h3,
.site-footer__brand {
  color: var(--primary);
}

.offer-strip {
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--primary);
}

.offer-strip__code,
.hero__discount,
.reviews-section__score span,
.review-card__stars {
  color: var(--secondary);
}

.hero__content {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.92) 100%);
}

.hero__ring {
  border-color: rgba(var(--secondary-rgb), 0.3);
}

.hero__cta,
.sign-in,
.living-feature__cta,
.dining-feature__cta,
.bedroom-feature__cta,
.stores-showcase__cta,
.reviews-section__cta,
.site-footer__subscribe-form button,
.site-footer__store-button {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(var(--secondary-rgb), 0.22);
}

.hero__cta:hover,
.sign-in:hover,
.living-feature__cta:hover,
.dining-feature__cta:hover,
.bedroom-feature__cta:hover,
.stores-showcase__cta:hover,
.reviews-section__cta:hover,
.site-footer__subscribe-form button:hover,
.site-footer__store-button:hover {
  background: var(--primary);
  color: var(--white);
}

.icon-button:hover,
.category-card:hover .category-card__image-wrap,
.stores-showcase__feature:hover,
.site-footer__social a:hover,
.reviews-carousel__nav:hover,
.instagram-carousel__nav:hover {
  color: var(--secondary);
}

.icon-button:hover,
.reviews-carousel__nav:hover,
.instagram-carousel__nav:hover {
  background: rgba(var(--secondary-rgb), 0.12);
}

.category-strip,
.top-categories__intro,
.top-homeware__intro,
.furniture-deals__intro,
.stores-showcase__features,
.site-footer,
.site-footer__top,
.site-footer__extra-grid,
.site-footer__bottom,
.site-footer__legal,
.mobile-menu {
  border-color: rgba(var(--primary-rgb), 0.12);
}

.category-card__image-wrap,
.top-categories__image-wrap,
.top-homeware__image-wrap,
.furniture-deals__image-wrap,
.stores-showcase__feature-icon,
.stores-showcase__content,
.reviews-carousel__nav,
.instagram-carousel__nav,
.review-card,
.instagram-card,
.site-footer__store-button,
.site-footer__social a {
  box-shadow: 0 14px 30px rgba(var(--primary-rgb), 0.08);
}

.top-categories__intro,
.top-homeware__intro,
.furniture-deals__intro,
.living-feature__grid,
.dining-feature__grid,
.bedroom-feature__grid,
.stores-showcase__content,
.stores-showcase__feature-icon,
.review-card__avatar,
.site-footer {
  background: linear-gradient(180deg, rgba(var(--white-rgb), 1) 0%, rgba(var(--secondary-rgb), 0.08) 100%);
}

.furniture-deals__pattern {
  color: rgba(var(--primary-rgb), 0.08);
}

.reviews-carousel__nav,
.instagram-carousel__nav {
  color: var(--primary);
}

.review-card__avatar,
.stores-showcase__feature-icon {
  color: var(--primary);
}

.instagram-card__overlay {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.72));
  color: var(--white);
}

.hero__dot {
  background: rgba(var(--primary-rgb), 0.2);
}

.hero__dot.is-active,
.cart-count {
  background: var(--secondary);
  color: var(--white);
}

.site-footer__column a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover {
  color: var(--secondary);
}

body {
  background:
    radial-gradient(circle at top left, rgba(var(--secondary-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fff 22%, #f9f4ec 100%);
  overflow-x: hidden;
}

.site-shell {
  position: relative;
}

.mobile-bottom-nav {
  display: none;
}

.topbar,
.navbar,
.category-strip,
.offer-strip,
.hero,
.top-categories,
.top-homeware,
.living-feature,
.dining-feature,
.bedroom-feature,
.furniture-deals,
.stores-showcase,
.reviews-section,
.instagram-feed,
.site-footer {
  position: relative;
}

.navbar {
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 14px 30px rgba(var(--primary-rgb), 0.05);
}

.search input {
  min-height: 3.25rem;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.search input:focus {
  transform: translateY(-1px);
}

.sign-in,
.hero__cta,
.living-feature__cta,
.dining-feature__cta,
.bedroom-feature__cta,
.stores-showcase__cta,
.reviews-section__cta,
.site-footer__subscribe-form button,
.site-footer__store-button {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.sign-in:hover,
.hero__cta:hover,
.living-feature__cta:hover,
.dining-feature__cta:hover,
.bedroom-feature__cta:hover,
.stores-showcase__cta:hover,
.reviews-section__cta:hover,
.site-footer__subscribe-form button:hover,
.site-footer__store-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(var(--primary-rgb), 0.14);
}

.icon-button,
.scroll-button,
.hero__nav,
.reviews-carousel__nav,
.instagram-carousel__nav {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.icon-button:hover,
.scroll-button:hover,
.hero__nav:hover,
.reviews-carousel__nav:hover,
.instagram-carousel__nav:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 30px rgba(var(--primary-rgb), 0.14);
}

.hero {
  padding-top: 1.75rem;
}

.hero__layout {
  gap: clamp(1rem, 2vw, 1.75rem);
}

.hero__image-panel,
.hero__content,
.living-feature__grid,
.dining-feature__grid,
.bedroom-feature__grid,
.stores-showcase__content,
.review-card,
.instagram-card,
.product-surface,
.top-categories__image-wrap,
.top-homeware__image-wrap,
.furniture-deals__image-wrap {
  border-radius: 1.6rem;
}

.hero__image-panel {
  position: relative;
}

.hero__image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(var(--primary-rgb), 0.16));
  pointer-events: none;
}

.hero__image-panel img {
  transform: scale(1.01);
}

.hero__image-panel:hover img,
.living-feature__media:hover img,
.dining-feature__media:hover img,
.bedroom-feature__media:hover img,
.stores-showcase__image-wrap:hover img,
.instagram-card:hover img,
.top-categories__link:hover .top-categories__image-wrap img,
.top-homeware__link:hover .top-homeware__image-wrap img,
.furniture-deals__link:hover .furniture-deals__image-wrap img {
  transform: scale(1.06);
}

.hero__content {
  background:
    radial-gradient(circle at top right, rgba(var(--secondary-rgb), 0.24), transparent 28%),
    linear-gradient(145deg, rgba(var(--primary-rgb), 1) 0%, rgba(var(--primary-rgb), 0.92) 100%);
}

.hero__title,
.top-categories__heading,
.top-homeware__heading,
.living-feature__title,
.dining-feature__title,
.bedroom-feature__title,
.furniture-deals__heading,
.stores-showcase__title,
.reviews-section__score,
.instagram-feed__title,
.site-footer__title {
  text-wrap: balance;
}

.top-categories__grid,
.top-homeware__grid,
.furniture-deals__grid {
  align-items: stretch;
}

.product-surface {
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(var(--primary-rgb), 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-surface:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--secondary-rgb), 0.32);
  box-shadow: 0 24px 48px rgba(var(--primary-rgb), 0.12);
}

.top-categories__link,
.top-homeware__link,
.furniture-deals__link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.top-categories__image-wrap,
.top-homeware__image-wrap,
.furniture-deals__image-wrap {
  overflow: hidden;
}

.top-categories__title,
.top-homeware__title,
.furniture-deals__title {
  margin-bottom: 0;
}

.product-enhancements {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.product-enhancements__rating {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--secondary);
}

.product-enhancements__rating .is-empty {
  opacity: 0.38;
}

.product-enhancements__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-enhancements__price {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
}

.product-enhancements__button,
.product-enhancements__wishlist {
  border: 0;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.product-enhancements__button {
  width: 100%;
  min-height: 2.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #c4a05b);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(var(--secondary-rgb), 0.24);
}

.product-enhancements__button:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.product-enhancements__button.is-added {
  background: var(--primary);
}

.product-enhancements__wishlist {
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary);
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(var(--secondary-rgb), 0.2);
}

.product-enhancements__wishlist:hover,
.product-enhancements__wishlist.is-active {
  transform: translateY(-2px) scale(1.04);
  background: var(--secondary);
  color: var(--white);
}

.living-feature__grid,
.dining-feature__grid,
.bedroom-feature__grid,
.stores-showcase__content {
  border: 1px solid rgba(var(--primary-rgb), 0.06);
}

.living-feature__media,
.dining-feature__media,
.bedroom-feature__media,
.stores-showcase__image-wrap {
  overflow: hidden;
}

.living-feature__media img,
.dining-feature__media img,
.bedroom-feature__media img,
.stores-showcase__image-wrap img {
  transition: transform 0.8s ease;
}

.stores-showcase__features-grid {
  gap: 1rem;
}

.stores-showcase__feature {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(var(--primary-rgb), 0.06);
}

.reviews-section__header,
.instagram-feed__header {
  margin-bottom: 1.6rem;
}

.reviews-carousel__track,
.instagram-carousel__track {
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.review-card,
.instagram-card {
  scroll-snap-align: start;
}

.reviews-carousel__track,
.instagram-carousel__track {
  padding: 0.35rem 0;
}

.review-card {
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(var(--primary-rgb), 0.11);
}

.instagram-card__overlay {
  transition: opacity 0.35s ease;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(var(--secondary-rgb), 0.09) 100%);
}

.site-footer__subscribe-form input {
  min-width: 0;
}

.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.product-surface.reveal {
  transition:
    opacity 0.38s ease-out,
    transform 0.38s ease-out;
}

.product-surface.reveal--fade-up {
  transform: translate3d(0, 16px, 0);
}

.reveal--fade-up {
  transform: translate3d(0, 36px, 0);
}

.reveal--slide-left {
  transform: translate3d(-48px, 24px, 0);
}

.reveal--slide-right {
  transform: translate3d(48px, 24px, 0);
}

.reveal--hero {
  transform: scale(0.97) translate3d(0, 24px, 0);
}

.reveal--store {
  transform: scale(0.985) translate3d(0, 28px, 0);
}

.reveal--footer {
  transform: translate3d(0, 32px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

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

  .hero__nav {
    top: 13rem;
  }

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

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

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

  .stores-showcase__store-grid,
  .site-footer__top-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel__track {
    grid-auto-columns: calc((100% - 1.25rem) / 2);
  }

  .instagram-carousel__track {
    grid-auto-columns: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .topbar {
    display: none;
  }

  body {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom));
  }

  body.has-sticky-navbar {
    padding-top: var(--navbar-height, 4.5rem);
  }

  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .navbar,
  .navbar.is-sticky {
    overflow: visible;
  }

  .mobile-bottom-nav {
    position: fixed;
    width: 100%;
    max-width: 100vw;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 140;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0.35rem calc(0.5rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(var(--primary-rgb), 0.08);
    box-shadow: 0 -14px 32px rgba(var(--primary-rgb), 0.08);
    backdrop-filter: blur(16px);
    box-sizing: border-box;
    overflow: hidden;
  }

  .mobile-bottom-nav__item {
    display: grid;
    flex: 1 1 20%;
    justify-items: center;
    gap: 0.28rem;
    padding: 0.3rem 0.15rem;
    color: rgba(var(--primary-rgb), 0.66);
    transition: color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    min-width: 0;
  }

  .mobile-bottom-nav__item:hover,
  .mobile-bottom-nav__item.is-active {
    color: var(--primary);
  }

  .mobile-bottom-nav__item:active {
    transform: scale(0.96);
  }

  .mobile-bottom-nav__icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
  }

  .mobile-bottom-nav__icon svg {
    width: 1.42rem;
    height: 1.42rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav__label {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .mobile-bottom-nav__badge {
    position: absolute;
    top: 0.08rem;
    right: 0.05rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.18rem;
    border-radius: 999px;
    background: #e53b38;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
    box-shadow: 0 6px 14px rgba(229, 59, 56, 0.24);
  }

  .topbar__inner {
    gap: 0.75rem;
    overflow-x: auto;
  }

  .topbar__group {
    gap: 0.875rem;
  }

  .navbar__inner {
    position: relative;
    min-height: 4.5rem;
    gap: 0.75rem;
    padding-inline: 0.5rem;
    justify-content: space-between;
  }

  .navbar__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    flex: 0 0 auto;
    min-width: 5.75rem;
    position: relative;
    z-index: 2;
  }

  .mobile-toggle {
    flex: 0 0 2.75rem;
    min-width: 2.75rem;
    position: relative;
    z-index: 2;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: calc(100% - 9.5rem);
  }

  .brand img {
    width: clamp(8.5rem, 34vw, 11rem);
    max-height: 2.5rem;
    object-fit: contain;
  }

  .navbar.is-sticky .navbar__inner {
    height: auto;
    min-height: 4.5rem;
    padding-inline: 0.5rem;
    overflow: visible;
  }

  .navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero__layout {
    gap: 1rem;
  }

  .hero__image-panel,
  .hero__content {
    min-height: 19rem;
  }

  .hero__content {
    padding: 2rem 1.4rem;
  }

  .hero__nav {
    width: 2.6rem;
    height: 2.6rem;
    top: 10.5rem;
  }

  .top-categories__grid,
  .top-homeware__grid,
  .furniture-deals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .product-surface {
    padding: 0.7rem;
  }

  .product-enhancements {
    gap: 0.7rem;
    margin-top: 0.8rem;
  }

  .product-enhancements__price {
    font-size: 0.94rem;
  }

  .product-enhancements__button {
    min-height: 2.6rem;
    font-size: 0.9rem;
  }

  .living-feature__grid,
  .dining-feature__grid,
  .bedroom-feature__grid {
    grid-template-columns: 1fr;
  }

  .living-feature__media,
  .dining-feature__media,
  .bedroom-feature__media {
    order: -1;
  }

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

  .stores-showcase__media {
    grid-template-columns: 1fr;
  }

  .reviews-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-section__cta {
    width: 100%;
  }

  .reviews-carousel__nav,
  .instagram-carousel__nav {
    display: none;
  }

  .reviews-carousel__track {
    grid-auto-columns: 85%;
  }

  .instagram-carousel__track {
    grid-auto-columns: 72%;
  }

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

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

@media (max-width: 640px) {
  .topbar__item {
    font-size: 0.72rem;
  }

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

  .category-card__image-wrap {
    width: min(100%, 72px);
  }

  .hero__title {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero__discount {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .top-categories__grid,
  .top-homeware__grid,
  .furniture-deals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .top-categories__title,
  .top-homeware__title,
  .furniture-deals__title {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .product-enhancements__rating {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .product-enhancements__row {
    align-items: center;
  }

  .product-enhancements__price {
    font-size: 0.88rem;
  }

  .product-enhancements__wishlist {
    width: 2.35rem;
    height: 2.35rem;
  }

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

  .site-footer__links-grid,
  .site-footer__extra-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel__track {
    grid-auto-columns: 100%;
    gap: 1rem;
  }

  .instagram-carousel__track {
    grid-auto-columns: calc((100% - 1rem) / 2);
    gap: 1rem;
  }

  .site-footer__subscribe-form {
    flex-direction: column;
  }

  .site-footer__app-buttons {
    flex-direction: column;
  }

  .site-footer__store-button {
    width: 100%;
    align-items: center;
  }

  .site-footer__bottom-main,
  .site-footer__legal,
  .site-footer__contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
