.core-product-image .overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 63, 92, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.core-product-image:hover .overlay{
    transform: translateY(0);
}

.core-product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: var(--off-white);
}

.core-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .core-product-image img {
    transform: scale(1.1);
}

.core-product-image .overlay h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white !important;
}

.core-product-image .overlay p{
    margin-top: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
}