: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);
}

@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: none;
  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__status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(153, 53, 53, 0.1);
  color: #8a3434;
  font-size: 0.92rem;
  font-weight: 600;
}

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

.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) scale(1.03);
  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);
}

@media (max-width: 720px) {
  .cart-drawer__panel {
    width: min(100vw, 100%);
    padding: 1rem;
  }
}

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



.category-list {
  display: grid;
  grid-template-columns: repeat(8, 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;
}

a.category-card--living {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

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

a.category-card--living .category-card__image-wrap {
  border-radius: 50%;
}

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

}

a.category-card--living img {
  display: block;
}

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

.category-card--living[aria-expanded="true"] .category-card__image-wrap,
.category-card--bedroom[aria-expanded="true"] .category-card__image-wrap,
.category-card--dining[aria-expanded="true"] .category-card__image-wrap,
.category-card--decor[aria-expanded="true"] .category-card__image-wrap,
.category-card--furnishings[aria-expanded="true"] .category-card__image-wrap {
  border-color: #CAA24C;
  box-shadow: 0 0 0 4px rgba(202, 162, 76, 0.14);
}

.living-mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 9999;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  padding: 0 24px;
  background: transparent;
}

.living-mega-menu .container {
  max-width: 1300px;
}

.living-mega-menu.is-open {
  pointer-events: auto;
}

.living-mega-menu__panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  gap: clamp(20px, 2vw, 28px);
  width: min(100%, 1260px);
  margin: 0 auto;
  padding: clamp(30px, 3vw, 40px);
  border: 1px solid rgba(27, 58, 79, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(16, 38, 54, 0.12);
  overflow: hidden;
}

.bedroom-mega-menu__panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1120px);
}

.dining-mega-menu__panel {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 1180px);
}

.decor-mega-menu__panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1120px);
}

.furnishings-mega-menu__panel {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 1220px);
}

.living-mega-menu__column {
  min-width: 0;
  padding-right: clamp(16px, 1.5vw, 22px);
  border-right: 1px solid rgba(27, 58, 79, 0.09);
}

.living-mega-menu__column:last-child {
  padding-right: 0;
  border-right: 0;
}

.living-mega-menu__group+.living-mega-menu__group {
  margin-top: 24px;
}

.living-mega-menu__heading {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1B3A4F;
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.living-mega-menu__heading:hover,
.living-mega-menu__heading:focus-visible {
  color: #CAA24C;
  transform: translate3d(3px, -1px, 0);
  outline: 0;
}

.living-mega-menu__list {
  display: grid;
  gap: 4px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.living-mega-menu__list a {
  display: block;
  width: fit-content;
  padding: 1px 0;
  color: #555;
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.living-mega-menu__list a:hover,
.living-mega-menu__list a:focus-visible {
  color: #CAA24C;
  transform: translate3d(3px, 0, 0);
  background: rgba(202, 162, 76, 0.08);
  outline: 0;
}

.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-section__score,
.reviews-section__cta,
.reviews-carousel {
  display: none;
}

.reviews-widget-shell {
  width: 100%;
  min-height: 320px;
}

.reviews-widget-shell>div {
  width: 100%;
}

.cart-page {
  padding: 36px 0 96px;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
}

.cart-page__hero {
  margin-bottom: 28px;
}

.cart-page__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8d6d53;
}

.cart-page__title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.015em;
  color: #1a1a1a;

}

.cart-page__description {
  margin: 12px 0 0;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #6d5b4d;
}

.cart-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.cart-page__items-panel,
.cart-page__summary {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(42, 24, 14, 0.08);
}

.cart-page__items-panel {
  padding: 14px;
}

.cart-page__list {
  display: grid;
  gap: 14px;
}

.cart-page__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-page__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47, 36, 29, 0.08);
}

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

