/* Mebko — FurniLux-inspired storefront */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --mk-bg: #f4f0e8;
  --mk-surface: #ffffff;
  --mk-ink: #1a1713;
  --mk-muted: #7a746a;
  --mk-line: #e5ddd0;
  --mk-accent: #c9921a;
  --mk-accent-hover: #a87812;
  --mk-accent-soft: #f5e8c6;
  --mk-soft: #ebe4d8;
  --mk-forest: #2f3a2e;
  --mk-radius: 18px;
  --mk-radius-sm: 12px;
  --mk-radius-pill: 999px;
  --mk-shadow: 0 14px 40px rgba(26, 23, 19, 0.08);
  --mk-shadow-sm: 0 6px 18px rgba(26, 23, 19, 0.06);
  --mk-font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --mk-display: "Montserrat", "Inter", "Segoe UI", system-ui, sans-serif;
  --mk-container: 1480px;
  --mk-gutter: clamp(16px, 2.2vw, 28px);
  --mk-header-h: 72px;
  --mk-topbar-h: 0px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--mk-font);
  color: var(--mk-ink);
  background: var(--mk-bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--mk-accent); }

img { max-width: 100%; height: auto; display: block; }

#container { min-height: 100vh; display: flex; flex-direction: column; position: relative; }
main { flex: 1; }

.mk-container {
  width: min(100% - (var(--mk-gutter) * 2), var(--mk-container));
  margin-inline: auto;
}

/* Hide default OC top bar chrome when using new header */
#top { display: none !important; }

/* ========== HEADER ========== */
.mk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: transparent;
  border: none;
  padding: 14px 0 0;
  transition: padding .25s ease;
}
.mk-header.is-scrolled {
  padding-top: 10px;
}
.mk-header__glow { display: none; }
.mk-topbar { display: none !important; }

.mk-header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--mk-header-h);
  padding: 8px 14px 8px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(18, 14, 10, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* Homepage: header floats over full-bleed hero */
body.mk-is-home .mk-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding-top: 18px;
}
body.mk-is-home .mk-header.is-scrolled {
  position: fixed;
  padding-top: 12px;
}
body.mk-is-home main {
  padding-top: 0;
}

.mk-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.mk-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mk-ink) !important;
  position: relative;
}
.mk-logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, #e8bc4a 0%, var(--mk-accent) 48%, #9a6d10 100%);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow:
    0 10px 22px rgba(201, 146, 26, 0.32),
    inset 0 1px 0 rgba(255,255,255,.35);
  position: relative;
}
.mk-logo__mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.mk-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.mk-logo__name {
  font-family: var(--mk-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mk-logo__tag {
  margin-top: 3px;
  font-size: 0.68rem;
  color: var(--mk-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Catalog button right after logo */
.mk-catalog-wrap {
  position: relative;
}
.mk-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f3a2e 0%, #455443 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(47, 58, 46, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.mk-catalog-btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(47, 58, 46, 0.3);
}
.mk-catalog-btn__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
}
.mk-catalog-btn__chev {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: .55;
  margin-left: 2px;
  transition: transform .2s ease;
}
.mk-catalog-wrap:hover .mk-catalog-btn__chev { transform: rotate(180deg); }
.mk-catalog-wrap:hover .mk-mega--catalog,
.mk-catalog-wrap:focus-within .mk-mega--catalog {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mk-mega--catalog {
  left: 0;
  transform: translateY(8px);
  min-width: 480px;
}

.mk-header__end {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-left: auto;
}

/* Phone chip */
.mk-phone-chip {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(229, 221, 208, 0.95);
  box-shadow: 0 8px 20px rgba(26, 23, 19, 0.05);
  color: var(--mk-ink) !important;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mk-phone-chip:hover {
  color: var(--mk-ink) !important;
  transform: translateY(-1px);
  border-color: rgba(201, 146, 26, 0.45);
  box-shadow: 0 12px 26px rgba(26, 23, 19, 0.08);
}
.mk-phone-chip__pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 40px at 0% 50%, rgba(201,146,26,.12), transparent 70%);
  pointer-events: none;
}
.mk-phone-chip__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8bc4a, var(--mk-accent));
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(201,146,26,.3);
  position: relative;
  z-index: 1;
}
.mk-phone-chip__body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.mk-phone-chip__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mk-muted);
}
.mk-phone-chip__meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3caf6c;
  box-shadow: 0 0 0 0 rgba(60, 175, 108, 0.55);
  animation: mkPulse 1.8s ease infinite;
}
.mk-phone-chip__num {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mk-ink);
}
@keyframes mkPulse {
  0% { box-shadow: 0 0 0 0 rgba(60, 175, 108, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(60, 175, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(60, 175, 108, 0); }
}
@media (min-width: 1100px) {
  .mk-phone-chip { display: inline-flex; }
}

/* Unified dock: menu + icons */
.mk-dock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(229, 221, 208, 0.95);
  box-shadow: 0 8px 22px rgba(26, 23, 19, 0.05);
  backdrop-filter: blur(8px);
}

.mk-nav {
  display: none;
  align-items: center;
  gap: 1px;
  flex-wrap: nowrap;
  padding-left: 4px;
}
@media (min-width: 1100px) {
  .mk-nav { display: flex; }
}

.mk-nav > a,
.mk-nav__item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 11px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--mk-ink);
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: background .2s ease, color .2s ease;
}
.mk-nav > a:hover,
.mk-nav__item > a:hover,
.mk-nav__item:hover > a {
  background: var(--mk-soft);
  color: var(--mk-ink);
}
.mk-nav__sale { color: var(--mk-accent) !important; }
.mk-nav__item { position: relative; }
.mk-nav__chev {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: .4;
  margin-top: 1px;
  transition: transform .2s ease;
}
.mk-nav__item:hover .mk-nav__chev { transform: rotate(180deg); opacity: .7; }

