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

@font-face {
    font-family: 'bebas neue';
    src: url('/fonts/BebasNeue-Regular.ttf') format('woff');
}



main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.tilbage-button {
    display: inline-block;
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-top: 20px;
}

.produkt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.produkt-images {
    flex: 1;
    min-width: 300px;
}

.main-produkt-image {
    margin-bottom: 20px;
}

.main-produkt-image img {
    max-width: 100%;
    height: auto;
}

.produkt-thumbnails {
    display: flex;
    gap: 15px;
}

.thumbnail {
    text-align: center;
    background-color: #9C9C9C;
    padding: 10px;
}

.thumbnail img {
    max-width: 100%;
    height: auto;
}

.produkt-details {
    flex: 1;
    min-width: 300px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    color: black;
}

.brand {
    font-weight: bold;
    margin-bottom: 5px;
}

.produkt-name {
    font-size: 32px;
    margin-bottom: 5px;
}

.price {
    margin-bottom: 20px;
}


.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-button {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid #ccc;
    font-size: 20px;
    cursor: pointer;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background-color: #E8B4C2;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

.produkt-description {
    line-height: 1.5;
}

.produkt-description p {
    margin-bottom: 15px;
}




.cart-item {
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #000000;
}

.cart-item-content {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.cart-item-details {
    flex-grow: 1;
}

.remove-item {
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-left: auto;
    padding: 0 5px;
}