.brand-grid-container-bf6d7491 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.brand-categories-bf6d7491 ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.brand-categories-bf6d7491 li a {
    background: #f7f7f7;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.3s;
}
.brand-categories-bf6d7491 li a:hover {
    background: #e0e0e0;
}
.brand-product-grid-bf6d7491 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.brand-product-card-bf6d7491 {
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.3s;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.brand-product-card-bf6d7491:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.brand-product-card-bf6d7491 .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    background: #f9f9f9;
}
.brand-product-card-bf6d7491 .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.product-info-wrapper {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.brand-product-card-bf6d7491 .product-title {
    font-size: 16px;
    margin: 10px 0;
}
.brand-product-card-bf6d7491 .product-title a {
    color: #333;
    text-decoration: none;
}
.brand-product-card-bf6d7491 .product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}
.brand-product-card-bf6d7491 .product-price {
    font-size: 18px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}
.brand-product-card-bf6d7491 .product-button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: auto;
}
.brand-product-card-bf6d7491 .product-button:hover {
    background: #555;
}
.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}
.out-of-stock-badge {
    display: inline-block;
    background: #95a5a6;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    margin-top: auto;
}
.brand-product-card-bf6d7491.out-of-stock {
    opacity: 0.7;
}