.mk-dock__divider {
  display: none;
  width: 1px;
  height: 24px;
  background: var(--mk-line);
  margin: 0 4px;
  flex-shrink: 0;
}
@media (min-width: 1100px) {
  .mk-dock__divider { display: block; }
}

.mk-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 460px;
  padding: 0;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(26, 23, 19, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 40;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.mk-mega--narrow {
  min-width: 240px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}
.mk-mega--catalog {
  left: 0;
  transform: translateY(8px);
}
.mk-nav__item:hover .mk-mega,
.mk-nav__item:focus-within .mk-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mk-mega__intro {
  padding: 16px 18px 12px;
  background: linear-gradient(135deg, #f7f1e5, #fff);
  border-bottom: 1px solid var(--mk-line);
}
.mk-mega__intro strong {
  display: block;
  font-family: var(--mk-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.mk-mega__intro span {
  font-size: 0.8rem;
  color: var(--mk-muted);
}
.mk-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
}
.mk-mega__grid--1 { grid-template-columns: 1fr; }
.mk-mega__grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mk-ink) !important;
}
.mk-mega__grid a i {
  opacity: 0;
  transform: translateX(-4px);
  transition: .18s ease;
  color: var(--mk-accent);
  font-style: normal;
}
.mk-mega__grid a:hover {
  background: var(--mk-soft);
  color: var(--mk-ink) !important;
}
.mk-mega__grid a:hover i {
  opacity: 1;
  transform: none;
}
.mk-mega__foot {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--mk-line);
  background: #faf7f1;
}
.mk-mega__foot a {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--mk-line);
  color: var(--mk-ink) !important;
}
.mk-mega__foot a:hover {
  border-color: var(--mk-accent);
  color: var(--mk-accent) !important;
}

.mk-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mk-icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--mk-ink);
  position: relative;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mk-icon-btn:hover {
  background: var(--mk-soft);
  color: var(--mk-ink);
  transform: translateY(-1px);
}
.mk-icon-btn--cart {
  background: var(--mk-accent-soft);
}
.mk-icon-btn--cart:hover {
  background: #f0dfb0;
}
.mk-icon-btn .badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--mk-accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
}

.mk-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--mk-line);
  place-items: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
  cursor: pointer;
}
.mk-burger span {
  display: block;
  width: 16px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--mk-ink);
}
.mk-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mk-drawer__sub {
  padding-left: 22px !important;
  font-weight: 500 !important;
  font-size: 0.92rem;
  opacity: .9;
}

/* Search panel */
.mk-search-panel {
  display: none;
  padding: 10px 0 0;
  background: transparent;
}
.mk-search-panel.is-open { display: block; animation: mkFade .25s ease; }
.mk-search-panel .mk-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mk-surface);
  border: 1px solid var(--mk-line);
  border-radius: 16px;
  padding: 7px 7px 7px 18px;
  box-shadow: 0 12px 30px rgba(18, 14, 10, 0.14);
}
.mk-search-row__icon { color: var(--mk-muted); flex-shrink: 0; }
.mk-search-panel input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 0.98rem;
}
.mk-search-panel button {
  border: 0;
  background: linear-gradient(135deg, #e0ae35, var(--mk-accent));
  color: #fff;
  border-radius: var(--mk-radius-pill);
  padding: 11px 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(201,146,26,.28);
}

/* ========== HOME ========== */
.mk-home { padding-bottom: 64px; }
.mk-home > .mk-container { padding-top: 8px; }

/* Hero slider — full-bleed under floating header */
.mk-hero {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  width: 100%;
  background: #111;
  animation: mkRise .7s ease both;
  isolation: isolate;
}
.mk-hero__track {
  position: absolute;
  inset: 0;
}
.mk-hero__slide {
  position: absolute;
  inset: 0;
  background: #d9d2c6 center/cover no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity .7s ease, transform 1.1s ease, visibility .7s;
  z-index: 0;
}
.mk-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}
.mk-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18,14,10,.62) 0%, rgba(18,14,10,.28) 38%, rgba(18,14,10,.08) 62%, rgba(18,14,10,.12) 100%);
}
.mk-hero__slide.is-image::before { display: none; }
.mk-hero__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mk-hero__content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: clamp(40px, 6.5vw, 78px);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mk-hero__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(6px);
}
.mk-hero h1 {
  margin: 0 0 14px;
  font-family: var(--mk-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.mk-hero p {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 40ch;
}
.mk-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--mk-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(20,16,12,.16);
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  opacity: 0;
}
.mk-hero:hover .mk-hero__arrow,
.mk-hero:focus-within .mk-hero__arrow { opacity: 1; }
.mk-hero__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.mk-hero__arrow--prev { left: 16px; }
.mk-hero__arrow--next { right: 16px; }

.mk-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.mk-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, border-radius .25s ease;
}
.mk-hero__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}
.mk-hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--mk-radius-pill);
  border: 0;
  background: var(--mk-accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px rgba(210,154,31,.28);
}
.mk-btn:hover {
  background: var(--mk-accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}
.mk-btn--ghost {
  background: transparent;
  color: var(--mk-ink) !important;
  box-shadow: none;
  border: 1px solid var(--mk-line);
}
.mk-btn--ghost:hover { background: var(--mk-soft); color: var(--mk-ink) !important; transform: none; }

/* Category carousel — Allegro-style tall tiles */
.mk-cats-section {
  margin-top: 32px;
  animation: mkRise .7s ease .08s both;
}
.mk-cats-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.mk-cats-section__head h2 {
  margin: 0;
  font-family: var(--mk-font);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.mk-cats-nav {
  display: flex;
  gap: 8px;
}
.mk-cats-nav__btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}
.mk-cats-nav__btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #bdbdbd;
  color: #1a1a1a;
}
.mk-cats-nav__btn:disabled {
  opacity: .35;
  cursor: default;
}

