/* ═══════════════════════════════════════════════════════
   Catalog Archive — Mockup Core
   ═══════════════════════════════════════════════════════ */

/* ─── Defensive resets ──────────────────────────────── */
/* Prevent theme from adding underlines inside our archive container. */

:root {
    --mk-dark: #1a1a1a;
    --mk-bg: #f5f3ef;
    --mk-border: #e5e2dd;
    --mk-muted: #a0a0a0;
    --mk-secondary: #6b6b6b;
    --mk-accent: #F2EC19;
    --mk-ease: cubic-bezier(.25,.8,.25,1);
    --mk-green: #22c55e;
    --mk-orange: #f97316;
    --mk-red: #ef4444;
}

.mk-archive {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: #fafaf8;
    min-height: 100vh;
}
.mk-archive a {
    text-decoration: none;
    color: inherit;
}
.mk-archive a:hover {
    text-decoration: none;
}

/* ─── Breadcrumb ────────────────────────────────────── */
.mk-archive__breadcrumb {
    padding: 12px 5%;
    background: var(--mk-bg);
    font-size: 12px;
    color: var(--mk-muted);
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}
.mk-archive__breadcrumb a {
    color: var(--mk-secondary);
    text-decoration: none;
}
.mk-archive__breadcrumb a:hover {
    text-decoration: underline;
}
.mk-archive__breadcrumb-current {
    color: var(--mk-dark);
    font-weight: 600;
}
.mk-archive__breadcrumb svg {
    color: var(--mk-muted);
    flex-shrink: 0;
}

/* ─── Header ────────────────────────────────────────── */
.mk-archive__header {
    padding: 24px 5% 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.mk-archive__title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--mk-dark);
    margin: 0;
    letter-spacing: -.5px;
}
.mk-archive__count {
    font-size: 12px;
    color: var(--mk-muted);
    margin: 4px 0 0;
}
.mk-archive__header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mk-archive__sort,
.mk-archive__mobile-sort {
    padding: 7px 28px 7px 10px;
    border: 1px solid var(--mk-border);
    border-radius: 7px;
    font-size: 12px;
    color: var(--mk-secondary);
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

/* Grid toggle */
.mk-archive__grid-toggle {
    display: flex;
    border: 1px solid var(--mk-border);
    border-radius: 7px;
    overflow: hidden;
}
.mk-grid-btn {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    background: #fff;
    color: var(--mk-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.mk-grid-btn.active {
    background: var(--mk-dark);
    color: #fff;
}

/* ─── Active Filter Chips ───────────────────────────── */
.mk-archive__chips {
    display: flex;
    gap: 5px;
    padding: 0 5% 0;
    flex-wrap: wrap;
    align-items: center;
}
.mk-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px 4px 10px;
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--mk-secondary);
}
.mk-chip__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--mk-muted);
    font-size: 13px;
    line-height: 1;
    padding: 0 2px;
}
.mk-chips__clear {
    background: none;
    border: none;
    font-size: 11px;
    color: var(--mk-muted);
    cursor: pointer;
    font-family: inherit;
    padding: 3px 6px;
    text-decoration: underline;
}

/* ─── Divider ───────────────────────────────────────── */
.mk-archive__divider {
    height: 1px;
    background: var(--mk-border);
    margin: 12px 5% 0;
}

/* ─── Mobile Bar ────────────────────────────────────── */
.mk-archive__mobile-bar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--mk-border);
    padding: 10px 5%;
    gap: 8px;
    align-items: center;
}
.mk-archive__mobile-filter-btn {
    flex: 1;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mk-secondary);
    cursor: pointer;
    font-family: inherit;
}
.mk-archive__mobile-filter-count {
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--mk-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}
.mk-archive__mobile-sort {
    flex: 1;
    height: 38px;
}

/* ─── Layout ────────────────────────────────────────── */
.mk-archive__layout {
    display: flex;
    padding: 20px 5%;
    gap: 32px;
}
.mk-archive__sidebar {
    width: 290px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}
