body {
    font-family: sans-serif;
    margin: 0;
}

.container {
    width: 900px;
    max-width: 90vw;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-weight: bold;
    font-style: italic;
}

.nav-links a {
    text-decoration: none;
    color: #000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-toggle {
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.kurv {
    height: 25px;
    width: auto;
}

.icon-cart {
    position: relative;
}

.icon-cart span {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


.mobile-nav, .mobile-burger, .burger-menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .main-header {
        display: none;
    }

    .mobile-nav {
        position: sticky;
        top: 0;
        z-index: 3000;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        padding: 10px 20px;
        background-color: transparent;
    }
    .mobile-nav .search-toggle {
        justify-self: start;
    }

    .mobile-nav .mobile-logo {
        height: 30px;
        width: auto;
        justify-self: center;
    }
    .mobile-nav .icon-cart {
        justify-self: end;
        position: relative;
    }

    .mobile-nav .icon-cart span {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 18px;
        height: 18px;
        background: red;
        color: white;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

    .mobile-burger {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: transparent;
        border-radius: 50%;
        padding: 10px;
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .burger-menu.show {
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
    }

    .burger-menu nav a {
        color: white;
        font-weight: bold;
        font-style: italic;
        font-size: 18px;
        text-decoration: none;
        margin: 15px 0;
    }

    #closeBurger {
        position: absolute;
        top: 20px;
        right: 30px;
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
}

.search-bar {
    display: none;
    width: 100%;
    padding: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.search-bar.show {
    display: block;
    animation: fadeDown 0.3s ease forwards;
}

.search-bar input {
    width: 95%;
    padding: 10px;
    border: 2px solid #f8c6d8;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.search-results {
    position: absolute;
    background: white;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 99;
    border-top: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.search-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-item:hover {
    background-color: #f9f9f9;
}

.search-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.search-item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .search-bar {
        width: 80%;
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
    }

    .search-results {
        width: 80%;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.listProduct {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
}

.listProduct .item {
    background: linear-gradient(to bottom, white, #f3b6c4);
    padding: 20px;
    border-radius: 25px;
    margin: 30px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #f8c6d8;
    max-width: 80%;
    justify-self: center;
    width: 80%;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 10px;
}

.top-row .product-title {
    margin: 0;
    font-size: 18px;
}

.top-row .badge {
    width: 100px;
    height: auto;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 22px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    margin: 0 0 10px 10px;
}

.image-wrapper {
    position: relative;
    margin-top: 0;
}

.image-wrapper img.product {
    width: 90%;
    filter: drop-shadow(0 50px 20px #0009);
}

.image-wrapper .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 80px;
    transform: translate(10%, -10%);
}

.description {
    font-size: 14px;
    color: #444;
    margin: 10px 0;
    font-style: italic;
    font-weight: bolder;
    text-transform: uppercase;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.button-group button {
    flex: 1;
    background-color: #353432;
    color: #eee;
    padding: 8px 10px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.button-group button:hover {
    background-color: #555;
}

.cartTab {
    width: 400px;
    background-color: #353432;
    color: #eee;
    position: fixed;
    inset: 0 -400px 0 auto;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: transform .5s;
    margin-top: 50px;
    z-index: 2000;
}

body.showCart .cartTab {
    inset: 0 0 0 auto;
}

.cartTab h1 {
    padding: 20px;
    margin: 0;
    font-weight: 300;
}

.cartTab .btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cartTab .btn button {
    background-color: #e8bc0e;
    border: none;
    font-family: Inter, sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.cartTab .btn .close {
    background-color: #eee;
}

.cartTab .listCart {
    overflow: auto;
}

.cartTab .listCart::-webkit-scrollbar {
    width: 0;
}

.cartTab .listCart .item {
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.cartTab .listCart .item img {
    width: 100%;
    margin-left: 10px;
}
.listCart .quantity span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    color: #555;
    border-radius: 50%;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2) {
    background-color: transparent;
    color: #eee;
}
.listCart .item:nth-child(even) {
    background-color: #eee1;
}

.mobile-burger-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.burger-icon {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.burger-menu {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 100vw;
    height: 100vh;
    background-image: url("burger-menu-2.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    z-index: 9999;
    pointer-events: none;
}

.burger-menu.show {
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

.burger-menu button#closeBurger {
    position: absolute;
    right: 30px;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    background-color: #1d1d1b;
    border-radius: 5px;
    margin-right: 100px;
    padding: 5px 15px;
}

.burger-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20%;
    z-index: 10000;
    margin-bottom: 50px;
}

.burger-menu nav a {
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 34px;
    text-decoration: none;
    background-color: #1d1d1b;
}

.burger-menu nav a:hover {
    background-color: #444;
    transition: background-color 0.2s ease;
}

@media screen and (min-width: 769px) {
    .mobile-burger-wrapper {
        display: none;
    }
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: auto;
    background: linear-gradient(to bottom, #fde7ef 0%, #ffffff 30%);
    z-index: 1;
}

.product-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.main-image-wrapper {
    width: 300px;
    height: 300px;
    background-color: #fce5ed;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #ffffff;
}

.main-image-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumbnail-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fde4ec;
    padding: 5px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.thumb:hover,
.thumb.active {
    transform: scale(1.1);
    border: 3px solid black;
}

.product-content {
    width: 100%;
    text-align: left;
    margin-top: 30px;
}

.product-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1.1;
    transform: rotate(-5deg);
    display: inline-block;
    margin-left: -40px;
}

.volume{
    display: block;
    text-align: right;
    margin-right: -40px;
    font-size: 36px;
}

.product-heading span {
    display: block;
    text-align: right;
    font-size: 26px;
    font-style: italic;
}

.product-price {
    font-weight: bold;
    font-size: 20px;
    margin: 10px 0 5px;
    text-align: center;
}

.product-subtitle {
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.product-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-details li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 10px;
}

.product-details li::before {
    content: "•";
    color: #333;
    position: absolute;
    left: 0;
}

.addCart {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.addCart:hover {
    background-color: #333;
}
.add-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.add-section .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-section select {
    padding: 8px 14px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.add-section .addCart {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    width: 100%;
}

.product-info-row .info-label {
    font-weight: bold;
    font-style: italic;
    font-size: 18px;
}

.product-info-row .highlight {
    font-weight: bold;
    font-style: italic;
}

.product-info-row select {
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #f9f9f9 url('data:image/svg+xml;charset=US-ASCII,<svg width="24" height="24" viewBox="0 0 24 24" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 5px center;
    background-size: 18px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 120px;
    text-align-last: center;
}

.collapsible-section {
    margin-top: 30px;
    width: 100%;
}

.collapsible {
    background: none;
    color: black;
    cursor: pointer;
    padding: 12px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.collapsible .toggle {
    font-weight: normal;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.collapsible.open .toggle {
    transform: rotate(45deg);
}

.collapsible-section .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 14px;
    padding: 0 5px;
    color: #333;
}

.collapsible-section .content.open {
    max-height: 200px;
    padding: 10px 0;
}

/* === REVIEW CAROUSEL === */
.product-description {
    text-align: center;
    max-width: 90%;
    margin: 20px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.product-description .intro {
    margin-bottom: 10px;
}

.bullet-details {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

.bullet-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.bullet-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.review-carousel {
    overflow: hidden;
    margin: 40px auto;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 10px;
}

.review-carousel::-webkit-scrollbar {
    display: none;
}

.review-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    padding: 10px;
    width: max-content;
}

.review {
    width: 280px;
    height: 280px;
    padding: 20px;
    box-sizing: border-box;
    background: #f7f7f7;
    border-radius: 20px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: center;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-header .avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background-size: cover;
    background: #ddd center;
}

.review-header .name {
    font-size: 18px;
    padding-left: 15px;
}

.review .stars {
    font-size: 16px;
    margin-left: 40px;
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    margin-top: 20px;
}
.review-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.review-buttons button {
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.review-buttons button:hover {
    background-color: #333;
}
.section-video{
    background: white;
    text-align: center;
}

.headline-primary{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 38px;
    line-height: 1.1;
    margin: 10px 0;
}

.headline-primary .top{
    display: block;
    transform: rotate(-5deg) translateX(-10px);
    margin-top: 40px;
}

.headline-primary .bottom{
    display: block;
    transform: rotate(-5deg);
    margin-top: 5px;
    margin-bottom: 50px;

}
.section-video video{
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    object-fit: cover;
}

.btn-knap{
    display: inline-block;
    margin-top: 50px;
    background-color: #000;
    color: #fff;
    padding: 12px 94px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.btn-knap:hover{
    background-color: #333333;
}
.pictureFindOsHer{
    width: 100%;
    margin-top: 70px;
    margin-bottom: 50px;
}
.variant-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}
.variant-box{
    text-align: center;
    background: white;
    border: 2px solid #f8c6d8;
    border-radius: 25px;
    padding: 20px 10px;
    text-decoration: none;
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.variant-box:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.variant-box h3{
    font-style: italic;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
}
.variant-box img{
    width: 80%;
    max-width: 120px;
    margin-bottom: 10px;
}
.variant-box p{
    font-size: 14px;
    line-height: 1.4;
}
.about-section{
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
}
.about-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 28px;
    transform: rotate(-3deg);
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    max-width: 320px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    margin-bottom: 30px;
}

.about-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.about-button:hover {
    background-color: #333;
}
.all-products-intro {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.headline-primary {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 32px;
    transform: rotate(-3deg);
    margin-bottom: 40px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #111;
}

.intro-image{
        width: 100vw;
        max-width: 100%;
    display: block;
        position: relative;
        transform: translateY(-110px);
    margin: 40px 0 -100px;
}

.checkout-cart-items {
    padding: 30px 20px;
}

.checkout-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.checkout-image-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ffeef4 60%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-image {
    max-width: 70px;
    height: auto;
}

.checkout-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkout-title {
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.checkout-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.checkout-bullets {
    font-size: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.checkout-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-select {
    appearance: none;
    background: white;
    border: none;
    border-radius: 999px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.item-price {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}


.remove {
    background: none;
    border: none;
    color: #000;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #000000;

}

.total-label {
    font-size: 22px;
    font-style: italic;
    font-weight: 800;
}

.total-label .moms {
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin-left: 6px;
}

.total-amount {
    font-weight: 900;
    font-size: 24px;
}

@media (max-width: 600px) {
    .checkout-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .checkout-actions {
        justify-content: center;
    }

    .checkout-total-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 0 20px;
    }

    .checkout-image-wrapper {
        width: 100px;
        height: 100px;
    }

    .checkout-image {
        max-width: 80px;
    }
}

.produkt-pakker {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.pakke-kort {
    background: #fff;
    border: 2px solid white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255,105,180,0.3);
    text-align: center;
    position: relative;
    max-width: 400px;
    margin-inline: auto;
}
.pakke-badge-billede {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 100px;
    height: auto;
}

.pakke-navn {
    font-style: italic;
    font-weight: 800;
    font-size: 20px;
    margin: 35px 0 16px;
    text-align: left;
}

.pakke-billede {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.pakke-beskrivelse {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 0 20px;
    text-align: center;
    color: #000;
    font-weight: lighter;
}

.pakke-knap {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.pakke-knap:hover {
    background: #333;
}
.pakke-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 65px;
    height: auto;
    z-index: 10;
}

.produktPakkeListe,
.produkt-pakker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

@media (min-width: 768px) {
    .produktPakkeListe,
    .produkt-pakker {
        grid-template-columns: 1fr 1fr;
        max-width: 1300px;
        margin: 0 auto;
    }
}

.all-products-intro .about-image{
    max-width: 280px;
}

.custom-footer {
    background: white;
    padding: 20px 20px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #000;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 700px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.footer-logo {
    max-height: 40px;
    text-align: left;
    width: auto;
    height: auto;
}

.footer-socials{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.footer-socials img {
    width: 36px;
    height: 36px;
    margin-left: 0;
}

.footer-cvr {
    margin-top: 0;
    font-size: 14px;
}

.footer-title {
    margin: 25px 0 10px;
    font-weight: bold;
    font-size: 24px;
}

.footer-contact {
    margin: 20px auto;
    text-align: left; !important;
    max-width: 700px;
}

.footer-contact .icon {
    width: 24px;
    vertical-align: middle;
    margin-right: 12px;
}

.footer-contact a {
    color: #000;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.payment-icons img {
    height: 40px;
}

.trust-section{
    text-align: center;
}

.trust-section img {
    max-width: 250px;
    margin-top: 20px;
    width: 250px;
}

.custom-footer p{
    line-height: 1.6;
    margin: 6px 0;
    font-weight: lighter;
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        gap: 15px;
    }

    .footer-socials {
        margin-top: 10px;
    }
}

.checkout-form {
    padding: 20px;
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.checkout-form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: 600;
    font-size: 14px;
}

.checkout-form input {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.pay-button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: black;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 999px;
    cursor: pointer;
}

.order-confirmation {
    text-align: center;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 20px;
}

.order-confirmation h2 {
    font-style: italic;
    font-weight: 800;
}

.sub-heading {
    margin-top: 20px;
    font-weight: bold;
    font-style: italic;
}

.payment-methods {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}

.contactBody {
    font-family: sans-serif;
    background: linear-gradient(to bottom, #FFE4EA 0%, #ffffff 100%);
    padding: 20px;
}

.contactBody {

    h1 {
        font-family: "Racing Sans One", sans-serif;
        text-align: center;
        font-size: 32px;
        letter-spacing: 1.92px;
        transform: rotate(-5deg);
    }

    p {
        font-family: "Questrial", sans-serif;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.96px;
    }

    .pContact {
        text-align: center;
    }

    label {
        display: block;
        margin-top: 20px;
        font-family: "Racing Sans One", sans-serif;
        font-size: 14px;
        letter-spacing: 0.84px;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border-radius: 10px;
        border: 0.5px solid #000000;
        font-size: 16px;
        font-family: "Questrial", sans-serif;
        line-height: 20px;
        letter-spacing: 0.96px;
    }

    textarea {
        height: 120px;
    }

    .contactButton {
        margin-top: 20px;
        width: 100%;
        padding: 15px;
        background-color: black;
        color: white;
        font-family: "Cabin Condensed", sans-serif;
        font-size: 20px;
        letter-spacing: 1.2px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
    }

    .contactButton:active {
        transform: scale(1.05);
    }

    .messageBox {
        margin: 60px;
        font-family: "Questrial", sans-serif;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.96px;
        text-align: center;
    }
}

.intro-text-lighter{
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
    margin: 0 30px;
    line-height: 1.4;
}

.smallpng{
    width: 100%;
    align-items: center;
    margin: 20px auto;
}

















