
.container.product-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    position: relative;
    /* width: 320px; */
    border-radius: 12px;
}

.image-wrapper {
    display: block;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.product-detail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    background: #fff;
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 12px 12px 0 0;
    /* box-shadow: 0px 4px 10px #8080804a; */
    text-align: center;
    /* width: 95%; */
    margin: 0 auto;
    transition: all 500ms ease;
}

.product-card:hover .product-detail{
    transform: translateY(0%);
    /* margin-bottom: 2.5%; */
}

.product-title {
    margin: 0 0 .5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

.product-desc {
    margin: 0 0 .75rem;
    font-size: .95rem;
    line-height: 1.4;
    color: #555;
}

.product-detail button {
    background: #0c54a0;
    color: #fff;
    border: none;
    padding: .55rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.product-detail button:hover {
    background: #003f83;
    color: white;
}

@media (max-width: 768px){

    .product-detail{
        
    }

}