.mk-cats {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 0 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mk-cats::-webkit-scrollbar { display: none; }

.mk-cat {
  position: relative;
  flex: 0 0 clamp(156px, 15.5vw, 210px);
  height: clamp(210px, 21vw, 280px);
  border-radius: 12px;
  overflow: hidden;
  background: #e8e8e8;
  color: #1a1a1a !important;
  scroll-snap-align: start;
  transition: transform .2s ease;
}
.mk-cat:hover {
  transform: translateY(-2px);
  color: #1a1a1a !important;
}
.mk-cat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.mk-cat:hover .mk-cat__img { transform: scale(1.04); }
.mk-cat__label {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 1;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  box-sizing: border-box;
  background: #fff;
  border-radius: 4px;
  padding: 10px 8px;
  text-align: center;
  font-family: var(--mk-font);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Benefits */
.mk-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
  animation: mkRise .7s ease .14s both;
}
.mk-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  background: var(--mk-soft);
  border-radius: var(--mk-radius);
}
.mk-benefit__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mk-surface);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--mk-accent);
}
.mk-benefit strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.mk-benefit span {
  font-size: 0.8rem;
  color: var(--mk-muted);
}

/* Section heads */
.mk-section { margin-top: 48px; }
.mk-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.mk-section__head h2 {
  margin: 0;
  font-family: var(--mk-font);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #1a1a1a;
}
.mk-link-more {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--mk-accent) !important;
  white-space: nowrap;
}
.mk-link-more:hover { color: var(--mk-accent-hover) !important; }

.mk-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #eceae6;
  color: #2a2a2a !important;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mk-btn-ghost:hover {
  background: #e2dfd8;
  color: #111 !important;
  transform: translateY(-1px);
}

.mk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.mk-tab {
  border: 0;
  background: #eceae6;
  color: #3a3a3a;
  padding: 9px 18px;
  border-radius: var(--mk-radius-pill);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.mk-tab.is-active,
.mk-tab:hover {
  background: var(--mk-accent);
  color: #fff;
}

/* Popular categories */
.mk-popcats-section {
  margin-top: 56px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.mk-popcats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: stretch;
}
.mk-popcat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ebe6de;
  box-shadow: 0 8px 22px rgba(26, 23, 19, 0.05);
  color: var(--mk-ink) !important;
  transition: transform .22s ease, box-shadow .22s ease;
}
.mk-popcat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(26, 23, 19, 0.1);
  color: var(--mk-ink) !important;
}
.mk-popcat__media {
  display: block;
  aspect-ratio: 1.55 / 1;
  flex: none;
  overflow: hidden;
  background: #ece8e0;
}
.mk-popcat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.mk-popcat:hover .mk-popcat__media img { transform: scale(1.05); }
.mk-popcat__name {
  display: block;
  min-height: 48px;
  padding: 13px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  background: #fff;
  border-top: 1px solid #f0ebe3;
}

/* Tighter gutters for OpenCart listing grids */
#product-category #product-list .row,
#product-search #product-list .row,
#product-special #product-list .row,
#product-manufacturer #product-list .row {
  margin-left: -5px;
  margin-right: -5px;
  row-gap: 10px;
}
#product-category #product-list .row > [class*="col-"],
#product-search #product-list .row > [class*="col-"],
#product-special #product-list .row > [class*="col-"],
#product-manufacturer #product-list .row > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

/* Product card — Halmar-style showcase tile */
.product-thumb,
.mk-card {
  background: #fff !important;
  border: 0;
  border-radius: 10px;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 23, 19, 0.06) !important;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 23, 19, 0.1) !important;
}

.mk-card__media {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.mk-card__media::after { display: none; }

.mk-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2f3a2e;
  color: #f0d48a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mk-card__photo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2px;
  box-sizing: border-box;
}
.mk-card__photo img,
.mk-card__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 8px;
}
.mk-card:hover .mk-card__photo img { transform: none; }

.mk-wish-form {
  display: none !important;
}
.mk-wish {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(26, 23, 19, 0.08);
  border-radius: 50%;
  background: #fff;
  color: #6b6760;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 28, 23, 0.08);
  transition: color .2s ease, transform .2s ease;
}
.mk-wish:hover {
  color: #c0392b;
  transform: scale(1.05);
}

.mk-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 16px 16px;
  flex: 1;
  background: #fff;
}

.mk-card__title {
  margin: 0;
  font-family: var(--mk-display);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  letter-spacing: -0.01em;
}
.mk-card__title a {
  color: #1a1713 !important;
  text-decoration: none;
  transition: color .2s ease;
}
.mk-card__title a:hover { color: var(--mk-accent) !important; }

.mk-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  min-height: 44px;
}

