﻿

.product-card {
    border: 1px solid #ddd;
    transition: transform 0.4s, box-shadow 0.4s;
    text-align: center;
    padding: 20px 10px;
    background: #fff;
    border-radius: 0px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-height: 250px;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
    max-width: 100%;
}

.product-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #093F61;
    text-transform: uppercase;
    margin: 0;
}

a.text-decoration-none:hover h5 {
    color: #0056b3;
}

.modal-body p {
    font-size: 14px;
}

.modal-body ul {
    padding-left: 20px;
}