.cart-page__item-main {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.cart-page__item-title {
  margin: 0;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.cart-page__item-price {
  margin: 8px 0 0;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.cart-page__item-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-page__qty,
.cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: #f6f0e8;
}

.cart-page__qty button,
.cart-drawer__qty-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #2d241d;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(42, 24, 14, 0.08);
}

.cart-page__qty span,
.cart-drawer__qty-value {
  min-width: 18px;
  text-align: center;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  color: #2d241d;
}

.cart-page__remove {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(168, 95, 82, 0.12);
  color: #a14939;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.cart-page__item-total {
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  color: #1a1a1a;
}

.cart-page__item-price::first-letter,
.cart-page__item-total::first-letter {
  font-size: 0.82em;
}

.cart-page__summary {
  position: sticky;
  top: calc(var(--navbar-height, 76px) + 24px);
  padding: 26px;
}

.cart-page__summary-label {
  margin: 0;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d6d53;
}

.cart-page__summary-total {
  margin: 12px 0 10px;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 2.6vw, 2.125rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: #1a1a1a;
}

.cart-page__summary-total::first-letter {
  font-size: 0.78em;
}

.cart-page__summary-note {
  margin: 0;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  line-height: 1.7;
  color: #6d5b4d;
}

.cart-page__summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.cart-page__checkout,
.cart-page__continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cart-page__checkout {
  border: 0;
  background: #1D3950;
  color: #fff;
  box-shadow: 0 18px 30px rgba(47, 36, 29, 0.18);
}

.cart-page__continue {
  background: rgba(143, 108, 84, 0.12);
  color: #1D3950;
}

.cart-page__checkout:hover,
.cart-page__continue:hover {
  transform: translateY(-1px) scale(1.03);
}

.cart-page__empty {
  padding: 46px 24px;
  text-align: center;
}

.cart-page__empty h2 {
  margin: 0;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #2d241d;
}

.cart-page__empty p {
  margin: 14px auto 0;
  max-width: 26rem;
  line-height: 1.75;
  color: #6d5b4d;
}

.cart-page__continue--empty {
  margin-top: 20px;
}

.checkout-page {
  --checkout-primary: #1B3A4F;
  --checkout-accent: #CAA24C;
  --checkout-white: #FFFFFF;
  --checkout-black: #000000;
  padding: 40px 0 96px;
  background: var(--checkout-white);
  color: var(--checkout-black);
  font-family: "Inter", "DM Sans", sans-serif;
}

.checkout-page__container {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
  gap: 32px;
  align-items: start;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: var(--checkout-white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.checkout-panel {
  padding: 32px;
}

.checkout-page__eyebrow {
  margin: 0 0 8px;
  color: var(--checkout-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.checkout-page__title {
  margin: 0 0 26px;
  color: var(--checkout-black);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.checkout-form__section {
  display: grid;
  gap: 16px;
}

.checkout-alert {
  margin-bottom: 18px;
  border-radius: 10px;
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 14px;
}

.checkout-alert--success {
  border: 1px solid rgba(202, 162, 76, 0.35);
  background: rgba(202, 162, 76, 0.12);
  color: var(--checkout-primary);
}

.checkout-alert--error {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.04);
  color: var(--checkout-black);
}

.checkout-form__heading,
.checkout-summary__title {
  margin: 0;
  color: var(--checkout-black);
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

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

.checkout-field span {
  color: var(--checkout-black);
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-field input,
.checkout-field select,
.checkout-discount input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: var(--checkout-white);
  color: var(--checkout-black);
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 0.94rem;
  outline: 0;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-discount input:focus {
  border-color: var(--checkout-accent);
  box-shadow: 0 0 0 3px rgba(202, 162, 76, 0.18);
}

.checkout-field--error input,
.checkout-field--error select {
  border-color: var(--checkout-accent);
}

.checkout-error {
  color: var(--checkout-primary);
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

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

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

.checkout-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--checkout-black);
  font-size: 0.88rem;
  font-weight: 600;
}

.checkout-terms input {
  width: 16px;
  height: 16px;
  accent-color: var(--checkout-primary);
}

.checkout-summary {
  position: sticky;
  top: calc(var(--navbar-height, 76px) + 24px);
  padding: 28px;
}

.checkout-summary__title {
  margin-bottom: 20px;
}

.checkout-summary__items {
  display: grid;
  gap: 16px;
}

.checkout-summary__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.checkout-summary__image {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--checkout-white);
}

.checkout-summary__item-copy h3 {
  margin: 0;
  color: var(--checkout-black);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.checkout-summary__item-copy p {
  margin: 5px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
}

.checkout-summary__item strong {
  color: var(--checkout-black);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.checkout-summary__empty {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.92rem;
}

.checkout-discount {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 24px 0;
}

.checkout-discount button,
.checkout-summary__button,
.checkout-mobile-cta button {
  border: 0;
  border-radius: 10px;
  background: var(--checkout-primary);
  color: var(--checkout-white);
  font-family: "Inter", "DM Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-discount button {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.checkout-discount button:hover,
.checkout-summary__button:hover,
.checkout-mobile-cta button:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.checkout-summary__button.is-loading,
.checkout-mobile-cta button.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.checkout-summary__button.is-loading::after,
.checkout-mobile-cta button.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.1rem;
  height: 1.1rem;
  margin: -0.55rem 0 0 -0.55rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: checkout-button-spin 0.75s linear infinite;
}

@keyframes checkout-button-spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-totals {
  display: grid;
  gap: 12px;
  margin: 0;
}

.checkout-totals__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--checkout-black);
}

.checkout-totals__row dt,
.checkout-totals__row dd {
  margin: 0;
  font-size: 0.92rem;
}

.checkout-totals__row dt {
  font-weight: 600;
}

.checkout-totals__row dd {
  font-weight: 800;
}

.checkout-totals__row--total {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--checkout-primary);
}

.checkout-totals__row--total dt,
.checkout-totals__row--total dd {
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-totals__row--total dd {
  color: var(--checkout-accent);
}

.checkout-summary__button {
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  font-size: 0.95rem;
}

.checkout-summary__secure {
  margin: 16px 0 0;
  color: var(--checkout-black);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.checkout-mobile-cta {
  display: none;
}

@media (max-width: 960px) {
  .cart-page__layout {
    grid-template-columns: 1fr;
  }

  .cart-page__summary {
    position: static;
  }

  .checkout-page__container {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .cart-page {
    padding: 22px 0 88px;
  }

  .cart-page__items-panel,
  .cart-page__summary {
    border-radius: 22px;
  }

  .cart-page__item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-page__item-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-page__item-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cart-page__item-total {
    grid-column: 1 / -1;
    padding-left: 102px;
  }

  .cart-page__checkout,
  .cart-page__continue {
    width: 100%;
  }

  .checkout-page {
    padding: 24px 0 112px;
  }

  .checkout-panel,
  .checkout-summary {
    padding: 22px;
  }

  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .checkout-form__grid--two {
    grid-template-columns: 1fr;
  }

  .checkout-summary__item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .checkout-summary__image {
    width: 64px;
    height: 64px;
  }

  .checkout-summary__item strong {
    grid-column: 2;
  }

  .checkout-summary__button {
    display: none;
  }

  .checkout-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 160;
    display: block;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--checkout-white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.12);
  }

  .checkout-mobile-cta button {
    width: 100%;
    min-height: 52px;
    font-size: 0.98rem;
  }
}

.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: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 20px;
  }

  .top-categories__title {
    margin-top: 12px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .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;
    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(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

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

  .living-mega-menu {
    position: fixed;
    top: var(--navbar-height, 4.5rem);
    right: 0;
    bottom: calc(5.25rem + env(safe-area-inset-bottom));
    left: 0;
    overflow-y: auto;
    padding: 0.8rem 0;
    background: #fff;
    border-top: 1px solid rgba(27, 58, 79, 0.08);
    backdrop-filter: blur(14px);
  }

  .living-mega-menu__panel {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    gap: 0;
    padding: 1rem;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .living-mega-menu__column+.living-mega-menu__column,
  .living-mega-menu__group+.living-mega-menu__group {
    margin-top: 0;
    border-top: 1px solid rgba(27, 58, 79, 0.1);
  }

  .living-mega-menu__column {
    padding-right: 0;
    border-right: 0;
  }

  .living-mega-menu__heading {
    padding: 0.95rem 0;
    font-size: 1rem;
  }

  .living-mega-menu__heading::after {
    content: "";
  }

  .living-mega-menu__group--has-list>.living-mega-menu__heading::after {
    content: "+";
    color: #CAA24C;
    font-family: "Inter", "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 800;
  }

  .living-mega-menu__group.is-open>.living-mega-menu__heading::after {
    content: "-";
  }

  .living-mega-menu__list {
    display: none;
    margin: 0 0 0.9rem;
    padding-left: 0.2rem;
  }

  .living-mega-menu__group.is-open>.living-mega-menu__list {
    display: grid;
  }

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

.wishlist-count {
  position: absolute;
  top: 5px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sign-in {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  touch-action: manipulation;
}

.mobile-bottom-nav__item,
.checkout-mobile-cta button,
.cart-page__checkout,
.cart-drawer__checkout,
.cart-drawer__view-cart {
  touch-action: manipulation;
}

.site-toast-stack {
  position: fixed;
  right: 16px;
  bottom: calc(84px + env(safe-area-inset-bottom));
  z-index: 12000;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.site-toast {
  min-width: min(320px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(17, 33, 43, 0.94);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transform: translate3d(0, 12px, 0);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

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

.site-toast--success {
  background: rgba(27, 58, 79, 0.96);
}

.site-toast--error {
  background: rgba(153, 53, 53, 0.96);
}

.commerce-page,
.auth-page,
.account-page,
.contact-page {
  padding: 28px 0 96px;
}

.commerce-hero,
.auth-page__section,
.account-page__section,
.contact-page__section {
  padding: 14px 0 26px;
}

.commerce-hero__inner,
.auth-page__layout,
.account-page__layout {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-page__layout {
  display: grid;
  gap: 28px;

  align-items: start;
}

.commerce-hero__inner,
.auth-panel,
.account-card,
.account-page__profile,
.contact-panel {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.commerce-hero__eyebrow,
.auth-page__eyebrow,
.account-page__eyebrow,
.contact-page__eyebrow,
.commerce-card__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CAA24C;
}

.commerce-hero h1,
.auth-page h1,
.account-page h1,
.contact-page h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #1B3A4F;
}

.commerce-hero p:last-child,
.auth-page__intro p:last-child,
.contact-page__intro p:last-child,
.account-page__profile p {
  margin: 0;
  color: #6d5b4d;
  line-height: 1.75;
}

.commerce-section {
  padding-bottom: 28px;
}

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

.commerce-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.commerce-card__image-wrap {
  display: block;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
}

.commerce-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.commerce-card:hover .commerce-card__image-wrap img {
  transform: scale(1.05);
}

.commerce-card__body {
  padding: 18px;
}

.commerce-card__body h2,
.commerce-card__body h2 a {
  margin: 0;
  color: #1B3A4F;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  line-height: 1.18;
}

.commerce-card__copy {
  margin: 10px 0 14px;
  color: #6d5b4d;
  line-height: 1.7;
}

.product-enhancements--static {
  margin-top: 10px;
}

.commerce-empty,
.account-empty {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.commerce-empty h2,
.account-card h2 {
  margin: 0;
  color: #1B3A4F;
  font-family: "Playfair Display", serif;
}

.commerce-button,
.account-page__button,
.auth-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #1B3A4F;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
}

.auth-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.auth-toggle__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(27, 58, 79, 0.12);
  color: #1B3A4F;
  text-decoration: none;
  font-weight: 700;
}

.auth-toggle__button.is-active {
  background: rgba(27, 58, 79, 0.08);
  border-color: rgba(27, 58, 79, 0.22);
}

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

.auth-form__field {
  display: grid;
  gap: 8px;
}

.auth-form__field span {
  font-weight: 700;
  color: #1B3A4F;
}

.auth-form__field input,
.auth-form__field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(27, 58, 79, 0.14);
  border-radius: 14px;
  background: #fff;
  color: #1a1a1a;
}

.auth-form__field textarea {
  min-height: 130px;
  padding: 16px;
  resize: vertical;
}

.auth-alert {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.auth-alert--success {
  background: rgba(27, 58, 79, 0.08);
  color: #1B3A4F;
}

.auth-alert--error {
  background: rgba(186, 74, 74, 0.1);
  color: #8a3434;
}

.account-page__content {
  display: grid;
  gap: 22px;
}

.account-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account-list,
.account-addresses {
  display: grid;
  gap: 14px;
}

.account-list__item,
.account-address {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(27, 58, 79, 0.04);
}

.account-list__item p,
.account-address p,
.account-address span {
  margin: 6px 0 0;
  color: #6d5b4d;
}


@media (max-width: 1100px) {
  .commerce-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .commerce-page,
  .auth-page,
  .account-page,
  .contact-page {
    padding-bottom: 112px;
  }

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

  .commerce-hero__inner,
  .auth-panel,
  .account-card,
  .account-page__profile,
  .contact-panel {
    padding: 22px;
  }

  .site-toast-stack {
    right: 12px;
    left: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .account-list__item,
  .account-address {
    flex-direction: column;
  }
}

.search {
  z-index: 25;
}

.search-results {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(27, 58, 79, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 58px rgba(16, 38, 54, 0.14);
  backdrop-filter: blur(18px);
}

.search-results[hidden] {
  display: none;
}

.search-results__item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  color: #1B3A4F;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.search-results__item:hover {
  background: rgba(202, 162, 76, 0.1);
  color: #1B3A4F;
  transform: translateY(-1px);
}

.search-results__item img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px;
}

.search-results__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.search-results__copy strong {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
}

.search-results__copy small,
.search-results__empty {
  color: #6d5b4d;
}

.search-results__state {
  display: grid;
  gap: 10px;
}

.search-results__skeleton {
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(27, 58, 79, 0.06) 25%, rgba(27, 58, 79, 0.12) 50%, rgba(27, 58, 79, 0.06) 75%);
  background-size: 200% 100%;
  animation: search-skeleton 1.15s linear infinite;
}

@keyframes search-skeleton {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.living-mega-menu__column,
.living-mega-menu__list,
.living-mega-menu__list li {
  min-width: 0;
}

.living-mega-menu__heading,
.living-mega-menu__list a,
.product-enhancements__button,
.product-enhancements__wishlist,
.auth-form__submit,
.auth-toggle__button,
.commerce-button,
.contact-socials__link,
.cart-drawer__checkout,
.cart-drawer__view-cart,
.sign-in,
.icon-button,
.category-card,
.commerce-card,
.auth-panel,
.contact-panel {
  transition: all 0.3s ease;
}

.auth-panel__messages,
.contact-panel__messages {
  min-height: 0;
  margin-bottom: 14px;
}

.auth-form-shell {
  position: relative;
  min-height: 240px;
}

.auth-form-panel {
  width: 100%;
}

.auth-form-panel.is-hidden {
  display: none;
}

.auth-form__submit.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.auth-form__submit.is-loading::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-top-color: #FFFFFF;
  animation: checkout-button-spin 0.75s linear infinite;
}

.contact-page__intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contact-page__title {
  text-align: center;
}

.contact-wrapper {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  margin-top: 48px;
}

.contact-map-section {

  padding: 24px 0 0;
}



.contact-wrapper>* {
  min-width: 0;
  height: 100%;
}

.contact-panel--social {
  background: linear-gradient(160deg, rgba(27, 58, 79, 0.98), rgba(42, 82, 109, 0.92));
  color: #FFFFFF;
}

.contact-panel--social,
.contact-panel--form,
.contact-map-container .contact-map {
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(16, 38, 54, 0.12);
}

.contact-panel--social h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-panel--social p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.contact-panel__label {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #CAA24C;
}

.contact-socials {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-socials__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-socials__link:hover {
  color: #FFFFFF;
  background: rgba(202, 162, 76, 0.18);
  box-shadow: 0 0 0 1px rgba(202, 162, 76, 0.22), 0 18px 34px rgba(202, 162, 76, 0.18);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-panel--form {
  background: rgba(255, 255, 255, 0.94);
}

.contact-panel--form .contact-form {
  display: grid;
  gap: 18px;
}

.contact-map {
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

@media (max-width: 720px) {

  .contact-wrapper,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-panel--social,
  .contact-panel--form,
  .contact-map-container .contact-map {
    padding: 24px;
  }

  .contact-wrapper {
    gap: 24px;
    margin-top: 36px;
  }

  .contact-map-section {
    padding-top: 20px;
  }

  .contact-map iframe {
    height: 400px;
  }
}

@media (min-width: 641px) {
  .living-mega-menu__panel {
    grid-auto-flow: column;
  }
}

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

/* Page styles moved from category.php */
.lr-fallback-page {
  padding: 5rem 0 7rem;
  background: #f6f3ee;
}

.lr-fallback-page__inner {
  max-width: 640px;
  padding: 3rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(27, 58, 79, 0.12);
}

.lr-fallback-page__eyebrow {
  margin: 0 0 1rem;
  color: #1b3a4f;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.lr-fallback-page h1 {
  margin: 0 0 1rem;
  font: 700 clamp(2rem, 4vw, 3rem) / 1.05 "Playfair Display", serif;
  color: #102636;
}

.lr-fallback-page p {
  margin: 0 0 1.5rem;
  color: rgba(16, 38, 54, 0.72);
}

.lr-fallback-page__cta {
  display: inline-flex;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: #1b3a4f;
  color: #fff;
  text-decoration: none;
}

/* Page styles moved from category.php */
.dynamic-collection {
  background: linear-gradient(180deg, #f7f4ef 0%, #ffffff 42%, #f3f0ea 100%);
  color: #102636;
}

.dynamic-collection__hero {
  padding: 3rem 0 1.5rem;
}

.dynamic-collection__hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dynamic-collection__eyebrow {
  margin: 0 0 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1b3a4f;
  font-size: 0.78rem;
}

.dynamic-collection h1 {
  margin: 0 0 1rem;
  font: 700 clamp(2.4rem, 5vw, 4rem) / 1.02 "Playfair Display", serif;
}

.dynamic-collection__copy p:last-child {
  margin: 0;
  max-width: 58ch;
  color: rgba(16, 38, 54, 0.74);
}

.dynamic-collection__media {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(27, 58, 79, 0.14);
}

.dynamic-collection__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dynamic-collection__products {
  padding: 1rem 0 5rem;
}

.dynamic-collection__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dynamic-collection__card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(27, 58, 79, 0.08);
  overflow: hidden;
}

.dynamic-collection__card a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.dynamic-collection__image-wrap {
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  background: #ebe5dc;
}

.dynamic-collection__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.dynamic-collection__card:hover img {
  transform: scale(1.06);
}

.dynamic-collection__card-copy {
  padding: 1.15rem 1.15rem 1.3rem;
}

.dynamic-collection__card-copy p {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(16, 38, 54, 0.52);
}

.dynamic-collection__card-copy h2 {
  margin: 0 0 0.75rem;
  font: 600 1.15rem / 1.25 "Playfair Display", serif;
}

.dynamic-collection__card-copy strong {
  color: #1b3a4f;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .dynamic-collection__hero {
    padding-top: 2rem;
  }

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

/* Page styles moved from product.php */
.product-detail-page {
  background: linear-gradient(180deg, #f5f1eb 0%, #ffffff 45%, #f5f1eb 100%);
  color: #102636;
}

.product-detail-page__hero {
  padding: 3rem 0 4rem;
}

.product-detail-page__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-detail-page__media {
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  background: #ebe5dc;
  box-shadow: 0 28px 80px rgba(27, 58, 79, 0.14);
}

.product-detail-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-page__eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1b3a4f;
  font-size: 0.78rem;
}

.product-detail-page__copy h1 {
  margin: 0 0 0.9rem;
  font: 700 clamp(2.4rem, 4.8vw, 3.8rem) / 1.03 "Playfair Display", serif;
}

.product-detail-page__copy strong {
  display: block;
  margin-bottom: 1rem;
  color: #caa24c;
  font-size: 1.35rem;
}

.product-detail-page__copy p {
  margin: 0 0 1.3rem;
  color: rgba(16, 38, 54, 0.74);
  max-width: 58ch;
}

.product-detail-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.35rem;
}

.product-detail-page__cart,
.product-detail-page__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.product-detail-page__cart {
  border: 0;
  background: #1b3a4f;
  color: #fff;
}

.product-detail-page__secondary {
  border: 1px solid rgba(27, 58, 79, 0.16);
  color: #1b3a4f;
  background: rgba(255, 255, 255, 0.72);
}

.product-detail-page__meta {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(16, 38, 54, 0.72);
}

.product-detail-page__related {
  padding: 0 0 5rem;
}

.product-detail-page__section-head p {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #1b3a4f;
}

.product-detail-page__section-head h2 {
  margin: 0 0 1.35rem;
  font: 700 clamp(1.9rem, 4vw, 3rem) / 1.05 "Playfair Display", serif;
}

.product-detail-page__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-detail-page__card {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(27, 58, 79, 0.08);
}

.product-detail-page__card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-detail-page__card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-detail-page__card h3 {
  margin: 0;
  padding: 1rem 1rem 0.45rem;
  font: 600 1.08rem / 1.25 "Playfair Display", serif;
}

.product-detail-page__card strong {
  display: block;
  padding: 0 1rem 1rem;
  color: #1b3a4f;
  font-size: 0.98rem;
}

@media (max-width: 720px) {
  .product-detail-page__hero {
    padding-top: 2rem;
  }

  .product-detail-page__media {
    min-height: 320px;
  }

  .product-detail-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Page styles moved from living-room.php */
.living-room-page {
  --lr-primary: #1b3a4f;
  --lr-accent: #caa24c;
  --lr-surface: rgba(255, 255, 255, 0.88);
  --lr-surface-solid: #ffffff;
  --lr-bg: #f6f2eb;
  --lr-text: #102636;
  --lr-muted: rgba(16, 38, 54, 0.68);
  --lr-shadow: 0 30px 80px rgba(27, 58, 79, 0.12);
  background:
    radial-gradient(circle at top left, rgba(202, 162, 76, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(27, 58, 79, 0.16), transparent 30%),
    linear-gradient(180deg, #f5f0e8 0%, #ffffff 38%, #f5f0e8 100%);
  color: var(--lr-text);
}

.living-room-page *,
.living-room-page *::before,
.living-room-page *::after {
  box-sizing: border-box;
}

.lr-section {
  position: relative;
  padding: 1.5rem 0 5rem;
}

.lr-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
}

.lr-section__head>p {
  max-width: 44ch;
  margin: 0;
  color: var(--lr-muted);
}

.lr-section__eyebrow {
  margin: 0 0 0.7rem;
  color: var(--lr-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.lr-section__head h2,
.lr-hero__copy h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #102636;
}

.lr-section__head h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.lr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.lr-button:hover {
  transform: translateY(-2px);
}

.lr-button--primary {
  background: var(--lr-primary);
  color: #fff;
  box-shadow: 0 18px 40px rgba(27, 58, 79, 0.22);
}

.lr-button--ghost {
  background: rgba(255, 255, 255, 0.56);
  color: var(--lr-primary);
  border-color: rgba(27, 58, 79, 0.12);
  backdrop-filter: blur(14px);
}

.lr-button--card {
  flex: 1 1 0;
  min-height: 44px;
  padding-inline: 1rem;
}

.lr-hero {
  padding: 2.4rem 0 3.5rem;
}

.lr-hero__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    linear-gradient(120deg, rgba(202, 162, 76, 0.12), rgba(27, 58, 79, 0.1));
  box-shadow: var(--lr-shadow);
  overflow: hidden;
  isolation: isolate;
}

.lr-hero__panel::before,
.lr-hero__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.lr-hero__panel::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(202, 162, 76, 0.18), transparent 65%);
  top: -160px;
  right: -120px;
}

.lr-hero__panel::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27, 58, 79, 0.16), transparent 68%);
  bottom: -130px;
  left: -90px;
}

.lr-hero__copy {
  position: relative;
  z-index: 1;
}

.lr-hero__copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 8ch;
}

.lr-hero__text {
  margin: 1rem 0 1.35rem;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--lr-muted);
  max-width: 34ch;
}

.lr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.lr-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.8rem 0 0;
}

.lr-hero__stats div {
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 58, 79, 0.08);
  backdrop-filter: blur(10px);
}

.lr-hero__stats dt {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 38, 54, 0.58);
}

.lr-hero__stats dd {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lr-primary);
}

.lr-hero__media {
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.lr-hero__art {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #d5d7d8, #b8b3aa);
}

.lr-hero__art img,
.lr-card__media img,
.lr-product-card__image-wrap img,
.lr-addon-card__media img,
.lr-promo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  will-change: transform, filter;
}

.lr-hero__badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
}

.lr-hero__badge span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 38, 54, 0.58);
}

