/* Container Row Customization */
.category-grid {
    margin-top: 20px;
}

/* Category Card Styling */
.category-card {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #fff;
    padding: 16px 10px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Image Styling */
.cate-thumb img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 12px auto;
    display: block;
}

/* Category Title Styling */
.cat-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cate-thumb img {
        max-width: 100px;
        height: 100px;
    }

    .cat-title {
        font-size: 14px;
    }
}
