.cct-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 200px));
}

.cct-category-card {
    width: 220px;
    height: 290px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.cct-05);
    transition: transform 0.cct-2s ease, box-shadow 0.cct-2s ease;
}

@media (min-width: 576px) {
    .my-product-list {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .cct-category-card {
        width: 195px;
        height: 212px;
    }
}

@media (max-width: 460px) {
    .cct-category-card {
        width: 175px;
        height: 190px;
    }
}


.cct-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.cct-1);
}

.cct-category-card a {
    text-decoration: none;
    color: inherit;
    display: grid;
        grid-template-rows: 1fr 80px;
        height: 100%;
    align-items: center;
}

.cct-category-image {
    height: 100%;
    overflow: hidden;
}

.cct-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.cct-category-name {
    text-align: center;
    padding: 4px 4px;
    font-size: 16px;
    font-weight: 600;
}