/* MX Decors — Black + Champagne Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0c;
  --bg-soft: #111116;
  --bg-card: #0d0d12;
  --line: rgba(185, 198, 220, 0.12);
  --line-strong: rgba(185, 198, 220, 0.22);
  --text: #f2f4f8;
  --text-muted: #9aa3b5;
  --text-dim: #6b7385;
  --accent: #c9a86c;
  --accent-soft: rgba(201, 168, 108, 0.16);
  --accent-strong: #e0c896;
  --silver: #c5cedd;
  --silver-soft: rgba(197, 206, 221, 0.1);
  --danger: #c45c5c;
  --success: #5f9a72;
  --sale: #c9a86c;
  --radius: 10px;
  --container: 1240px;
  --nav-h: 84px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ——— Top bar ——— */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.55rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--accent); }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}
.header-inner {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-right { justify-content: flex-end; }

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.logo img {
  height: 58px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.logo-mark span { color: var(--accent); }
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
}
.footer-brand .logo img {
  height: 64px;
  max-width: 180px;
  margin-bottom: 0.6rem;
}

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.has-mega { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 520px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  padding: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
  box-shadow: var(--shadow-soft);
}
.has-mega:hover .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega a {
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mega a:hover {
  color: var(--text);
  background: var(--accent-soft);
  border-color: rgba(201, 168, 108, 0.35);
}

.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: all 0.25s;
  position: relative;
}
.icon-btn:hover { color: var(--text); border-color: var(--accent); background: var(--accent-soft); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--accent);
  color: #111;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 99px;
  display: grid; place-items: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1px; background: var(--text);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #e0c896 0%, #c9a86c 55%, #a8884e 100%);
  color: #111;
  box-shadow: 0 8px 24px rgba(201, 168, 108, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ead7a8 0%, #d4b87a 100%);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: rgba(197, 206, 221, 0.35);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: var(--accent-soft);
}
.btn-dark {
  background: #14141a;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-dark:hover { border-color: var(--silver); color: var(--silver); }
.btn-sm { padding: 0.7rem 1.1rem; font-size: 0.72rem; }
.btn-block { width: 100%; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 36px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,0.35) 0%, rgba(7,7,7,0.55) 45%, rgba(7,7,7,0.92) 100%),
    linear-gradient(90deg, rgba(7,7,7,0.55) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5rem;
  max-width: 720px;
  animation: rise 1s var(--ease) both;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.hero-brand em {
  font-style: italic;
  color: var(--accent-strong);
  display: block;
}
.hero-title {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 34ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  right: 2rem; bottom: 2rem;
  z-index: 3;
  display: flex; gap: 0.5rem;
}
.hero-dots button {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.hero-dots button.active { background: var(--accent); width: 42px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Sections ——— */
.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.section-desc {
  color: var(--text-muted);
  max-width: 42ch;
  font-size: 0.98rem;
}

/* ——— Categories ——— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cat-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  z-index: -2;
}
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-body { padding: 1.6rem; width: 100%; }
.cat-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.cat-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.cat-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.cat-card.wide { grid-column: span 2; min-height: 320px; }

/* ——— Product cards ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.2rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #101018 0%, #0a0a0f 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover {
  border-color: rgba(201, 168, 108, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(201, 168, 108, 0.12);
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 168, 108, 0.12), transparent 55%),
    #0e0e14;
}
.product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.product-card:hover .product-media::after { opacity: 1; }
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(201, 168, 108, 0.95);
  color: #111;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}
.product-actions--overlay {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
}
.product-card:hover .product-actions--overlay {
  opacity: 1;
  transform: translateY(0);
}
.product-actions--overlay .btn {
  border-radius: 6px;
  backdrop-filter: blur(8px);
}
.product-actions--bar {
  display: none;
  padding: 0 0.85rem 0.95rem;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.05rem 1.15rem;
  border-top: 1px solid var(--line);
}
.product-cat {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.75;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.5em;
}
.product-card:hover .product-name { color: var(--accent-strong); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.2rem;
}
.price-now {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-strong);
  letter-spacing: 0.02em;
}
.price-was {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

/* ——— Marquee ——— */
.marquee-wrap {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 1rem 0;
  background: var(--bg-elevated);
}
.marquee {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.marquee span em { color: var(--accent); font-style: italic; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— About / Company ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 520px;
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.about-stat {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(7,7,7,0.88);
  border: 1px solid var(--line-strong);
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(8px);
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about-points {
  display: grid;
  gap: 0.9rem;
  margin: 1.8rem 0 2rem;
}
.about-points li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-points li::before {
  content: '';
  width: 8px; height: 8px;
  margin-top: 0.45rem;
  background: var(--accent);
  flex-shrink: 0;
}

/* ——— Spaces ——— */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.space-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.space-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.space-card:hover img { transform: scale(1.07); }
.space-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.88));
}
.space-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.space-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}
.space-body p { font-size: 0.85rem; color: var(--text-muted); }

/* ——— Banner promo ——— */
.promo-banner {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.promo-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.55) 55%, rgba(7,7,7,0.25) 100%);
}
.promo-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
}
.promo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.promo-content p {
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

/* ——— Features ——— */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature {
  background: var(--bg);
  padding: 2rem 1.6rem;
  text-align: center;
}
.feature-icon {
  width: 42px; height: 42px;
  margin: 0 auto 1rem;
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  color: var(--accent-strong);
  font-size: 0.85rem;
  border-radius: 6px;
  background: var(--accent-soft);
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}
.feature p { color: var(--text-muted); font-size: 0.9rem; }

/* ——— Blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.4rem;
}
.blog-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-meta {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 500;
}
.blog-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ——— Page hero ——— */
.page-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,168,108,0.12), transparent 50%),
    var(--bg);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 54ch;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.breadcrumb a:hover { color: var(--accent); }

