/* ==========================================================================
   Mini Kosmos — Chrome CSS
   Promo bar + Nav + Footer
   ========================================================================== */

/* ── Keyframes ─────────────────────────────────────────────────────────── */

@keyframes spin-slow  { to { transform: rotate(360deg); } }
@keyframes float-y   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pop       { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.mk-spin-slow { animation: spin-slow 18s linear infinite; }
.mk-float     { animation: float-y 4s ease-in-out infinite; }
.mk-pop-in    { animation: pop .35s cubic-bezier(.18,.89,.32,1.28) both; }


/* ==========================================================================
   1. Promo bar
   ========================================================================== */

.mk-promo-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 9px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: .01em;
  position: relative;
  z-index: 50;
}

.mk-promo-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 20px; /* prevent layout jump on rotation */
}

/* Each message is block-level and hidden; JS shows the active one */
.mk-promo-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .95;
}
.mk-promo-message[hidden] { display: none; }

.mk-promo-message svg { flex-shrink: 0; }

/* Sparkle icon gets the sun accent per design spec */
.mk-promo-message:first-child svg { color: var(--sun); }


/* ==========================================================================
   2. Nav
   ========================================================================== */

.mk-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

/* WoodMart sometimes adds its own sticky header via JS — let ours win */
.mk-nav.mk-nav { position: sticky; }

.mk-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
  width: min(1320px, 92vw);
  margin: 0 auto;
}

/* ── Left: nav-left wrapper + hamburger ── */

.mk-nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mk-hamburger {
  display: none; /* shown in media query below */
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}

.mk-hamburger:hover { background: rgba(32, 24, 46, .06); }

/* ── Left: nav links ── */

.mk-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mk-nav-link {
  position: relative;
  padding: 8px 4px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}

.mk-nav-link:hover { color: var(--coral); }

/* Active / current page underline */
.mk-nav-link[aria-current="page"]::after,
.mk-nav-link.current::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--coral);
  border-radius: 999px;
}

.mk-nav-hot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  animation: float-y 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Center: logo ── */

.mk-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.mk-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.mk-logo-text {
  display: grid;
  line-height: 1;
}

.mk-logo-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mk-logo-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* ── Right: actions ── */

.mk-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

/* Search pill */
.mk-search-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px 0 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  min-width: 220px;
  text-decoration: none;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  overflow: hidden;
}

.mk-search-pill:hover {
  border-color: var(--ink-soft);
  color: var(--ink-soft);
}

.mk-search-pill svg { flex-shrink: 0; color: var(--ink-soft); }

.mk-search-pill-label { flex: 1; }

.mk-search-pill-hint {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

/* Icon buttons (account, wishlist, cart) */
.mk-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  transition: background .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  /* Reset any WoodMart button styles */
  padding: 0;
  box-shadow: none;
  line-height: 1;
}

.mk-icon-btn:hover,
.mk-icon-btn:focus-visible {
  background: rgba(32, 24, 46, .06);
  border-color: var(--line);
}

.mk-icon-btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* Badge (cart count, wish count) */
.mk-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--coral);
  color: var(--paper);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.mk-badge[hidden] { display: none; }


/* ==========================================================================
   3. Footer
   ========================================================================== */

.mk-footer {
  background: var(--cream-deep);
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}

.mk-footer-inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
}

.mk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

/* Brand block */
.mk-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.mk-footer-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.mk-footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mk-footer-tagline {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 340px;
  line-height: 1.5;
}

.mk-footer-socials {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mk-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s, color .15s;
}

.mk-footer-social-link:hover {
  background: var(--ink);
  color: var(--cream);
}

.mk-footer-social-link svg { flex-shrink: 0; }

/* Link columns */
.mk-footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.mk-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.mk-footer-col ul li a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}

.mk-footer-col ul li a:hover { color: var(--coral); }

/* Bottom bar */
.mk-footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 13px;
}

.mk-footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mk-footer-meta svg { flex-shrink: 0; }

.mk-payment-pills {
  display: inline-flex;
  gap: 6px;
  margin-left: 14px;
  flex-wrap: wrap;
}

.mk-payment-pill {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}


/* ==========================================================================
   4. WoodMart overrides
   ========================================================================== */

/* WoodMart injects a mobile bottom toolbar via wp_footer — hide it.
   We'll replace it with our own mobile nav in the mobile pass. */
.wd-toolbar { display: none !important; }


/* ==========================================================================
   5. Responsive (chrome)
   ========================================================================== */

/* Below 1100px: collapse nav links, shrink search pill */
@media (max-width: 1100px) {
  .mk-nav-links { gap: 14px; }
  .mk-search-pill { min-width: 160px; }
  .mk-search-pill-hint { display: none; }
}

/* Below 900px: show hamburger, hide desktop nav links, collapse search pill */
@media (max-width: 900px) {
  .mk-hamburger { display: inline-flex; }
  .mk-nav-links { display: none; }
  .mk-search-pill { min-width: 44px; height: 44px; padding: 0 14px; }
  .mk-search-pill-label { display: none; }
  .mk-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mk-mobile-search-btn { display: none; } /* still hidden at 900px, pill visible */
}

