/* CSS HOÀN CHỈNH - CHỈ TỐI ƯU ĐIỆN THOẠI 2 CỘT - MÁY TÍNH GIỮ NGUYÊN 100% */

/* PHẦN NÀY GIỮ NGUYÊN Y HỆT NHƯ CODE GỐC */
.category-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.category-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.category-column {
    width: calc((100% / var(--columns)) - 1em);
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
}

.category-column.empty {
    visibility: hidden;
}

.category-column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.category-column h2,
.category-column h3 {
    margin: 0;
    font-size: 18px;
    color: var(--title-color);
    font-weight: 500;
    word-break: break-word;
}

.category-column .category-description {
    font-size: 14px;
    color: #666;
    margin: 8px 0 0;
    line-height: 1.4;
    word-break: break-word;
}

.category-column a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .category-grid-container {
        padding: 5px !important; /* Giảm padding để tận dụng không gian */
    }
    .category-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important; /* Khoảng cách giữa các cột */
        margin: 0 -5px !important; /* Mở rộng ra 2 bên */
    }
    .category-column {
        width: calc(100% - 10px) !important; /* Điều chỉnh chiều rộng */
        margin: 0 5px 10px 5px !important; /* Căn lề 2 bên */
        padding: 8px !important; /* Giảm padding */
    }
    .category-column img {
        height: 120px !important; /* Giảm chiều cao ảnh */
        object-fit: cover !important;
    }
    .category-column h2,
    .category-column h3 {
        font-size: 16px !important; /* Giảm cỡ chữ */
        margin-bottom: 5px !important;
    }
}