/* MK Products showcase */
.mk-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.mk-product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: start;
    gap: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 253, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(27, 36, 48, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mk-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 110, 176, 0.28);
    box-shadow: 0 18px 36px rgba(27, 36, 48, 0.1);
}

.mk-product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #E8F0F9 0%, #D6E4F4 100%);
    box-shadow: inset 0 0 0 1px rgba(57, 110, 176, 0.08);
}

.mk-product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

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

.mk-product-icon {
    width: 72%;
    height: 72%;
    max-width: 132px;
    max-height: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(145deg, #396EB0, #5B8FC9);
    color: #fff;
    font-size: clamp(28px, 18%, 42px);
    box-shadow: 0 10px 24px rgba(57, 110, 176, 0.28);
}

.mk-product-category {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #E8F0F9;
    color: #396EB0;
    font-size: 11px;
    font-weight: 700;
}

.mk-product-body h3 {
    margin: 0 0 4px;
    color: #1B3A5F;
    font-size: 24px;
    font-weight: 700;
}

.mk-product-tagline {
    margin: 0 0 10px;
    color: #396EB0;
    font-size: 15px;
    font-weight: 600;
}

.mk-product-desc {
    margin: 0 0 14px;
    color: #6B7C93;
    font-size: 15px;
    line-height: 1.7;
}

.mk-product-editions {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.mk-product-editions li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #1B3A5F;
    font-size: 14px;
    font-weight: 500;
}

.mk-product-editions i {
    margin-top: 3px;
    color: #396EB0;
}

.mk-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.mk-product-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(201, 176, 140, 0.18);
    color: #8A6D3B;
    font-size: 12px;
    font-weight: 600;
}

.mk-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mk-product-modal {
    border: 0;
    border-radius: 18px;
}

.mk-product-modal .modal-title {
    color: #1B3A5F;
    font-weight: 700;
}

@media (max-width: 767px) {
    .mk-product-card {
        grid-template-columns: 1fr;
    }

    .mk-product-media {
        max-width: 280px;
        margin: 0 auto;
    }

    .mk-product-actions {
        flex-direction: column;
    }

    .mk-product-actions .mk-btn {
        width: 100%;
        text-align: center;
    }
}
