/* Product List Page Styles */

.content-box {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
}

.content-box a:hover {
    text-decoration: none;
}

.product-card-image {
    object-fit: cover;
    height: 220px;
}

.product-card-title {
    overflow: visible;
    font-size: 1.25rem;
}

.product-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-card-price {
    color: rgb(0, 192, 255);
    font-weight: 700;
}
