.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

.slider .carousel-item {
    position: relative;
}

.slider .carousel-item > img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.slider .carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 12%;
    text-align: left;
}

.slider-content {
    max-width: 780px;
    padding: 35px;
}

.slider-content h1,
.slider-content h2 {
    font-weight: 400 !important;
}

.slider-description {
    font-size: 16px;
}

@media (max-width: 767.98px) {

    .slider .carousel-item > img {
        height: 320px;
        object-fit: cover;
    }

    .slider .carousel-caption {
        left: 10%;
        right: 10%;
        bottom: 8%;
        padding: 0;
    }

    .slider-content {
        max-width: 100%;
        padding: 15px 18px;
    }

    .slider-content p.small {
        font-size: 10px;
        margin-bottom: 5px !important;
    }

    .slider-content h1,
    .slider-content h2 {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 10px !important;
    }

    .slider-description {
        display: none;
    }

    .slider-content .btn {
        font-size: 13px;
        padding: 8px 14px !important;
    }

}
@media (max-width: 575.98px) {

    .slider .carousel-item > img {
        height: 230px;
    }

    .slider .carousel-caption {
        left: 8%;
        right: 8%;
        bottom: 7%;
    }

    .slider-content {
        padding: 12px 15px;
    }

    .slider-content h1,
    .slider-content h2 {
        font-size: 21px;
        line-height: 1.1;
    }

    .slider-content p.small {
        font-size: 9px;
    }

    .slider-content .btn {
        font-size: 12px;
        padding: 7px 12px !important;
    }

}