.mk-archive__main {
    flex: 1;
    min-width: 0;
}

/* ─── Product Grid ──────────────────────────────────── */
.mk-archive__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.mk-archive__grid[data-cols="3"] {
    grid-template-columns: repeat(3, 1fr);
}

/* ─── Empty State ───────────────────────────────────── */
.mk-archive__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--mk-muted);
}
.mk-archive__empty-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--mk-secondary);
    margin: 0 0 4px;
}
.mk-archive__empty-text {
    font-size: 12px;
    margin: 0 0 16px;
}
.mk-archive__empty-clear {
    padding: 8px 20px;
    background: var(--mk-dark);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* ─── Loading overlay ───────────────────────────────── */
.mk-archive__grid.mk-loading {
    opacity: .45;
    pointer-events: none;
    transition: opacity .2s;
}

/* ═══════════════════════════════════════════════════════
   Product Card
   ═══════════════════════════════════════════════════════ */
.mk-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--mk-border);
    transition: all .3s var(--mk-ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.mk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.mk-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

/* Card image — 1:1 square, fully white */
.mk-card__image {
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.mk-card__image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform .4s var(--mk-ease);
}
/* Cover mode (per-product opt-in via _mk_image_cover meta) — image
 * fills the entire 1:1 image section, no padding, no white bg.
 * Used for lifestyle / room photos; default stays Fit for product shots
 * with transparent or white backgrounds. */
.mk-card__image[data-fit="cover"] img {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mk-card:hover .mk-card__image img {
    transform: scale(1.04);
}

/* Sale tag — top-left, white text on red */
.mk-card__sale-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--mk-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .02em;
    z-index: 4;
}

/* Custom badges (new, popular, etc.) */
.mk-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.mk-card__badge--sale { background: var(--mk-red); color: #fff; }
.mk-card__badge--new { background: var(--mk-green); color: #fff; }
.mk-card__badge--info { background: var(--mk-accent); color: var(--mk-dark); }

/* Color dots */
.mk-card__colors {
    position: absolute;
    bottom: 8px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,.85);
    border-radius: 16px;
    padding: 2px 6px 2px 3px;
}
.mk-card__color-dots {
    display: flex;
    gap: 1px;
}
.mk-card__color-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.06);
}
.mk-card__color-count {
    font-size: 8px;
    color: var(--mk-secondary);
    font-weight: 600;
    margin-left: 1px;
}

/* Wishlist button — top-right corner of the image */
.mk-card__wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: color .2s, background .2s, transform .15s;
    z-index: 4;
}
.mk-card__wishlist-btn svg { width: 15px; height: 15px; }
.mk-card__wishlist-btn:hover {
    color: var(--mk-red);
}
.mk-card__wishlist-btn.mk-wishlisted,
.mk-card__wishlist-btn.active {
    color: var(--mk-red);
}
.mk-card__wishlist-btn.mk-wishlisted svg,
.mk-card__wishlist-btn.active svg {
    fill: var(--mk-red);
}

/* Card body */
.mk-card__body {
    padding: 11px 13px 13px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mk-card__meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}
.mk-card__brand {
    font-size: 9px;
    color: var(--mk-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}
.mk-card__category {
    font-size: 9px;
    color: var(--mk-muted);
}
.mk-card__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 7px;
    line-height: 1.3;
    color: var(--mk-dark);
    flex: 1;
}

/* Stock badge */
.mk-card__stock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.mk-card__stock-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}
.mk-stock--in { background: #ecfdf5; color: #16a34a; }
.mk-stock--in .mk-card__stock-dot { background: #16a34a; }
.mk-stock--pre,
.mk-stock--order { background: #fff7ed; color: #ea580c; }
.mk-stock--pre .mk-card__stock-dot,
.mk-stock--order .mk-card__stock-dot { background: #ea580c; }

/* Card footer */
.mk-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--mk-border);
    padding-top: 10px;
}
.mk-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
}
.mk-card__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--mk-dark);
    letter-spacing: .01em;
}
.mk-card__old-price {
    font-size: 10px;
    color: var(--mk-muted);
    text-decoration: line-through;
    margin-left: 4px;
}
.mk-card__per-section {
    font-size: 9px;
    color: var(--mk-muted);
}