@media (max-width: 600px) {
  .mk-nav-inner { grid-template-columns: auto 1fr auto; } /* left | center | right */
  .mk-nav-actions .mk-search-pill { display: none; }
  .mk-mobile-search-btn { display: grid; } /* show icon when pill is hidden */
  .mk-footer-grid { grid-template-columns: 1fr; }
  .mk-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Always hide mobile-only search btn on wider screens */
@media (min-width: 601px) {
  .mk-mobile-search-btn { display: none; }
}


/* ==========================================================================
   5b. Search overlay
   ========================================================================== */

.mk-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(32, 24, 46, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.mk-search-overlay.is-open {
  display: flex;
}

.mk-search-box {
  width: min(680px, 92vw);
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 24px 64px -16px rgba(32, 24, 46, .35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mk-search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mk-search-form svg { flex-shrink: 0; color: var(--muted); }

.mk-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 18px;
  color: var(--ink);
  min-width: 0;
}

.mk-search-input::placeholder { color: var(--muted); }

.mk-search-submit {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .15s;
}

.mk-search-submit:hover { opacity: .82; }

.mk-search-close {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}

.mk-search-close:hover { color: var(--ink); }

.mk-search-close svg { flex-shrink: 0; }

/* Pill as button — same visual as before */
.mk-search-pill {
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   6. Shared page utilities
   ========================================================================== */

.mk-wrap {
  width: min(1320px, 92vw);
  margin: 0 auto;
}

/* ── Typography helpers ── */

.mk-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.mk-script-accent {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0;
}

.mk-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.mk-section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin-top: 6px;
  color: var(--ink);
}

.mk-section-header--wrap { flex-wrap: wrap; }

.mk-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
  flex-shrink: 0;
}

.mk-section-link:hover { color: var(--coral); }
.mk-section-link svg   { flex-shrink: 0; }

/* ── Shared buttons ── */

.mk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mk-btn:hover { opacity: .88; transform: translateY(-1px); }

.mk-btn-primary { background: var(--ink);  color: var(--paper); }
.mk-btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.mk-btn-sun     { background: var(--sun);  color: var(--ink); }
.mk-btn svg     { flex-shrink: 0; }

/* ── Static page content (page.php) ── */

.mk-page-main {
  padding: 48px 0 96px;
}

.mk-page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.mk-page-body {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.mk-page-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 40px 0 14px;
}

.mk-page-body h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 28px 0 10px;
}

.mk-page-body h4 {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 20px 0 8px;
}

.mk-page-body p { margin: 0 0 14px; }
.mk-page-body ul,
.mk-page-body ol { padding-left: 22px; margin: 0 0 14px; }
.mk-page-body li { margin-bottom: 6px; }

.mk-page-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.mk-page-body a:hover { opacity: .8; }

.mk-page-body details { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; }
.mk-page-body summary { padding: 14px 18px; cursor: pointer; font-weight: 600; color: var(--ink); }
.mk-page-body details > *:not(summary) { padding: 0 18px 14px; }

/* .mk-page-content wrapper from setup-pages.php */
.mk-page-content { display: contents; }

/* ── Breadcrumbs ── */

.mk-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 6px;
  font-size: 13px;
  color: var(--ink-soft);
}

.mk-crumb-link {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s;
}

.mk-crumb-link:hover  { color: var(--ink); }
.mk-crumb-sep         { color: var(--muted); }
.mk-crumb-current     { color: var(--ink); font-weight: 600; }


/* ==========================================================================
   7. Product card component
   ========================================================================== */

.mk-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mk-products-grid--3col { grid-template-columns: repeat(3, 1fr); }

.mk-product-card {
  position: relative;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 1px 0 rgba(32, 24, 46, .04);
  cursor: pointer;
}

.mk-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -20px rgba(32, 24, 46, .25);
}

/* Image wrapper */
.mk-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--card-tint, #FFE9B8);
  overflow: hidden;
}

.mk-product-card--big .mk-card-img-wrap { aspect-ratio: 4 / 5; }

/* Cover link — full-area clickable overlay */
.mk-card-cover {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
}

/* White spotlight blob */
.mk-card-blob {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.mk-card-blob::after {
  content: "";
  width: 86%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  filter: blur(0.5px);
  box-shadow: inset 0 -18px 30px rgba(0, 0, 0, .06);
}

/* Product image */
.mk-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}

.mk-product-card:hover .mk-card-img { transform: scale(1.06); }

/* Slide-up add-to-cart button */
.mk-card-atc {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .25s ease;
  z-index: 2;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mk-product-card:hover .mk-card-atc { opacity: 1; transform: translateY(0); }
.mk-card-atc svg { flex-shrink: 0; }

/* Card body */
.mk-card-body {
  padding: 14px 16px 16px;
  display: grid;
  gap: 6px;
}

.mk-card-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  text-decoration: none;
}

.mk-card-name:hover { color: var(--coral); }

.mk-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mk-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.mk-card-stars      { display: inline-flex; gap: 2px; }
.mk-card-stars svg  { color: var(--sun); }


/* ── Responsive for shared utilities ── */

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

@media (max-width: 900px) {
  .mk-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  .mk-products-grid { gap: 12px; }
}


/* ==========================================================================
   8. Mobile nav drawer
   ========================================================================== */

.mk-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(32, 24, 46, .45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mk-drawer-backdrop.is-open { display: block; }

.mk-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 86vw);
  z-index: 8100;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 6px 0 32px -8px rgba(32, 24, 46, .18);
}

.mk-mobile-drawer.is-open {
  transform: translateX(0);
}

.mk-mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mk-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.mk-mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 8px;
  flex: 1;
}

.mk-drawer-link {
  display: flex;
  align-items: center;
  padding: 14px 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: 14px;
  transition: background .15s, color .15s;
}

.mk-drawer-link:hover,
.mk-drawer-link[aria-current="page"] {
  background: var(--cream-deep);
  color: var(--coral);
}

.mk-mobile-drawer-footer {
  border-top: 1px solid var(--line);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.mk-drawer-util-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 12px;
  transition: background .15s, color .15s;
}

.mk-drawer-util-link:hover {
  background: var(--cream-deep);
  color: var(--ink);
}
