.fixed-card {
    width: 100%;
    min-height: 100%;
    max-width: 300px;
    margin: 0 4px;
    border-radius: 8px;
}

.fixed-image {
    height: 180px;
    width: 100%;
}

.product-card-body {
    padding: 1rem;
    min-height: 135px;
}

.card-img-top {
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

.paint-name {
    font-size: 1.45rem;
    font-weight: 600;
    color: #000;
}

.brand-name {
    font-size: 1.55rem;
    font-weight: 500;
    color: #000;
}
.color-code-name {
    font-size: 1.2rem !important;
    font-weight: 500;
    color: #000;
}
.size-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
}
.price-name {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
}
.stock-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
}

.hover-effect {
    transition: transform 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.no-results-img {
    width: 200px;
}

.no-results-text {
    font-size: 1.5rem;
    color: #666;
    margin-top: 10px;
    font-weight: bold;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 576px) and (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}