.product-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-card img {
    width: 100%;
    height: auto;
}
.product-card .card-body {
    padding: 15px;
}
.product-card .card-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}
.product-card .card-text {
    margin-bottom: 10px;
    color: #666;
}
.product-card .price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}
.product-card .btn {
    margin-top: 10px;
}


.brand-logo {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    height: auto;
}
.brand-name {
    text-align: center;
    margin-top: 10px;
}