/* ——— Shop layout ——— */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding: 3rem 0 5rem;
}
.shop-filters h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.filter-group { margin-bottom: 1.8rem; }
.filter-group h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
}
.filter-group label:hover { color: var(--text); }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-toolbar select {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.55rem 0.9rem;
  color: var(--text);
}

/* ——— Product detail ——— */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
}
.pd-gallery { display: grid; gap: 0.8rem; }
.pd-main {
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.pd-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.7;
}
.pd-thumbs button.active,
.pd-thumbs button:hover {
  border-color: var(--accent);
  opacity: 1;
}
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .product-cat { margin-bottom: 0.6rem; }
.pd-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1rem;
}
.pd-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.pd-price .price-now { font-size: 1.4rem; }
.pd-desc {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: 1rem;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.qty-control {
  display: flex;
  border: 1px solid var(--line-strong);
}
.qty-control button {
  width: 42px; height: 46px;
  color: var(--text-muted);
}
.qty-control button:hover { color: var(--accent); }
.qty-control input {
  width: 52px;
  text-align: center;
  border-inline: 1px solid var(--line);
}
.quick-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.pd-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.pd-meta strong { color: var(--text); font-weight: 500; }

/* ——— Cart / Checkout ——— */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  padding: 3rem 0 5rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item img {
  width: 100px; height: 120px;
  object-fit: cover;
  background: var(--bg-soft);
}
.cart-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.cart-summary {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.6rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.cart-summary h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 0.6rem;
  padding-top: 1rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}
.summary-row.total span:last-child { color: var(--accent); }
.checkout-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 0.85rem 1rem;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

/* ——— Content pages ——— */
.content-block {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 2rem 0 0.8rem;
  font-weight: 500;
}
.content-block p, .content-block li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.content-block ul { padding-left: 1.2rem; list-style: disc; }
.content-block a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.wiki-box {
  border-left: 2px solid var(--accent);
  background: var(--bg-elevated);
  padding: 1.2rem 1.4rem;
  margin: 1.8rem 0;
}
.wiki-box strong { color: var(--accent); display: block; margin-bottom: 0.4rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--line);
  background: #000;
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-mark { font-size: 1.4rem; margin-bottom: 0.3rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 1rem 0 1.4rem;
  max-width: 34ch;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ——— Toast ——— */
.toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--accent);
  padding: 0.9rem 1.2rem;
  z-index: 200;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.35s var(--ease);
  font-size: 0.88rem;
  max-width: 320px;
  box-shadow: var(--shadow-soft);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ——— Mobile drawer ——— */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--line);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mobile-panel a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card.wide { grid-column: span 2; }
  .nav-left, .nav-right { gap: 0.85rem; }
  .nav-link { font-size: 0.76rem; }
}
@media (max-width: 900px) {
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-content: center; }
  .logo img { height: 48px; max-width: 130px; }
  .about-grid,
  .product-detail,
  .cart-layout,
  .shop-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .shop-filters { display: none; }
  .features { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .quick-order { grid-template-columns: 1fr; }
  .product-actions--overlay { display: none; }
  .product-actions--bar { display: grid; }
  .product-media::after { display: none; }
  .topbar .container span:last-child { display: none; }
  .hero-dots { right: 1rem; bottom: 1rem; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item > div:last-child { grid-column: 2; text-align: left; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 1.5rem, var(--container)); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem 0.65rem; }
  .product-info { padding: 0.75rem 0.8rem 0.9rem; }
  .product-name { font-size: 1rem; min-height: 2.4em; }
  .product-actions .btn { padding: 0.6rem 0.7rem; font-size: 0.65rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card, .cat-card.wide { grid-column: span 1; min-height: 220px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero {
    min-height: calc(100svh - var(--nav-h) - 32px);
  }
  .hero-content { padding: 2.5rem 0 3.5rem; }
  .hero-brand { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 1.6rem; }
  .page-hero { padding: 3rem 0 2rem; }
  .btn { padding: 0.85rem 1.3rem; }
  .icon-btn { width: 38px; height: 38px; font-size: 0.75rem; }
  .toast { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
}
@media (max-width: 420px) {
  .product-grid { gap: 0.7rem 0.5rem; }
  .product-actions--bar { grid-template-columns: 1fr; }
  .logo img { height: 42px; max-width: 110px; }
  :root { --nav-h: 72px; }
}

/* WP nav leftovers */
.nav-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.mobile-menu-list li { border-bottom: 1px solid var(--line); }
.mobile-menu-list a { display: block; padding: 0.85rem 0; }
.mobile-menu-list .sub-menu { list-style: none; padding-left: 0.8rem; }
.mobile-menu-list .sub-menu a { font-size: 0.9rem; color: var(--text-muted); border: 0; }
.content-block .wiki-box { border-left: 2px solid var(--accent); background: var(--bg-elevated); padding: 1.2rem 1.4rem; margin: 1.8rem 0; }
.content-block img { border-radius: var(--radius); }
.woocommerce-wrap .page-hero { display: none; }