/* Card action button */
.mk-card__action {
    height: 32px;
    padding: 0 12px;
    background: var(--mk-dark);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .2s;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}
.mk-card__action:hover {
    opacity: .85;
}
.mk-card__added {
    background: #16a34a !important;
}
.mk-card__loading {
    opacity: .6;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   Sidebar Filters
   ═══════════════════════════════════════════════════════ */

/* Section */
.mk-filter-section {
    border-bottom: 1px solid var(--mk-border);
}
.mk-filter-section:last-of-type { border-bottom: none; }
.mk-filter-section__toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.mk-filter-section__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--mk-dark);
    flex: 1;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.mk-filter-section__count {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--mk-dark);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.mk-filter-section__arrow {
    color: var(--mk-muted);
    transition: transform .2s;
}
.mk-filter-section__toggle[data-open="true"] .mk-filter-section__arrow {
    transform: rotate(180deg);
}
.mk-filter-section__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding-bottom: 0;
}
.mk-filter-section__body--open {
    max-height: 600px;
    padding-bottom: 16px;
}

/* ─── Category list (now all links, navigates on click) ─── */
.mk-cat-list { display: flex; flex-direction: column; gap: 0; }

.mk-cat-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 7px 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color .15s;
}
.mk-cat-link:hover { color: var(--mk-dark); }
.mk-cat-link__name {
    font-size: 13px;
    flex: 1;
    text-align: left;
    font-weight: 500;
    color: var(--mk-secondary);
}
.mk-cat-link__count {
    font-size: 11px;
    color: var(--mk-muted);
}
.mk-cat-link--active .mk-cat-link__name {
    font-weight: 700;
    color: var(--mk-dark);
}
.mk-cat-link--active .mk-cat-link__count { color: var(--mk-dark); }

/* Drilled view: parent appears as a strong header above siblings */
.mk-cat-link--parent {
    padding: 9px 0;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--mk-border);
}
.mk-cat-link--parent .mk-cat-link__name { font-weight: 700; color: var(--mk-dark); }

/* Child rows (siblings under the active parent) */
.mk-cat-link--child { padding-left: 0; }
.mk-cat-link--child .mk-cat-link__name { font-weight: 400; }

/* Back link to "all categories" */
.mk-cat-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0 10px;
    text-decoration: none;
    font-size: 12px;
    color: var(--mk-muted);
    font-weight: 500;
}
.mk-cat-back:hover { color: var(--mk-dark); }
.mk-cat-back svg { stroke: currentColor; }