.mk-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-family: var(--mk-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #e11d2e;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  flex: 1;
  min-width: 0;
}
.mk-card__price .price-new { display: block; color: #e11d2e; }
.mk-card__price .price-old {
  color: #9a948a;
  font-weight: 500;
  font-size: 0.78rem;
  text-decoration: line-through;
}
.mk-card.is-sale .mk-card__price .price-new { color: #e11d2e; }

.mk-card__footer,
.mk-card__rating,
.product-thumb .rating {
  display: none !important;
}

.mk-cart-form {
  margin: 0 !important;
  display: block !important;
  flex-shrink: 0;
}
.mk-card__cart {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--mk-accent) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center;
  cursor: pointer;
  padding: 0 !important;
  box-shadow: 0 8px 18px rgba(201, 146, 26, 0.28);
  transition: background .2s ease, transform .2s ease;
}
.mk-card__cart:hover {
  background: var(--mk-accent-hover) !important;
  transform: scale(1.05);
  filter: none;
  box-shadow: 0 10px 20px rgba(201, 146, 26, 0.34);
}
.mk-card__cart svg {
  display: block;
  pointer-events: none;
  color: #fff;
  stroke: #fff;
}

/* Product tab panels */
.mk-products-wrap { position: relative; }
.mk-products {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.mk-products.is-active {
  display: grid;
  animation: mkFade .25s ease;
}

/* Promo banners */
.mk-promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.mk-promo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8px;
  align-items: stretch;
  min-height: 180px;
  background: var(--mk-surface);
  border-radius: var(--mk-radius);
  overflow: hidden;
  box-shadow: var(--mk-shadow-sm);
  color: var(--mk-ink) !important;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mk-promo:hover {
  transform: translateY(-3px);
  box-shadow: var(--mk-shadow);
  color: var(--mk-ink) !important;
}
.mk-promo__text {
  padding: 22px 18px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mk-promo__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mk-accent);
  margin-bottom: 8px;
}
.mk-promo h3 {
  margin: 0 0 10px;
  font-family: var(--mk-display);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.mk-promo__cta {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--mk-muted);
}
.mk-promo__media {
  background: var(--mk-soft) center/cover no-repeat;
  min-height: 140px;
}

/* ========== PRODUCT PAGE ========== */
.mk-product {
  padding: 8px 0 72px;
  background: #fff;
}
#product-info .row > [id^="column"] { display: none; }
#product-info #content.col {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
.mk-product .breadcrumb,
#product-info > .breadcrumb { display: none !important; }

.mk-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 6px 0 18px;
  font-size: 0.84rem;
  color: var(--mk-muted);
}
.mk-breadcrumb a { color: var(--mk-muted); }
.mk-breadcrumb a:hover { color: var(--mk-accent); }
.mk-breadcrumb__sep { opacity: .4; }
.mk-breadcrumb__current {
  color: var(--mk-ink);
  font-weight: 600;
  max-width: 56ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ========== PRODUCT LAYOUT (Amazon-style sticky gallery) ========== */
#product-info,
#product-info .mk-container,
#product-info .row,
#product-info .col,
#product-info #content {
  overflow: visible !important;
}

.mk-product__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.9fr);
  gap: 40px 48px;
  align-items: start;
  margin: 0 0 48px;
  background: #fff;
  padding: 28px;
  border: 1px solid #ece8e0;
  overflow: visible;
}

.mk-product__gallery {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  position: sticky;
  top: 104px;
  z-index: 2;
  background: #fff;
  align-self: start;
}

.mk-product__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: none;
}
.mk-product__thumbs::-webkit-scrollbar { display: none; }

.mk-product__thumb {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 1px solid #e4dfd5;
  background: #f3efe8;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 76px;
}
.mk-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.mk-product__thumb.is-active,
.mk-product__thumb:hover { border-color: #1a1713; }

.mk-product__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px;
  background: #f3efe8;
  line-height: 0;
  overflow: hidden;
  min-height: 280px;
}
.mk-product__stage img {
  width: 100%;
  height: auto;
  max-height: min(70vh, 620px);
  display: block;
  object-fit: contain;
  object-position: center;
}

.mk-product__info {
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  background: transparent;
}

.mk-product__top {
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(26, 23, 19, 0.08);
}

.mk-product__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.mk-product__series {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--mk-accent);
  font-family: var(--mk-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mk-product__series strong {
  color: #1a1713;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 0.92rem;
}

.mk-product__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mk-accent) !important;
  font-family: var(--mk-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mk-product__brand::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}
.mk-product__brand.has-logo::before,
.mk-product__brand:has(.mk-product__brand-img)::before { display: none; }
.mk-product__brand-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}
.mk-product__brand.is-static { pointer-events: none; }
.mk-product__brand:hover { color: var(--mk-accent-hover) !important; }

.mk-product__brand-logo {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
}
.mk-product__brand-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: left center;
}
.mk-product__meta-item--brand {
  justify-content: center;
}

.mk-product__stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  background: rgba(61, 122, 74, 0.08);
  color: #2f6b3c;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.mk-product__stock i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(61, 122, 74, 0.15);
}
.mk-product__stock.is-oos {
  background: rgba(155, 59, 59, 0.08);
  color: #9b3b3b;
}
.mk-product__stock.is-oos i {
  box-shadow: 0 0 0 3px rgba(155, 59, 59, 0.12);
}

