.ecomax-cat {
    padding: 30px 15px;
}

.ecomax-cat-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ecomax-breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
}

.ecomax-cat-desc-top {
    border: 2px dashed orange;
    padding: 15px;
    margin: 15px 0 30px;
    background: #fffef9;
    font-size: 16px;
    line-height: 1.6;
}

.ecomax-product-grid ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    list-style: none;
    padding-left: 0;
}

/* Mô tả SEO dài */
.ecomax-cat-desc-bottom {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.6;
}

.ecomax-cat-desc-bottom.collapsed .ecomax-desc-content {
    max-height: 180px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.ecomax-cat-desc-bottom.expanded .ecomax-desc-content {
    max-height: none;
    mask-image: none;
}

.ecomax-readmore-toggle {
    margin-top: 10px;
    background: #005eb8;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.ecomax-readmore-toggle:hover {
    background: #003c82;
}

/* Responsive */
@media (max-width: 768px) {
    .ecomax-cat-title {
        font-size: 24px;
    }

    .ecomax-product-grid ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ecomax-product-grid ul.products {
        grid-template-columns: 1fr;
    }
}
