/* Style for AJAX Category Product Display */
.acpd-wrapper {
    display: flex;
    gap: 20px;
}
.acpd-categories {
    width: 200px;
    border: 1px solid #ccc;
}
.acpd-category {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.acpd-category.active {
    background-color: #E06100;
    color: white;
    font-weight: bold;
}
.acpd-products {
    flex: 1;
}
.acpd-loading {
    font-style: italic;
}
.acpd-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.acpd-product {
    width: calc(25% - 15px);
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
}
.acpd-product h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #E06100;
    font-size: 16px;
}
