/* Category Products Display Styles */
.cpd-categories-container {
    padding: 20px 0;
}

.cpd-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
}

.cpd-category-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cpd-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cpd-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.cpd-category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.cpd-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpd-category-title {
    font-size: 18px;
    margin: 15px;
    color: #333;
}

.cpd-category-count {
    margin: 0 15px 15px;
    color: #777;
    font-size: 14px;
}

/* Products Page Styles */
.cpd-products-page {
    padding: 40px 20px;
}

.cpd-page-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.cpd-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.cpd-product-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cpd-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cpd-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.cpd-product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.cpd-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpd-product-title {
    font-size: 16px;
    margin: 15px;
    color: #333;
}

.cpd-product-price {
    margin: 0 15px 15px;
    color: #2c7a3e;
    font-weight: bold;
    font-size: 18px;
}

.cpd-stars {
    display: flex;
    gap: 3px;
    padding-left: 10px!important;
}