.lr-hero__badge strong {
  font-size: 1rem;
  color: var(--lr-primary);
}

.lr-grid {
  display: grid;
  gap: 1.25rem;
}

.lr-grid--categories {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

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

.lr-grid--helios {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.lr-card,
.lr-product-card,
.lr-addon-card,
.lr-deal-card,
.lr-promo__banner,
.lr-empty {
  border-radius: 24px;
  overflow: hidden;
  background: var(--lr-surface);
  box-shadow: 0 20px 60px rgba(27, 58, 79, 0.09);
  border: 1px solid rgba(27, 58, 79, 0.06);
  backdrop-filter: blur(14px);
}

.lr-card a,
.lr-category-card a,
.lr-helios-card a,
.lr-addon-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.lr-helios-showcase {
  padding-top: 0;
}

.lr-helios-showcase__banner {
  overflow: hidden;
  border-radius: 24px;
  background: #e6ded1;
  box-shadow: 0 22px 64px rgba(27, 58, 79, 0.12);
  border: 1px solid rgba(27, 58, 79, 0.08);
}

.lr-helios-showcase__banner img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.lr-helios-card {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(27, 58, 79, 0.08);
  box-shadow: 0 16px 44px rgba(27, 58, 79, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lr-helios-card:hover {
  transform: translateY(-6px);
  border-color: rgba(181, 144, 71, 0.32);
  box-shadow: 0 26px 70px rgba(27, 58, 79, 0.16);
}

.lr-helios-card__media {
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  background: #e6ded1;
}

.lr-helios-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.lr-helios-card__body {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 1rem;
}

.lr-helios-card__body h3 {
  margin: 0;
  color: #102636;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.lr-category-card {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(27, 58, 79, 0.08);
  box-shadow: 0 16px 44px rgba(27, 58, 79, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lr-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(181, 144, 71, 0.32);
  box-shadow: 0 26px 70px rgba(27, 58, 79, 0.16);
}

.lr-category-card__media {
  position: relative;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #e6ded1;
}

.lr-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.lr-category-card__body {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.lr-category-card__body h3 {
  margin: 0;
  color: #102636;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.lr-category-card__body span,
.lr-addon-card__copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 58, 79, 0.12);
  color: #1B3A4F;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.lr-card__media,
.lr-addon-card__media {
  position: relative;
  aspect-ratio: 1 / 0.98;
  overflow: hidden;
  background: #e6ded1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lr-addon-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lr-addon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(181, 144, 71, 0.32);
  box-shadow: 0 26px 70px rgba(27, 58, 79, 0.16);
}

.lr-addon-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.lr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(9, 18, 24, 0.32));
  opacity: 0.35;
  transition: opacity 0.35s ease;
}

.lr-card:hover img,
.lr-product-card:hover img {
  transform: scale(1.08);
  filter: blur(1.6px) brightness(0.94);
}

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

.lr-card:hover .lr-card__overlay {
  opacity: 0.88;
}

.lr-card__body,
.lr-addon-card__copy,
.lr-product-card__body {
  padding: 1.15rem;
}

.lr-addon-card__copy {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
}

.lr-card__kicker,
.lr-product-card__topline p {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 38, 54, 0.56);
}

.lr-card__body h3,
.lr-addon-card__copy h3,
.lr-product-card__body h3 {
  margin: 0;
  /* font-family: "Playfair Display", serif; */
  font-size: 1.32rem;
  line-height: 1.14;
  color: #102636;
}

.lr-addon-card__copy h3 {
  /* font-family: "Playfair Display", serif; */
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.lr-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--lr-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.lr-slider-section {
  padding-top: 0;
}

.lr-slider-controls {
  display: flex;
  gap: 0.7rem;
}

.lr-slider-controls__button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(27, 58, 79, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--lr-primary);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.lr-slider-controls__button:hover {
  transform: translateY(-2px);
  background: #fff;
}

.lr-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 30%);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lr-slider-track::-webkit-scrollbar {
  display: none;
}

.lr-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  scroll-snap-align: start;
}

.lr-product-card__image-wrap {
  display: block;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: #ece3d7;
}

.lr-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.9rem;
}

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

.lr-product-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.lr-product-card__body strong {
  color: var(--lr-primary);
  font-size: 1.08rem;
}

.lr-product-card__actions {
  display: flex;
  gap: 0.7rem;
  margin-top: auto;
}

.lr-product-card__badge {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(202, 162, 76, 0.15);
  color: #8a6a1f;
  font-size: 0.76rem;
  font-weight: 700;
}

.lr-wishlist-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(27, 58, 79, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--lr-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lr-wishlist-button.is-active {
  color: #c45b5b;
  border-color: rgba(196, 91, 91, 0.34);
  transform: scale(1.05);
}

.lr-promo {
  padding-top: 0;
}

.lr-promo__banner {
  position: relative;
  min-height: 420px;
}

.lr-promo__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0.25) 55%,
      rgba(0, 0, 0, 0.05) 75%,
      rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right,
      black 0%,
      black 40%,
      transparent 75%);
  -webkit-mask-image: linear-gradient(to right,
      black 0%,
      black 40%,
      transparent 75%);
  pointer-events: none;
}

