/**
 * Product Brand Styling
 * Displays manufacturer/brand name above product title
 * 
 * Version: 1.0.1
 * - Clean, minimal design
 * - Positioned above product title
 * - Responsive for all devices
 */

/* Main brand container */
.product-brand {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Archive/shop pages - ensure proper spacing */
.woocommerce ul.products li.product .product-brand,
.woocommerce-page ul.products li.product .product-brand {
    margin-top: 10px;
    margin-bottom: 8px;
}

/* Hover effect */
.product-brand:hover {
    color: #333;
}

/* Link styling if needed */
.product-brand a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-brand a:hover {
    color: #000;
}

/* Single product page */
.single-product .product-brand {
    font-size: 14px;
    margin-bottom: 10px;
    color: #777;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .product-brand {
        font-size: 11px;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .product-brand {
        font-size: 10px;
        margin-bottom: 3px;
        letter-spacing: 0.3px;
    }
}

/* Ensure brand doesn't interfere with lazy loading */
.lazy-loading-skeleton .product-brand,
.loading .product-brand {
    opacity: 0;
    visibility: hidden;
}

.loaded .product-brand {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: black;
}

/* Breakdance builder compatibility */
[data-breakdance-iframe] .product-brand {
    display: block;
}

/* Ensure proper stacking order */
.product-brand {
    position: relative;
    z-index: 1;
}
