.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #12a1cd;
    color: rgb(255, 255, 255);
    position: relative;
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

#nav-menu {
    display: flex;
    gap: 25px;
}

#nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

#nav-menu a:hover {
    color: orange;
}

/* Telefon */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    #nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #222;
        width: 200px;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    #nav-menu.show {
        display: flex;
    }
}
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.product-card {
    text-decoration: none;
    color: black;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    text-align: center;
    padding: 15px;
    font-size: 22px;
}

/* Tablet */
@media (max-width: 992px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telefon */
@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 180px;
    }

    .product-card h3 {
        font-size: 18px;
    }
}