.lr-promo__image {
  position: absolute;
  inset: 0;
}

.lr-promo__overlay {
  position: relative;
  z-index: 2;
  max-width: 580px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: transparent;
  color: #fff;
}

.lr-promo__overlay .lr-section__eyebrow {
  color: #ffffff;
}

.lr-promo__overlay h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.05;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.lr-promo__overlay p:last-of-type {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Deals cards ── */
.lr-addon-card__copy p,
.lr-empty p {
  margin: 0.7rem 0 0;
  color: var(--lr-muted);
}

.lr-deal-card {
  position: relative;
  min-height: 240px;
  padding: 1.8rem 1.6rem;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 238, 222, 0.92) 100%),
    radial-gradient(circle at top right, rgba(202, 162, 76, 0.22), transparent 55%);
  border: 1px solid rgba(202, 162, 76, 0.18);
  box-shadow:
    0 8px 32px rgba(27, 58, 79, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    opacity 0.4s ease;
}

/* radial glow that animates in on active */
.lr-deal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(202, 162, 76, 0.25) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.deal-card--active::after {
  opacity: 1;
  animation: dealGlowPulse 2.2s ease-in-out infinite;
}

@keyframes dealGlowPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

.lr-deal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 144, 71, 0.32);
  box-shadow:
    0 16px 44px rgba(27, 58, 79, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.lr-deal-card p {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg,
      #b5903f 0%,
      #e6c060 40%,
      #caa24c 60%,
      #8a6a1f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(202, 162, 76, 0.38));
}

.lr-deal-card h3 {
  margin: 1rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  line-height: 1.18;
  color: #102636;
}

.lr-deal-card span {
  display: block;
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--lr-muted);
}

