/* Container for brands in single product */
.product-brands-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    text-align: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Styling for individual brand */
.product-brand {
    flex: 1;
    text-align: center;
}

.product-brand img {
    max-width: 100px;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

.product-brand a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.product-brand a:hover {
    color: #0073aa; /* WooCommerce primary color */
}

/* Styling for brand description on archive page */
.brand-description {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}
