body { 
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("../bilder/aik_wallpaper_windows_7_by_antonnaslund_d5y82gl-fullview.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.header {
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
}

.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.menu a {
    color: rgb(255, 238, 0);
    text-decoration: none;
    margin: 8px 12px;
    font-weight: bold;
}

.Välkommen {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: rgb(255, 238, 0);
    padding: 20px;
    text-align: center;
}

.bilder-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bilder-container img {
    width: 70px;
}

.section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.produkt-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:40px;
    justify-items:center;
    align-items:center;
    max-width:1000px;
    margin:0 auto;
}

.produkt{
    background: rgba(0,0,0,0.85);
    padding:15px;
    border-radius:12px;
    text-align:center;
    width:100%;
    max-width:200px;
    transition: transform 0.2s;
}

.logo-center{
    display:flex;
    justify-content:center;
}

.logo-center img{
    width:300px;
}

.produkt:hover {
    transform: scale(1.05);
}

.produkt img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.produkt button {
    width: 100%;
    padding: 8px;
    background: rgb(255,238,0);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.produkt-beskrivning {
    color: white;
    font-size: 14px;
}

.checkout-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.cart-box,
.form-box {
    flex: 1 1 300px;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 25px;
    border-radius: 15px;
}

.form-box input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    border: none;
}

.form-box button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background: rgb(255,238,0);
    border: none;
    border-radius: 6px;
    font-weight: bold;
}

.cart-item {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid rgb(255,238,0);
}

.clear-btn {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background: black;
    border: 2px solid rgb(255,238,0);
    color: rgb(255,238,0);
}

@media (max-width: 1024px){
    .produkt-grid{
        grid-template-columns: repeat(2, 1fr);
        gap:30px;
    }

    .logo-center img{
        width:220px;
    }
}

@media (max-width: 600px){
    .produkt-grid{
        grid-template-columns: 1fr;
        gap:20px;
    }

    .produkt{
        max-width:100%;
    }

    .logo-center img{
        width:150px;
    }
}