@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sniglet:wght@400;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #237461;
    --secondary-color: #1B3E36;
    --black: #161616;
    --white:#f2f2f2;
    --font: "Work Sans", serif;
    --headline: "Sniglet", serif;
}

body {
    font-family: var(--font);
}


.pilsner {
    color: var(--primary-color);
}

.spikyginger {
    color: #C1A266;
}

.pinkypromise {
    color: #583032;
}

p {
    width: 50%;
    text-align:left;
    line-height: 1.3;
}

.related-products img:hover {
    transform: scale(1.1); /* Zoom in effect */
  }

.related-products  img {
    transition: transform 0.3s ease-in-out;
  }



header ul li, .logo, header .icon:not(:last-child), .kurv {
    filter: invert(100%);
}

header input {
    border: 1px solid var(--black);
}

.produkt {
    margin-top: 0;
    padding-top: 10vh;
    height: auto;
    width: 100%;
    display: flex;
}

.beskrivelse {
    width: 50%;
    color: var(--black);
    font-family: var(--font);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.beskrivelse h1 {
    font-family: var(--font);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.beskrivelse h3 {
    font-weight: 400;
}

.daaser {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.daase img {
    height: 60vh;
    width: auto;
    margin-top: -20px;
}

.antal {
    width: 20%;
    border-radius: 20px;
    color: var(--white);
}

.knap {
    width: 50%;
    background-color: var(--primary-color);
    border-style: none;
    height: 50px;
    border-radius: 20px;
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font);
    font-weight: 500;
    cursor: pointer;
}

.beskrivelse h1, .beskrivelse h3, .beskrivelse .antal, .mobile-pay, .knap, p {
    margin-bottom: 1.3rem;
}

.tallet1 {
    text-align: center;
}

.relaterede {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 50px;
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 500;
}

.relateret {
    display: flex;
    background: var(--white);
    width: 400px;
    height: 400px;
    justify-content: center;
    align-items: center;
}

.relateret img {
    width: auto;
    height: 80%;
}

.java {
    background: none;
    border-style: none;
    width: 100%;
}

.dropbtn {
    display: none;
}

.sortiment-tekst {
    display: none;
}

.card{
    position: fixed;
    top:0;
    left: 100%;
    width: 500px;
    background-color: var(--white);
    height: 100vh;
    transition: 0.5s;
}
.active .card{
    left: calc(100% - 500px);
    z-index: 2000;
}
.active .box{
   transform: translateX(-200px);
}
.card h1{
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
}
.card .checkOut{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}
.card .checkOut section{
    background-color: var(--primary-color);
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    color: var(--white);
    font-size: 1.4rem;
}
.card .checkOut section:nth-child(2){
    background-color: var(--secondary-color);
    color: #fff;
}
.listCard li{
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    color: var(--secondary-color);
    row-gap: 10px;
}
.listCard li section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.listCard li img{
    width: 90%;
}
.listCard li button{
    background-color: var(--white);
    border: none;
    font-size: 1.3rem;
}
.listCard .count{
    margin: 0 10px;
    font-size: 1.5rem;
    font-weight: 300;
}

.list {
    grid-template-columns: repeat(1, 1fr);
}

.list .item .daase img {
    width: auto;
    height: 60vh;
    object-fit: cover;
}

.list .item button {
    width: 20rem;
}
.daase {
    width: auto;
    margin: 0;
    width: 70%;
}

.list .item a .mobile-pay {
    background: white;
    border: 3px solid #5a78ff;
    object-fit: cover;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list .item a .mobile-pay img {
    width: auto;
    height: 80%;
}

.related-products {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10%;
}
