.section-category02 {
    padding: 60px 0;
    background: #F8F5F2;
    /* Semi-bg from image */
}

.section-category02 .category02-title {
    position: relative;
    z-index: 1;
}

.category02-header {
    text-align: left;
    margin-bottom: 40px;
}

.category02-title {
    font-size: 25px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    text-transform: capitalize;
    padding-bottom: 5px;
    display: inline-block;
}

.category02-title span {
    color: #A52A2A;
    /* Deep red color from "Nổi Bật" */
}

.category02-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.category02-slider .slick-list {
    margin: 0 -10px;
}

.category02-item {
    padding: 10px;
    height: 100%;
}

.category02-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.category02-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.category02-image {
    width: 100%;

    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category02-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
    transition: transform 0.5s ease;
    border-radius: 5px;
}

.category02-card:hover .category02-image img {
    transform: scale(1.05);
}

.category02-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Added for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    
    /* Fixed height for 2 lines */
}

.category02-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category02-name a:hover {
    color: #A52A2A;
}
.category02-title:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--bv-primary);
    bottom: 0;
}
/* Media Queries */
@media (max-width: 1200px) {
    .category02-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .section-category02 {
        padding: 40px 0;
    }

    .category02-header {
        text-align: center;
        margin-bottom: 10px;
    }

    .category02-title {
        font-size: 24px;
    }

    .category02-desc {
        font-size: 14px;
    }

    .category02-card {
        padding: 15px 10px;
    }

    .category02-name {
        font-size: 13px;
        height: 36px;
    }
}