.mk-product__title {
  margin: 0 0 14px;
  font-family: var(--mk-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a1713;
}

.mk-product__info .mk-product__price { margin: 0; }
.mk-product__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}
.mk-product__price .price-new {
  font-family: var(--mk-display);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #e11d2e;
  line-height: 1;
}
.mk-product__price .price-old {
  font-size: 1rem;
  color: #a39c92;
  text-decoration: line-through;
}
.mk-product__sale {
  padding: 5px 10px;
  background: var(--mk-accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mk-product__price-note {
  width: 100%;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2f6b3c;
}
.mk-product__price-note[hidden] { display: none !important; }

.mk-product__extras {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0;
}
.mk-product__extra {
  position: relative;
  display: block;
  margin: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff 0%, #faf7f1 100%);
  border: 1px solid rgba(26, 23, 19, 0.08);
  border-radius: 12px;
  cursor: default;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mk-product__extra-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mk-product__extra-head strong {
  font-family: var(--mk-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a1713;
}
.mk-product__extra-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(201, 146, 26, 0.12);
  color: #9a6d10;
}
.mk-product__delivery-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.mk-product__delivery-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(26, 23, 19, 0.06);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a2620;
}
.mk-product__delivery-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.mk-product__delivery-mark--np {
  background: #ed1c24;
  color: #fff;
}
.mk-product__delivery-mark--me {
  background: #1f4b8f;
  color: #fff;
}
.mk-product__delivery-mark--cr {
  background: #2f3a2e;
  color: #f0d48a;
  font-size: 0.75rem;
}

.mk-product__extra--assembly {
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.mk-product__extra--assembly input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mk-product__assembly-ui {
  display: block;
  padding: 14px 48px 14px 16px;
  position: relative;
}
.mk-product__extra--assembly .mk-product__extra-head {
  margin-bottom: 6px;
}
.mk-product__assembly-badge {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: #e85f00;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.mk-product__assembly-text {
  display: block;
  padding-left: 44px;
  font-size: 0.84rem;
  color: #6f695f;
  line-height: 1.45;
}
.mk-product__assembly-text b {
  color: #1a1713;
  font-weight: 700;
}
.mk-product__assembly-check {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1.5px solid #d4ccc0;
  background: #fff;
  transform: translateY(-50%);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.mk-product__assembly-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .15s ease;
}
.mk-product__extra--assembly:hover {
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.08);
}
.mk-product__extra--assembly:has(input:checked),
.mk-product__extra--assembly.is-on {
  border-color: rgba(255, 106, 0, 0.55);
  background: linear-gradient(180deg, #fff8f2 0%, #fff1e6 100%);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.12);
}
.mk-product__extra--assembly:has(input:checked) .mk-product__assembly-check,
.mk-product__extra--assembly.is-on .mk-product__assembly-check {
  background: #ff6a00;
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}
.mk-product__extra--assembly:has(input:checked) .mk-product__assembly-check::after,
.mk-product__extra--assembly.is-on .mk-product__assembly-check::after {
  transform: rotate(45deg) scale(1);
}

.mk-product__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mk-product__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fff 0%, #faf7f1 100%);
  border: 1px solid rgba(26, 23, 19, 0.08);
  border-radius: 12px;
}
.mk-product__trust-item .mk-product__extra-ico {
  background: rgba(47, 58, 46, 0.08);
  color: #2f3a2e;
}
.mk-product__trust-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1713;
  letter-spacing: -0.01em;
}
.mk-product__trust-item span {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: #7a746a;
  font-weight: 500;
}

@media (max-width: 640px) {
  .mk-product__trust { grid-template-columns: 1fr; }
  .mk-product__assembly-text { padding-left: 0; }
}

.mk-product__variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 22px;
  padding: 18px;
  background:
    linear-gradient(180deg, #faf7f1 0%, #f5f0e7 100%);
  border: 1px solid rgba(26, 23, 19, 0.06);
}
.mk-product__variant-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mk-product__variant-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a746a;
}
.mk-product__variant-label strong {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
  color: #1a1713;
  margin-left: 4px;
}
.mk-product__variant-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mk-product__variant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d8d2c6;
  background: #fff;
  color: #1a1713 !important;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.mk-product__variant--wide {
  min-width: 0;
  max-width: 100%;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.25;
  padding: 8px 12px;
  min-height: 42px;
}
.mk-product__variant:hover {
  border-color: var(--mk-forest);
  color: var(--mk-forest) !important;
  transform: translateY(-1px);
}
.mk-product__variant.is-active {
  background: var(--mk-forest);
  border-color: var(--mk-forest);
  color: #fff !important;
}
.mk-product__variant.is-oos:not(.is-active) {
  opacity: .42;
  text-decoration: line-through !important;
}

.mk-product__excerpt { display: none; }

.mk-product__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.mk-product__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(26, 23, 19, 0.07);
  flex: 1 1 140px;
}
.mk-product__meta-item span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9a9388;
}
.mk-product__meta-item strong,
.mk-product__meta-item strong a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1713;
  word-break: break-word;
  text-decoration: none;
}
.mk-product__meta-item strong a:hover { color: var(--mk-accent); }

.mk-product__facts { display: none; }

.mk-product__cart-block {
  display: block;
  margin: 0 0 18px;
  padding: 12px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(201, 146, 26, 0.08), transparent 55%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe6 100%);
  border: 1px solid rgba(26, 23, 19, 0.07);
}
.mk-product__cart-block > #form-product { min-width: 0; }

.mk-product__buybar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.mk-product__buybar.is-oos { display: block; }

