#mk-product-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

#mk-product-section::before,
#mk-product-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    z-index: 0;
}

#mk-product-section::before {
    width: 260px;
    height: 260px;
    background: #d32716;
    top: 80px;
    left: -80px;
}

#mk-product-section::after {
    width: 300px;
    height: 300px;
    background: #1f3b73;
    bottom: 40px;
    right: -100px;
}

.mk-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.mk-section-block {
    margin-bottom: 65px;
}

.mk-section-block:last-child {
    margin-bottom: 0;
}

/* Heading */
.mk-heading-wrap {
    margin-bottom: 30px;
}

/* .mk-heading-wrap::before {
    content: "PRODUCT CATEGORY";
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d32716;
    margin-bottom: 10px;
} */

.mk-heading {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #1f3b73;
    text-transform: uppercase;
}

.mk-heading-line {
    width: 100px;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(90deg, #d32716 0%, #ff715f 100%);
}

/* Grid */
.mk-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

/* Card */
.mk-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(223, 228, 236, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
}

.mk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
    border-color: rgba(211, 39, 22, 0.25);
}

/* Badge */
.mk-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(31, 59, 115, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 30px;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 15px rgba(31, 59, 115, 0.18);
}

/* Image */
.mk-img-wrap {
    padding: 22px 22px 0;
}

.mk-img-box {
    height: 90px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
    border: 1px solid #e7ebf1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.mk-img-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(211, 39, 22, 0.08), transparent 40%);
    pointer-events: none;
}

.mk-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.mk-card:hover .mk-img-box img {
    transform: scale(1.1);
}

/* Content */
.mk-content {
    flex-grow: 1;
    padding: 20px 22px 14px;
}

.mk-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    color: #1f3b73;
}

.mk-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5f6b7a;
}

/* Buttons */
.mk-actions {
    display: flex;
    gap: 12px;
    padding: 0 22px 22px;
    margin-top: auto;
}

.mk-btn {
    flex: 1;
    min-height: 46px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Download */
.mk-download {
    background: #f8fafc;
    color: #24324a;
    border: 1px solid #d6dde8;
}

.mk-download:hover {
    background: #eef3f8;
    color: #111827;
    transform: translateY(-2px);
}

/* Enquiry */
.mk-enquiry {
    background: linear-gradient(135deg, #d32716 0%, #b61f10 100%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 8px 18px rgba(211, 39, 22, 0.22);
}

.mk-enquiry:hover {
    background: linear-gradient(135deg, #111111 0%, #2b2b2b 100%);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 1199px) {
    .mk-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mk-img-box {
        /* height: 150px; */
        height: fit-content;
    }
}

@media (max-width: 991px) {
    #mk-product-section {
        padding: 70px 0 85px;
    }

    .mk-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .mk-heading {
        font-size: 28px;
    }

    .mk-img-box {
        /* height: 150px; */
        height: fit-content;
    }
}

@media (max-width: 575px) {
    .mk-container {
        padding: 0 15px;
    }

    .mk-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mk-heading {
        font-size: 24px;
    }

    .mk-img-wrap {
        padding: 18px 18px 0;
    }

    .mk-img-box {
        /* height: 185px; */
        height: fit-content;
    }

    .mk-content {
        padding: 18px 18px 12px;
    }

    .mk-actions {
        flex-direction: column;
        padding: 0 18px 18px;
    }
}

@media (max-width: 432px) {

    .mk-img-box {
        /* height: 130px; */
        height: fit-content;
    }

}

@media (max-width: 375px) {

    .mk-img-box {
        /* height: 110px; */
        height: fit-content;
    }

}


/* page animation */

.mk-section-block {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.mk-section-block.show {
    opacity: 1;
    transform: translateY(0);
}

.mk-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* When visible */
.mk-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay */
.mk-card:nth-child(1) { transition-delay: 0.1s; }
.mk-card:nth-child(2) { transition-delay: 0.2s; }
.mk-card:nth-child(3) { transition-delay: 0.3s; }
.mk-card:nth-child(4) { transition-delay: 0.4s; }

/* page animation */

