/* Siraj Mode Sections Manager */

.smsm-categories-section {
    width: 100%;
    background: #fff;
    padding: 70px 20px;
    box-sizing: border-box;
}

.smsm-container {
    max-width: 1320px;
    margin: 0 auto;
}

.smsm-section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.smsm-section-heading h2 {
    margin: 0;
    color: #111;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.smsm-section-heading p {
    margin: 12px auto 0;
    max-width: 620px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.smsm-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.smsm-category-card {
    position: relative;
    display: block;
    height: 440px;
    overflow: hidden;
    border-radius: 15px;
    background: #111;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    transform: translateY(0);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.smsm-category-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.75s ease;
}

.smsm-category-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.68), rgba(0,0,0,0.14)), rgba(0,0,0,0.10);
    transition: background 0.45s ease;
}

.smsm-category-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
    transition: transform 0.45s ease;
}

.smsm-category-content h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.smsm-category-content span {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    transition: color 0.35s ease, transform 0.35s ease;
}

.smsm-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

.smsm-category-card:hover img {
    transform: scale(1.08);
}

.smsm-category-card:hover .smsm-category-content {
    transform: translateY(-10px);
}

.smsm-category-card:hover .smsm-category-content span {
    color: #C8A165;
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .smsm-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .smsm-category-card {
        height: 410px;
    }
}

@media (max-width: 640px) {
    .smsm-categories-section {
        padding: 48px 15px;
    }

    .smsm-section-heading {
        margin-bottom: 26px;
    }

    .smsm-categories-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .smsm-category-card {
        height: 390px;
    }

    .smsm-category-content {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }

    .smsm-category-content h3 {
        font-size: 25px;
    }
}
