* {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
}

#carouselExampleSlidesOnly {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    position: relative;
}

#carouselExampleSlidesOnly .carousel-item img {
    height: 420px;
    object-fit: cover;
}

#carouselExampleSlidesOnly::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(15, 23, 42, 0.15),
            rgba(15, 23, 42, 0.45)
    );
    pointer-events: none;
}

.card {
    margin-top: 50px;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 6px;
}

.card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
}

.card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.card-price::before {
    font-size: 14px;
    margin-right: 6px;
    opacity: 0.7;
}

.card .btn-primary {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border: none;
    float: right;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
