.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.cat-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px;
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 14px rgba(0,0,0,0.45);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}

/* Section titles */
.home-section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin: 20px 0 5px;
    color: #2b2b2b;
}

.home-section-sub {
    text-align: center;
    font-size: 16px;
    color: #6c6c6c;
    margin-bottom: 40px;
}

.section-title-clean {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 40px auto 30px;
    max-width: 900px;
}

.section-title-clean:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ffb742;
    margin: 12px auto 0;
    border-radius: 3px;
}