.lr-empty {
  padding: 2rem;
}

.lr-empty h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.lr-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
}

.lr-shell-loading .lr-loading {
  position: relative;
  overflow: hidden;
}

.lr-shell-loading .lr-loading>* {
  opacity: 0;
}

.lr-shell-loading .lr-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.86) 45%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(180deg, rgba(221, 225, 228, 0.8), rgba(242, 244, 247, 0.95));
  animation: lrShimmer 1.15s linear infinite;
}

@keyframes lrShimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@media (max-width: 1200px) {
  .lr-grid--categories {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .lr-slider-track {
    grid-auto-columns: minmax(260px, 42%);
  }
}

@media (max-width: 920px) {

  .lr-hero__panel,
  .lr-section__head {
    grid-template-columns: 1fr;
  }

  .lr-section__head {
    align-items: start;
  }

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

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

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

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

  .lr-slider-track {
    grid-auto-columns: minmax(260px, 72%);
  }
}

@media (max-width: 640px) {
  .lr-section {
    padding-bottom: 3.8rem;
  }

  .lr-hero {
    padding-top: 1.5rem;
  }

  .lr-hero__panel {
    padding: 1rem;
    border-radius: 24px;
  }

  .lr-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .lr-hero__media {
    min-height: 340px;
  }

  .lr-hero__stats {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .lr-helios-showcase__banner {
    border-radius: 18px;
  }

  .lr-helios-card {
    border-radius: 18px;
  }

  .lr-helios-card__body {
    min-height: 70px;
    padding: 0.9rem;
  }

  .lr-category-card__body {
    min-height: 88px;
    padding-top: 0.85rem;
  }

  .lr-category-card__body h3 {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .lr-category-card,
  .lr-helios-card,
  .lr-addon-card {
    min-width: 0;
    height: 100%;
  }

  .lr-category-card a,
  .lr-helios-card a,
  .lr-addon-card a {
    display: flex;
    flex-direction: column;
  }

  .lr-category-card__media,
  .lr-helios-card__media,
  .lr-addon-card__media {
    flex: 0 0 auto;
  }

  .lr-category-card__body,
  .lr-helios-card__body,
  .lr-addon-card__copy {
    flex: 1;
  }

  .lr-category-card__body span,
  .lr-addon-card__copy span {
    max-width: 100%;
    padding-inline: 0.62rem;
    text-align: center;
    white-space: normal;
  }

  .lr-slider-track {
    grid-auto-columns: 84%;
  }

  .lr-product-card__actions {
    flex-direction: column;
  }

  .lr-promo__overlay {
    min-height: 360px;
    background: linear-gradient(180deg, rgba(7, 17, 24, 0.35) 0%, rgba(7, 17, 24, 0.78) 100%);
  }
}

/* Header action cleanup */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.navbar__actions .icon-button {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--primary);
}

.navbar__actions .icon-button:hover,
.navbar__actions .icon-button:focus-visible {
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary);
  transform: translateY(-1px);
  box-shadow: none;
}

.navbar__actions .cart-button {
  appearance: none;
}

.navbar__actions .cart-button svg,
.navbar__actions>.icon-button[aria-label="Wishlist"] svg {
  width: 22px;
  height: 22px;
  display: block;
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: 4px;
  right: 2px;
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 720px) {
  .navbar__actions {
    gap: 6px;
  }

  .navbar__actions .icon-button {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}

/* Existing cart drawer repair */
#cartDrawer.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

#cartDrawer.cart-drawer.is-open,
#cartDrawer.cart-drawer.active {
  pointer-events: auto;
}

.cart-overlay,
.cart-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active,
#cartDrawer.cart-drawer.is-open .cart-overlay,
#cartDrawer.cart-drawer.active .cart-overlay,
#cartDrawer.cart-drawer.is-open .cart-drawer__overlay,
#cartDrawer.cart-drawer.active .cart-drawer__overlay {
  opacity: 1;
  visibility: visible;
}

