.kit-carousel {
    width: 100%;
    max-width: 620px;
    margin: 20px auto;
    position: relative;
}

.kit-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 18px;
    padding: 10px 0 20px;
    scrollbar-width: none;
}

.kit-slider::-webkit-scrollbar {
    display: none;
}

.kit-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-sizing: border-box;
}

.kit-slide img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
}

.kit-slide h3 {
    margin: 10px 0 4px;
    font-size: 22px;
    color: #252b8f;
}

.kit-slide p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.kit-grid-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    margin: 20px 0;
}

.kit-grid-items img {
    height: 160px;
    width: 100%;
    object-fit: contain;
}

.kit-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.kit-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: #ccc;
    cursor: pointer;
}

.kit-dots button.active,
.kit-dots button:hover {
    background: #29c76f;
}

@media (max-width: 768px) {
    .kit-carousel {
        max-width: 70%;
    }

    .kit-slide {
        padding: 1px;
    }
    .kit-slider {
    gap:0;
    }
    .kit-slide img {
        max-width:80%;
        height: 250px;
    }

    .kit-slide h3 {
        font-size: 19px;
    }

    .kit-grid-items {
        grid-template-columns: repeat(3, 1fr);
        gap:4px;
    }

    .kit-grid-items img {
        max-width:100%;
        height: 150px;
    }
}