/**
 * WooCommerce Product Category Template Styling
 */

.woocommerce-product-category-container {
    margin: 0 auto !important;
    width: 100%;
    background-color: #ffffff;
    padding-bottom: 60px;
}

.ast-container .woocommerce-product-category-container,
.ast-container.woocommerce-product-category-container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Override Astra theme's container padding */
.site-content .ast-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    background-color: #ffffff;
}

.woocommerce-product-category-header {
    position: relative;
    background-color: #17469e;
    color: #fff;
    padding: 80px 0px 80px 0px;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.woocommerce-product-category-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
}

.woocommerce-product-category-content-wrap {
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-product-category-description {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.woocommerce-product-category-products {
    margin-top: 40px;
    margin-bottom: 40px;
}

.woocommerce-product-category-products h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #0c0c0c;
    text-align: left;
}

.woocommerce-product-category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.woocommerce-product-category-product-item {
    background-color: #2557D6;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-product-category-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.woocommerce-product-category-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-product-category-product-title {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
}

.woocommerce-product-category-pagination {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.woocommerce-product-category-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #1a4ca2;
}

.woocommerce-product-category-pagination .page-numbers.current {
    background-color: #1a4ca2;
    color: #fff;
    border-color: #1a4ca2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .woocommerce-product-category-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .woocommerce-product-category-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .woocommerce-product-category-header {
        padding: 60px 0;
    }
    
    .woocommerce-product-category-title {
        font-size: 32px;
    }
    
    .woocommerce-product-category-container {
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .woocommerce-product-category-header {
        padding: 40px 0;
    }
    
    .woocommerce-product-category-title {
        font-size: 28px;
    }
    
    .woocommerce-product-category-content-wrap {
        padding: 0 15px;
        margin-bottom: 50px;
    }
    
    .woocommerce-product-category-product-title {
        font-size: 16px;
    }
    
    .woocommerce-product-category-product-item {
        min-height: 150px;
    }
    
    .woocommerce-product-category-product-link {
        padding: 30px 15px;
    }
    
    .woocommerce-product-category-container {
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .woocommerce-product-category-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .woocommerce-product-category-container {
        padding-bottom: 30px;
    }
} 