/* ─── Type filter (vertical checkbox-list) ─── */
.mk-type-list { display: flex; flex-direction: column; gap: 0; }
.mk-type-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 7px 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color .15s;
}
.mk-type-row:hover { color: var(--mk-dark); }
.mk-type-row__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}
.mk-type-row__dot--green  { background: #16a34a; }
.mk-type-row__dot--orange { background: #ea580c; }
.mk-type-row__label {
    font-size: 13px;
    flex: 1;
    text-align: left;
    color: var(--mk-secondary);
    font-weight: 500;
}
.mk-type-row--active .mk-type-row__label {
    color: var(--mk-dark);
    font-weight: 700;
}
.mk-type-row__count {
    font-size: 11px;
    color: var(--mk-muted);
}

/* Checkbox */
.mk-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.mk-checkbox--checked {
    border-color: var(--mk-dark);
    background: var(--mk-dark);
}

/* Brand list */
.mk-brand-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.mk-brand-item__name {
    font-size: 13px;
    flex: 1;
    text-align: left;
    color: var(--mk-secondary);
    font-weight: 400;
}
.mk-brand-item--active .mk-brand-item__name {
    color: var(--mk-dark);
    font-weight: 600;
}
.mk-brand-item__count {
    font-size: 11px;
    color: var(--mk-muted);
}

/* ─── Price slider (compact) ───────────────────────── */
.mk-price-slider__values {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mk-dark);
    margin-bottom: 10px;
}
.mk-price-slider__sep { color: var(--mk-muted); font-weight: 400; }
.mk-price-slider__value--max { margin-left: auto; }

.mk-price-slider__track {
    position: relative;
    height: 3px;
    background: #e8e5e0;
    border-radius: 2px;
    margin: 6px 7px 8px;
}
.mk-price-slider__fill {
    position: absolute;
    height: 100%;
    background: var(--mk-dark);
    border-radius: 2px;
}
.mk-price-slider__thumb {
    position: absolute;
    top: -5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--mk-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
    z-index: 2;
    pointer-events: none;
}
.mk-price-slider__input {
    position: absolute;
    width: 100%;
    top: -8px;
    height: 20px;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    margin: 0;
    -webkit-appearance: none;
}

/* Clear all */
.mk-filter-clear-all {
    width: 100%;
    padding: 10px 0;
    margin-top: 10px;
    background: none;
    border: 1px solid var(--mk-border);
    border-radius: 8px;
    font-size: 12px;
    color: var(--mk-secondary);
    cursor: pointer;
    font-family: inherit;
    transition: all .15s;
}
.mk-filter-clear-all:hover {
    background: var(--mk-bg);
}

/* ═══════════════════════════════════════════════════════
   Pagination
   ═══════════════════════════════════════════════════════ */
.mk-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 30px 0 10px;
}
.mk-pagination__btn,
.mk-pagination__num {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--mk-border);
    background: #fff;
    color: var(--mk-secondary);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: all .15s;
}
.mk-pagination__btn:hover,
.mk-pagination__num:hover {
    border-color: var(--mk-dark);
    color: var(--mk-dark);
}
.mk-pagination__num--active {
    background: var(--mk-dark);
    border-color: var(--mk-dark);
    color: #fff;
}
.mk-pagination__num--active:hover {
    color: #fff;
}
.mk-pagination__dots {
    width: 28px;
    text-align: center;
    color: var(--mk-muted);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════
   Mobile Filter Drawer
   ═══════════════════════════════════════════════════════ */
.mk-archive__drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.mk-archive__drawer-overlay.mk-active {
    opacity: 1;
    pointer-events: auto;
}

.mk-archive__drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1250;
    background: #fff;
    border-radius: 16px 16px 0 0;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 30px rgba(0,0,0,.1);
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.32,1,.23,1);
    will-change: transform;
}
.mk-archive__drawer.mk-active {
    transform: translateY(0);
}

.mk-archive__drawer-handle {
    display: flex;
    justify-content: center;
    padding: 10px 0 2px;
}
.mk-archive__drawer-handle div {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
}

.mk-archive__drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 14px;
    border-bottom: 1px solid var(--mk-border);
}
.mk-archive__drawer-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--mk-dark);
}
.mk-archive__drawer-clear {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--mk-muted);
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
}

.mk-archive__drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 4px 20px 0;
    -webkit-overflow-scrolling: touch;
}

.mk-archive__drawer-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--mk-border);
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
}
.mk-archive__drawer-apply {
    width: 100%;
    height: 46px;
    background: var(--mk-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mk-archive__drawer-apply span {
    background: rgba(255,255,255,.2);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .mk-archive__sidebar {
        display: none !important;
    }
    .mk-archive__mobile-bar {
        display: flex !important;
    }
    .mk-archive__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .mk-archive__grid-toggle {
        display: none !important;
    }
    .mk-archive__title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .mk-archive__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .mk-card__image {
        height: 150px;
    }
    .mk-card__body {
        padding: 8px 10px 10px;
    }
    .mk-card__price {
        font-size: 14px;
    }
    .mk-card__action span {
        display: none;
    }
    .mk-card__action {
        width: 32px;
        height: 32px;
        padding: 0;
        justify-content: center;
    }
    .mk-archive__header {
        padding: 16px 5% 12px;
    }
    .mk-archive__title {
        font-size: 22px;
    }
}

