.mk-sales {
    margin: 2rem 0;
}

.mk-sales__heading {
    margin-bottom: 1.25rem;
}

.mk-sales__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.mk-sales__card {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .06);
}

.mk-sales__image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f3f3;
}

.mk-sales__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f4f4f4;
}

.mk-sales__image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.mk-sales__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .78);
    color: #fff;
    font-size: .78rem;
    line-height: 1;
}

.mk-sales__body {
    padding: 1rem;
}

.mk-sales__title {
    margin: 0 0 .65rem;
    font-size: 1.05rem;
    line-height: 1.3;
}

.mk-sales__title a {
    color: inherit;
    text-decoration: none;
}

.mk-sales__price {
    margin-bottom: .4rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.mk-sales__price-label {
    display: block;
    margin-bottom: .1rem;
    font-size: .75rem;
    font-weight: 400;
    opacity: .7;
}

.mk-sales__meta {
    margin-top: .2rem;
    font-size: .88rem;
    opacity: .72;
}

.mk-sales__button {
    display: inline-block;
    margin-top: .9rem;
    padding: .7rem 1rem;
    border-radius: 8px;
    background: #111;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
}

.mk-sales__button:hover {
    opacity: .88;
}

.mk-sales__admin-error {
    margin-bottom: 1rem;
    padding: .85rem 1rem;
    border-left: 4px solid #b32d2e;
    background: #fff2f2;
}

.mk-sales__empty {
    opacity: .75;
}

@media (max-width: 1200px) {
    .mk-sales__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

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

@media (max-width: 600px) {
    .mk-sales__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 380px) {
    .mk-sales__grid {
        grid-template-columns: 1fr;
    }
}
