﻿
    .product-slider
{
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-slider {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-card {
    flex: 0 0 auto;
    width: 250px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    margin-top: 5px;
    margin-left: 10px;
}

    .product-card:hover {
        transform: scale(1.05) rotate(-1deg);
        box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }

    .product-card .icon {
        font-size: 32px;
        color: #005b96;
        margin-bottom: 10px;
    }

.product-card {
    width: 250px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

    .product-card:hover {
        transform: scale(1.07) rotate(-1deg);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .product-card .icon {
        font-size: 36px;
        color: #005b96;
        margin-bottom: 10px;
    }