.mk-product__qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 auto;
}
.mk-product__qty-label { display: none !important; }
.mk-product__qty {
  display: grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  width: 94px;
  min-height: 46px;
  height: 46px;
  border: 1px solid #d8d0c4;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.mk-product__qty-btn {
  height: 100%;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: #1a1713;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.mk-product__qty-btn:first-child {
  background: #f3eee5;
}
.mk-product__qty-btn:hover { background: #ebe4d8; }
.mk-product__qty input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1713;
  padding: 0;
  -moz-appearance: textfield;
}
.mk-product__qty input::-webkit-outer-spin-button,
.mk-product__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mk-product__cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  min-width: 0;
  flex: 0 0 auto;
  min-height: 46px;
  height: 46px;
  padding: 4px 4px 4px 16px;
  border: 0;
  border-radius: 8px;
  background: #ff6a00;
  color: #fff !important;
  font-family: var(--mk-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.3);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.mk-product__cart-btn:hover:not(:disabled) {
  background: #e85f00;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.36);
  filter: none;
}
.mk-product__cart-btn:disabled { opacity: .4; cursor: not-allowed; }
.mk-product__cart-btn__ico {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #fff;
  color: #1a1713;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mk-product__wish,
.mk-product__icon-btn,
.mk-product__share { display: none !important; }

.mk-product__benefits {
  position: relative;
  border: 1px solid rgba(26, 23, 19, 0.08);
  padding: 28px 14px 18px;
  background:
    linear-gradient(180deg, #fff 0%, #faf7f1 100%);
}
.mk-product__benefits-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0 14px;
  background: #fff;
  white-space: nowrap;
  font-family: var(--mk-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1a1713;
}
.mk-product__benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mk-product__benefits-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 6px 8px;
  border-right: 1px solid rgba(26, 23, 19, 0.08);
}
.mk-product__benefits-grid li:last-child { border-right: 0; }
.mk-product__benefit-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 2px;
  color: var(--mk-accent);
  background: rgba(201, 146, 26, 0.1);
}
.mk-product__benefits-grid strong {
  font-family: var(--mk-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1a1713;
}
.mk-product__benefits-grid span {
  font-size: 0.74rem;
  color: #8a8378;
  line-height: 1.35;
}

.mk-product__oos {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #d8d2c6;
  background: #fff;
}
.mk-product__oos strong { font-size: 0.95rem; color: var(--mk-ink); }
.mk-product__oos span { font-size: 0.84rem; color: #7a746a; line-height: 1.4; }
.mk-product__oos-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 6px;
  padding: 10px 14px;
  background: var(--mk-forest);
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mk-product__oos-link:hover { color: #fff !important; opacity: .92; }

.mk-product__options { margin-bottom: 16px; }
.mk-product__options h3 {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mk-product__options .form-label { font-weight: 600; color: var(--mk-ink); }
.mk-product__options .form-select,
.mk-product__options .form-control {
  border-radius: 0;
  border-color: #d8d2c6;
  min-height: 46px;
}
.mk-product__discounts {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: #7a746a;
  font-size: 0.88rem;
}

.mk-product__tabs { margin-top: 8px; }
.mk-product__tabnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0 !important;
  margin-bottom: 12px;
}
.mk-product__tabnav .nav-link {
  border: 0 !important;
  border-radius: 999px !important;
  background: #eceae6;
  color: #3a3a3a;
  font-weight: 700;
  padding: 10px 18px;
}
.mk-product__tabnav .nav-link.active,
.mk-product__tabnav .nav-link:hover {
  background: var(--mk-accent) !important;
  color: #fff !important;
}
.mk-product__tabcontent {
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--mk-shadow-sm);
  color: var(--mk-ink);
  line-height: 1.7;
}
.mk-product__attrs { margin: 0; }
.mk-product__attrs td {
  border-color: var(--mk-line) !important;
  padding: 12px 14px;
}
.mk-product__attrs thead td {
  background: var(--mk-soft);
  font-family: var(--mk-display);
  font-size: 1.15rem;
}
.mk-product__tags { margin-top: 16px; color: var(--mk-muted); }
.mk-product__tags a { color: var(--mk-accent); font-weight: 600; }

.mk-series {
  margin: 8px 0 28px;
  padding: clamp(18px, 2.5vw, 26px);
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(26, 23, 19, 0.05);
}
.mk-series__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.mk-series__eyebrow {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mk-accent);
}
.mk-series__title {
  margin: 0 0 6px;
  font-family: var(--mk-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--mk-ink);
  line-height: 1.15;
}
.mk-series__lead {
  margin: 0;
  max-width: 46ch;
  color: var(--mk-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.mk-series__nav {
  display: inline-flex;
  gap: 8px;
  flex-shrink: 0;
}
.mk-series__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--mk-line);
  border-radius: 50%;
  background: #fff;
  color: var(--mk-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.mk-series__btn:hover:not(:disabled) {
  border-color: var(--mk-accent);
  color: var(--mk-accent);
  transform: translateY(-1px);
}
.mk-series__btn:disabled {
  opacity: .35;
  cursor: default;
}
.mk-series__viewport {
  position: relative;
  overflow: hidden;
}
.mk-series__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 240px);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mk-series__track::-webkit-scrollbar { display: none; }
.mk-series__item {
  scroll-snap-align: start;
  min-width: 0;
}
.mk-series__item .mk-card,
.mk-series__item .product-thumb {
  height: 100%;
}
.mk-series__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.mk-series__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9d1c4;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.mk-series__dot.is-active {
  width: 22px;
  background: var(--mk-accent);
}
.mk-product__series-meta strong {
  color: var(--mk-accent);
}

#product-info.container {
  width: min(100% - (var(--mk-gutter) * 2), var(--mk-container));
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* ========== FOOTER ========== */
.mk-footer {
  background: #2a2621;
  color: rgba(255,255,255,.78);
  margin-top: 56px;
  position: relative;
  z-index: 0;
  clear: both;
  padding: 48px 0 28px;
}
.mk-footer a { color: rgba(255,255,255,.78); }
.mk-footer a:hover { color: #fff; }
.mk-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.mk-footer h5 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 14px;
  font-weight: 700;
}
.mk-footer ul { list-style: none; margin: 0; padding: 0; }
.mk-footer li + li { margin-top: 8px; }
.mk-footer__brand .mk-logo__name { color: #fff; }
.mk-footer__brand .mk-logo__tag { color: rgba(255,255,255,.55); }
.mk-footer__about {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}
.mk-footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}

/* ========== INNER PAGES ========== */
#common-home.container,
#product-category.container,
#product-product.container,
#product-search.container,
#information-contact.container,
#checkout-cart.container,
#account-login.container {
  width: min(100% - (var(--mk-gutter) * 2), var(--mk-container));
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

body:not(.mk-is-home) main {
  padding-top: 18px;
}

#menu {
  background: transparent !important;
  border: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}
#menu .navbar-nav { display: none; } /* nav moved into header */

/* Category / listing polish */
.category-list,
.filter-list { background: var(--mk-surface); border-radius: var(--mk-radius); padding: 12px; }

/* Cart dropdown cleanup */
#header-cart .dropdown-menu {
  border-radius: var(--mk-radius);
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-shadow);
}