.cart-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: min(100vw, 400px);
  height: 100%;
  max-height: 100vh;
  padding: 1.25rem;
  background: #fff;
  transform: translateX(100%);
  transition: none;
  will-change: transform;
}

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

@media (max-width: 720px) {
  .cart-drawer__panel {
    width: 100vw;
    padding: 1rem;
  }
}

/* ── Category Subcategory Strip ── */
.sp-subcategory-strip {
  padding: 1.5rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sp-subcategory-list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.sp-subcategory-list::-webkit-scrollbar {
  display: none;
}

.sp-subcategory-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #102636;
  flex-shrink: 0;
  min-width: 90px;
}

.sp-subcategory-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sp-subcategory-item:hover img {
  border-color: #CAA24C;
  transform: translateY(-3px);
}

.sp-subcategory-item span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* ── Category Main Layout ── */
.sp-category-main {
  padding: 3rem 0;
  background: #f9f9f9;
}

.sp-category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media(max-width: 860px) {
  .sp-category-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Sidebar Filters ── */
.sp-filters {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sp-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sp-filters__header h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #102636;
}

.sp-filters__clear {
  background: none;
  border: none;
  color: #CAA24C;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.sp-filters__close-mobile {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #102636;
  padding: 0;
}

.sp-filter-group {
  margin-bottom: 1.5rem;
}

.sp-filter-group h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #102636;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sp-filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(16, 38, 54, 0.8);
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.sp-filter-group input[type="checkbox"] {
  accent-color: #CAA24C;
  width: 16px;
  height: 16px;
}

.sp-filter-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sp-filter-price input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
}

