@media only screen and (min-width: 969px) {
    .ktp-tooted-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Desktopis 3 toodet reas */
        gap: 20px;
    }
}

/* Mobiilivaade - 2 toodet reas */
@media only screen and (max-width: 968px) {
    .ktp-tooted-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Mobiilis 2 toodet reas */
        gap: 20px;
    }
}

/* Toodete kaardi stiil */
.ktp-toode-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ktp-toode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Toote link */
.ktp-toode-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.ktp-toode-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Toote pilt */
.ktp-toode-thumbnail img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

/* Toote sisu */
.ktp-toode-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Toote pealkiri */
.ktp-toode-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}