/*
 Theme Name:     Astra Child
 Template:       astra
*/


.manufacturers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.manufacturer-item {
    width: calc(33.333% - 20px);
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.manufacturer-image {
	width: 150px;
	height: 150px;
	text-align: center;
	vertical-align: middle;
	margin: 0 auto;
}

.manufacturer-image img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0px;
}

.manufacturer-details{
	text-align: left;
}

.manufacturer-details h2 {
    font-size: 1.25em;
    margin: 10px 0;
}

.manufacturer-details p {
    font-size: 0.9em;
    color: #666;
}

.woocommerce-loop-category__title mark.count {
    display: block; /* Moves product count below the title */
    font-size: 14px; /* Adjust size */
    font-weight: normal;
    color: #666; /* Lighter text color */
    margin-top: 5px; /* Add spacing */
}

.woocommerce-loop-category__title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.astra-shop-summary-wrap{
    text-align: center;
}
.pa_manufacturer-heading {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between title and image */
}

.pa_manufacturer-title {
    flex: 2;
}

.pa_manufacturer-image {
    flex: 1;
    padding-top: 20px;
}

.pa_manufacturer-image img {
    width: 95%; /* Adjust as needed */
    height: auto;
    border-radius: 8px; /* Optional for rounded corners */
}