body {
    background-color: #BDDDFC;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.rektangel {
    width: 1000px;
    background-color: #384959;
    border-radius: 20px;
    margin: auto;
    margin-top: -700px;
}

.radial-menu {
    position: absolute;
    top: 40px;
    left: 40px;
}

.menu {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.dropdown {
    width: 70px;
    height: 70px;
    background: #384959;
    border-radius: 14px;
    overflow: hidden;
    transition: width 0.4s ease, height 0.4s ease;
}

.dropdown.show {
    width: 230px;
    height: 360px;
}

.menu-btn {
    width: 70px;
    height: 70px;
    font-size: 32px;
    border: none;
    background: #384959;
    color: white;
    cursor: pointer;
}

.menu-links {
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-bottom: 20px;
}

.dropdown.show .menu-links {
    opacity: 1;
}

.menu-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 16px 20px;
    font-size: 18px;
}

.menu-links a:hover {
    background: #4c5f73;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.product {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    background: white;
    border-radius: 12px;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.product button:hover {
    background: #4c5f73;
}

.product button {
    margin-top: 10px;
    padding: 8px;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #384959;
    color: white;
    cursor: pointer;
}

.clear_button {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #384959;
    color: white;
    cursor: pointer;
}

.clear_button:hover {
    background: #4c5f73;
}

#KV-rubrik {
    text-align: center;
    margin-top: 150px;
}

.hero {
    height: 1200px;
    background: url("Bilder/MJ.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 100px;
    background-position: center -300px;
    width: 100%;
}

.hero-logo {
    width: 300px;
}

.products-title {
    color: white;
    text-align: center;
    font-size: 50px;
    margin-top: 150px;
}

.hero h1 {
    font-size: 42px;
    margin: 10px 0;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.hero-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    background: white;
    color: #384959;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #e0e0e0;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rektangel {
        width: 700px;
    }

    .hero {
        background-position: center;
    }

    .omoss .rektangel {
        width: auto;
    }

    .KV .hero {
        height: 5000px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .rektangel {
        width: 350px;
    }

    .omoss .rektangel {
        width: auto;
    }
}

.cirkel {
    background-color: #BDDDFC;
    width: 100%;
    border-radius: 50%;
    height: 1000px;
    z-index: -100;
    margin-top: -400px;
    margin-left: 0%;
    overflow: hidden;
}

.footer {
    background-color: #384959;
    color: white;
    text-align: center;
    justify-content: flex-end;
    padding: 20px;
    margin-top: 215px;
    font-size: 14px;
    border-top: 2px solid #4c5f73;
}

.rektangel h2 {
    margin-top: 20px;
}

.rektangel p {
    margin-top: 10px;
    line-height: 1.6;
}

.cart-container {
    max-width: 600px;
    text-align: center;
    margin: -900px auto 100px auto;
    background: #4c5f73;
    padding: 25px;
    border-radius: 15px;
}

.empty-cart {
    color: white;
    font-size: 18px;
    opacity: 0.8;
    margin-top: 20px;
}

.faq-container {
    max-width: 800px;
    margin: -900px auto 100px auto;
    padding: 20px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: #384959;
}

.faq-item p {
    color: #555;
}

.checkout-container {
    max-width: 600px;
    margin: -900px auto 100px auto;
    padding: 20px;
    background: #4c5f73;
    border-radius: 12px;
}

.checkout-container input {
    width: 96%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.checkout-container button {
    margin-top: 15px;
    padding: 10px;
    width: 100%;
    background: #384959;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.thankyou-container {
    max-width: 600px;
    margin-top: -950px;
    margin-bottom: 650px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.thankyou-container h2 {
    color: #384959;
    margin-bottom: 15px;
}

.thankyou-container p {
    margin: 10px 0;
    color: #555;
}

.thankyou-container button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #384959;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.thankyou-container button:hover {
    background: #4c5f73;
}

.checkout-container h2 {
    color: white;
}

.compare-container {
    max-width: 900px;
    margin: -800px auto 100px auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.compare-card {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 12px;
}

.compare-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.compare-card h3 {
    margin: 10px 0;
    color: #384959;
}

.compare-summary {
    margin-top: 20px;
    padding: 15px;
    background: #e8eef5;
    border-radius: 10px;
}

.compare-selectors {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.compare-selectors select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}