/* ── Products Area ── */
.sp-products-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sp-products-count {
  margin: 0;
  font-size: 1rem;
  color: rgba(16, 38, 54, 0.8);
}

.sp-products-count span {
  font-weight: 700;
  color: #102636;
}

.sp-sort-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sp-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sp-sort label {
  font-size: 0.9rem;
  color: rgba(16, 38, 54, 0.8);
}

.sp-sort select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #102636;
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23102636%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}

.sp-filter-toggle {
  display: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #102636;
  cursor: pointer;
}

.sp-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media(max-width: 1100px) {
  .sp-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .sp-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .sp-category-main {
    padding: 1.5rem 0;
  }

  .sp-category-layout {
    gap: 1.25rem;
  }

  .sp-products-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .sp-sort-group {
    width: 100%;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .sp-sort {
    min-width: 0;
  }

  .sp-sort select {
    max-width: 100%;
    min-width: 0;
  }

  .sp-products-grid .furniture-deals__card {
    min-width: 0;
  }

  .sp-products-grid .furniture-deals__link {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .sp-products-grid .furniture-deals__title {
    overflow-wrap: anywhere;
  }

  .sp-products-grid .product-surface {
    padding: 0.65rem;
  }

  .sp-products-grid .product-enhancements {
    gap: 0.55rem;
    margin-top: 0.7rem;
  }

  .sp-products-grid .product-enhancements__row {
    gap: 0.45rem;
  }
}

/* ── Premium Product Card ── */
.premium-product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.premium-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.premium-product-card__image-container {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f5f0e8;
  border-radius: 20px 20px 0 0;
}

.premium-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.premium-product-card:hover .premium-product-card__image {
  transform: scale(1.05);
}

.premium-product-card__wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(16, 38, 54, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.premium-product-card__wishlist:hover {
  color: #e53e3e;
  transform: scale(1.1);
}

.premium-product-card__wishlist.is-active {
  color: #e53e3e;
}

.premium-product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #CAA24C;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
}

.premium-product-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.premium-product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(16, 38, 54, 0.6);
  margin: 0 0 0.4rem;
}

.premium-product-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #102636;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.premium-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.premium-product-card__rating {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.premium-product-card__reviews {
  color: rgba(16, 38, 54, 0.6);
}

.premium-product-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-product-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #102636;
}

.premium-product-card__add-cart {
  background: #CAA24C;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.premium-product-card__add-cart:hover {
  background: #b5903f;
  transform: translateY(-2px);
}

/* Mobile Filter Toggle */
@media(max-width: 860px) {
  .sp-filter-toggle {
    display: block;
  }

  .sp-filters {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: min(340px, 88vw);
    height: 100vh;
    z-index: 10000;
    overflow-y: auto;
    border-radius: 0;
    transition: left 0.3s ease;
    box-shadow: none;
  }

  .sp-filters.is-open {
    left: 0;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  }

  .sp-filters__close-mobile {
    display: block;
  }
}

/* ── Policy Pages ── */
.policy-page {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #f8f4ed;
  color: var(--primary);
}

.policy-page__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(var(--primary-rgb), 0.04);
}

.policy-page h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.policy-page h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--primary);
  margin: 2.5rem 0 1rem;
}

.policy-page p, .policy-page ul {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(var(--primary-rgb), 0.72);
  margin-bottom: 1.2rem;
}

.policy-page ul {
  padding-left: 1.5rem;
}

.policy-page li {
  margin-bottom: 0.5rem;
}