/* Mobile nav drawer */
.mk-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mk-drawer.is-open { pointer-events: auto; }
.mk-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,.4);
  opacity: 0;
  transition: opacity .25s ease;
}
.mk-drawer.is-open .mk-drawer__backdrop { opacity: 1; }
.mk-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(201,146,26,.16), transparent 60%),
    var(--mk-bg);
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 20px;
  overflow: auto;
}
.mk-drawer.is-open .mk-drawer__panel { transform: translateX(0); }
.mk-drawer__nav { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.mk-drawer__nav a {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  background: var(--mk-surface);
}

@keyframes mkRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes mkFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1100px) {
  .mk-products { grid-template-columns: repeat(3, 1fr); }
  .mk-popcats { grid-template-columns: repeat(3, 1fr); }
  .mk-burger { display: inline-flex; }
  .mk-mega { display: none !important; }
  .mk-topbar__left span:not(.mk-topbar__chip):not(.mk-topbar__sep),
  .mk-topbar__sep { display: none; }
  .mk-cat {
    flex-basis: clamp(150px, 28vw, 190px);
    height: clamp(210px, 38vw, 260px);
  }
}

@media (max-width: 991px) {
  .mk-product__shell {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 16px;
  }
  .mk-product__gallery {
    position: static;
    top: auto;
  }
  .mk-product__thumbs {
    max-height: none;
    overflow: visible;
  }
  .mk-product__wish { order: 2; align-self: stretch; }
  .mk-product__icon-btn {
    width: 100%;
    height: 54px;
  }
  .mk-product__cart-block {
    grid-template-columns: minmax(0, 1fr);
  }
  .mk-product__benefits-title { background: #fff; }
  .mk-series__item {
    flex: 0 0 min(70vw, 260px);
  }
  .mk-breadcrumb {
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: 0.78rem;
  }
  .mk-breadcrumb__current {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .mk-benefits { grid-template-columns: repeat(2, 1fr); }
  .mk-promos { grid-template-columns: 1fr; }
  .mk-footer__grid { grid-template-columns: 1fr 1fr; }
  .mk-hero {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 0;
    margin: 0;
  }
  .mk-hero__content {
    padding: 28px 22px 56px;
    max-width: none;
    justify-content: flex-end;
  }
  .mk-hero h1 { font-size: clamp(1.7rem, 7vw, 2.35rem); }
  .mk-hero p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    max-width: 34ch;
  }
  .mk-hero__arrow {
    opacity: 1;
    width: 38px;
    height: 38px;
  }
  .mk-catalog-wrap { display: none; }
  .mk-header__end { gap: 8px; }
  .mk-dock {
    gap: 2px;
    padding: 3px;
  }
  .mk-toolbar .dropdown { display: none; }
  .mk-icon-btn[href*="wishlist"] { display: none; }
}

@media (max-width: 767px) {
  /* OpenCart category / search grids → 2 columns on phone */
  #product-category #product-list .row > [class*="col-"],
  #product-search #product-list .row > [class*="col-"],
  #product-special #product-list .row > [class*="col-"],
  #product-manufacturer #product-list .row > [class*="col-"],
  #product-category .product-list > [class*="col-"],
  #product-search .product-list > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    padding-left: 4px;
    padding-right: 4px;
  }
  #product-category #product-list .row,
  #product-search #product-list .row,
  #product-special #product-list .row {
    margin-left: -4px;
    margin-right: -4px;
    row-gap: 8px;
  }
  .product-thumb,
  .mk-card {
    margin-bottom: 0;
  }
  .mk-card__title {
    font-size: 0.88rem;
    min-height: 0;
    -webkit-line-clamp: 2;
  }
  .mk-card__price .price-new { font-size: 0.95rem; }
  .mk-card__cart {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  :root {
    --mk-header-h: 58px;
    --mk-topbar-h: 0px;
    --mk-gutter: 12px;
  }

  .mk-header { padding-top: 10px; }
  body.mk-is-home .mk-header { padding-top: 10px; }
  .mk-header__shell {
    gap: 8px;
    min-height: var(--mk-header-h);
    padding: 6px 10px 6px 12px;
    border-radius: 16px;
  }
  .mk-logo { gap: 8px; }
  .mk-logo__mark { width: 40px; height: 40px; border-radius: 12px; }
  .mk-logo__tag { display: none; }
  .mk-logo__name { font-size: 1.45rem; }

  .mk-products { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mk-popcats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mk-popcat__name { padding: 12px 8px; font-size: 0.86rem; }

  .mk-cat {
    flex-basis: calc(50% - 5px);
    height: 210px;
  }
  .mk-cats { gap: 10px; scroll-padding-inline: 4px; }
  .mk-cat__label {
    width: calc(100% - 16px);
    bottom: 8px;
    padding: 8px 6px;
    font-size: 12px;
  }
  .mk-cats-section { margin-top: 28px; }
  .mk-cats-section__head {
    margin-bottom: 12px;
    gap: 10px;
  }
  .mk-cats-section__head h2 { font-size: 1.2rem; }
  .mk-cats-nav__btn { width: 36px; height: 36px; }

  .mk-section { margin-top: 36px; }
  .mk-section__head h2 { font-size: 1.35rem; }
  .mk-section__head p { font-size: 0.9rem; }

  .mk-benefits { grid-template-columns: 1fr; gap: 10px; }
  .mk-promo { grid-template-columns: 1fr; }
  .mk-promo__media { min-height: 150px; }
  .mk-footer { margin-top: 36px; padding: 36px 0 88px; }
  .mk-footer__grid { grid-template-columns: 1fr; gap: 22px; }
  .mk-footer__bottom { margin-top: 24px; }

  .mk-hero {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 0;
  }
  .mk-hero__content { padding: 22px 16px 52px; }
  .mk-hero__eyebrow { font-size: 0.68rem; margin-bottom: 10px; }
  .mk-hero h1 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    margin-bottom: 10px;
  }
  .mk-hero p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    font-size: 0.9rem;
  }
  .mk-hero__arrow--prev { left: 8px; }
  .mk-hero__arrow--next { right: 8px; }
  .mk-hero__dots { bottom: 14px; }
  .mk-btn {
    padding: 12px 20px;
    font-size: 0.86rem;
    width: auto;
  }

  .mk-search-panel { padding: 10px 0 14px; }
  .mk-search-panel .mk-search-row {
    padding: 6px 6px 6px 14px;
    gap: 8px;
  }
  .mk-search-panel button {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .mk-drawer__panel {
    width: min(100%, 100vw);
    padding: 16px 14px calc(20px + env(safe-area-inset-bottom));
  }
  .mk-drawer__nav a { padding: 13px 14px; font-size: 0.95rem; }

  body:not(.mk-is-home) main { padding-top: 10px; }

  .mk-product__shell {
    padding: 12px;
    gap: 18px;
    margin-bottom: 28px;
    border-radius: 0;
  }
  .mk-product__gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mk-product__thumbs {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 2px;
  }
  .mk-product__thumbs::-webkit-scrollbar { display: none; }
  .mk-product__thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }
  .mk-product__stage {
    order: 1;
    min-height: 220px;
    padding: 8px;
  }
  .mk-product__stage img {
    max-height: min(58vh, 420px);
  }

  .mk-product__top { margin-bottom: 16px; padding-bottom: 16px; }
  .mk-product__top-row {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .mk-product__title {
    font-size: clamp(1.1rem, 4.8vw, 1.3rem);
    margin-bottom: 10px;
  }
  .mk-product__price .price-new {
    font-size: clamp(1.45rem, 6vw, 1.8rem);
  }
  .mk-product__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .mk-product__meta-item {
    padding: 10px 12px;
    flex: none;
  }
  .mk-product__variants {
    padding: 14px;
    margin-bottom: 16px;
  }
  .mk-product__variant {
    min-height: 40px;
    min-width: 64px;
  }

  .mk-product__cart-block {
    position: sticky;
    bottom: 0;
    z-index: 30;
    margin: 0 -12px 8px;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    box-shadow: 0 -10px 30px rgba(26, 23, 19, 0.08);
  }
  .mk-product__buybar {
    gap: 8px;
  }
  .mk-product__qty,
  .mk-product__qty-btn,
  .mk-product__cart-btn {
    min-height: 46px;
    height: 46px;
  }
  .mk-product__cart-btn {
    min-width: 0;
    width: fit-content;
    flex: 0 0 auto;
    font-size: 0.74rem;
    letter-spacing: .06em;
    padding: 4px 4px 4px 14px;
    border-radius: 8px;
  }
  .mk-product__cart-btn__ico {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }

  .mk-product__benefits { padding: 26px 10px 14px; }
  .mk-product__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mk-product__benefits-grid li {
    border-right: 0;
    border-bottom: 1px solid #ece8e0;
    padding: 12px 6px;
  }
  .mk-product__benefits-grid li:nth-child(odd) {
    border-right: 1px solid #ece8e0;
  }
  .mk-product__benefits-grid li:nth-last-child(-n+2) { border-bottom: 0; }

  .mk-product__tabnav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mk-product__tabnav::-webkit-scrollbar { display: none; }
  .mk-product__tabnav .nav-link {
    white-space: nowrap;
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .mk-product__tabcontent {
    border-radius: 16px;
    padding: 16px;
  }

  .mk-series__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .mk-series__title { font-size: 1.35rem; }
}

@media (max-width: 420px) {
  .mk-products,
  .mk-popcats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mk-card__media { margin: 0; border-radius: 0; }
  .mk-card__body { padding: 4px 12px 12px; }
  .mk-card__photo { padding: 2px; }
  .mk-card__photo img,
  .mk-card__media img { border-radius: 8px; }
  .mk-hero__arrow { display: none; }
  .mk-product__buybar {
    gap: 8px;
  }
  .mk-product__qty-wrap {
    gap: 0;
  }
  .mk-product__qty {
    width: 94px;
  }
  .mk-product__meta {
    grid-template-columns: 1fr;
  }
}
