.tax-product_cat .category-page {
    padding: 40px 0;
    background-color: #fff;
}

.tax-product_cat .category-header {
    text-align: center;
    margin-bottom: 40px;
}

.tax-product_cat .category-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tax-product_cat .category-description {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.tax-product_cat .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.tax-product_cat .product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tax-product_cat .product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.tax-product_cat .product-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.tax-product_cat .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    max-height: 300px;
}

.tax-product_cat .product-info {
    padding-bottom: 20px;
    text-align: center;
    background: #fff;
}

.tax-product_cat .product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.tax-product_cat .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 1;
    width: fit-content;
}

.tax-product_cat .price {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.tax-product_cat .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.tax-product_cat .discounted-price {
    color: #ff4444;
    font-size: 1.1em;
}

.tax-product_cat .regular-price {
    color: #333;
    font-size: 1.1em;
}

.tax-product_cat .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.tax-product_cat .rating {
    color: #ffd700;
    margin: 5px 0;
}

.tax-product_cat .rating .fas.fa-star {
    color: #ffd700;
}

.tax-product_cat .rating .fas.fa-star-o {
    color: #ccc;
}

/* Tablet */
@media (max-width: 991px) {
    .tax-product_cat .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .tax-product_cat .products-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-product_cat .products-grid {
        gap: 20px;
    }
} 

.tax-product_cat .star-rating .star{
    color: #ffa500;
    font-size: 22px;
}

