<style>
/* Låst kort (dark mode) */
.produkt-card.locked {
    opacity: 0.55;
    filter: grayscale(60%);
    background: #1a1a1a;
    border: 1px solid #2c2c2c;
}

/* Disabled knap */
.bestil-btn.disabled,
.bestil-btn:disabled {
    background: #333;
    color: #777;
    cursor: not-allowed;
    pointer-events: none;
    border: 1px solid #444;
}

/* "I kurv" badge */
.produkt-card.locked::after {
    content: "✔";
    position: absolute;
    top: 10px;
    right: 10px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2e7d32;
    color: #fff;

    font-size: 16px;
    font-weight: bold;

    border-radius: 50%;

    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


@keyframes addedPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(76,175,80,0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }
}

.produkt-card.added {
    animation: addedPulse 0.5s ease;
}


/* Sørg for kort stadig ser pænt ud */
.produkt-card {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
}

/* Hover effekt (stadig aktiv selv i dark mode) */
.produkt-card:not(.locked):hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.kontakt-groen {
    background-color: #c6f6d5;
    color: #22543d;
}

.kontakt-roed {
    background-color: #fed7d7;
    color: #742a2a;
}





html, body {
	font-family:'Poppins',sans-serif;
     background:#0d0d1a;
	color: #eee;
	margin: 0;
    padding: 0;
    height: 100%;

}







ul {
    list-style-position: inside;
}

a {
  color: #A0C0FF;
  font-weight: bold;
}


  table {
    border-collapse: collapse;   /* Smelter kantstregerne sammen */
    width: 100%;                /* Tabellen fylder hele skærmbredden */
    max-width: 100%;            /* Sikrer at den aldrig overskrider skærmen */
  }
  th, td {
    border: 0px solid black;    /* Fuld kant omkring hver celle */
    padding: 8px;
    text-align: left;
    word-wrap: break-word;      /* Sørger for at teksten brydes på små skærme */
  }
  th {
    background-color: #0d0d1a;
  }

  /* Optional: gør tabellen scroll-bar på små skærme */
  .table-container {
    overflow-x: auto;
  }
  
.text-right {
	text-align: right;
}
  
 .text-center {
	text-align: center;
}



tfoot th {
    background: #1e1e1e;
    color: #fff;
    padding: 12px;
}

#grand-total {
    text-align: right;
    color: #4caf50;
    font-size: 18px;
}


/* HERO SEKTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-img6L{
  height: 500px;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("images/softice6L.png");
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  border-radius: 8px;
}

.hero-img12L{
  height: 500px;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("images/softice12L.png");
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  border-radius: 8px;
}

.hero-img8L{
  height: 500px;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("images/softice8L.png");
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  border-radius: 8px;
}


.hero-text{
  flex: 1;
  background: rgba(0,0,0,0.7); /* dark transparent box */
  color: white;
  padding: 30px;
  border-radius: 8px;
}

h1 {
    margin-bottom: 10px;
}

.hero-text h1{
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-text p{
  margin-bottom: 20px;
}

.hero-text button{
  padding: 10px 20px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
  border-radius: 5px;
}

.hero-image{
  flex: 1;
}

.hero-image img{
  width: 100%;
  border-radius: 10px;
}




/* VIDEO BAGGRUND */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* MØRK OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    max-width: 700px;
    padding: 30px 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
    z-index: 2;
}

/* RESPONSIVE TYPOGRAFI */
.hero-content h2 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 500;
    color: #ff3cac;
    text-shadow:
        0 0 20px #ff3cac,
        0 0 40px #ff6bdc;
}

.hero-content h3 {
    font-size: clamp(22px, 5vw, 44px);
    font-weight: 600;
    color: #ff3cac;
    text-shadow:
        0 0 20px #ff3cac,
        0 0 40px #ff6bdc;
}

.hero-content p {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    color: #00f0ff;
    text-shadow:
        0 0 20px #00f0ff;
}




/* REKLAME TEKST */
.video-ad {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 10px #ff3cac, 0 0 20px #00f0ff;
    z-index: 2;
    padding: 10px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    animation: adPulse 2s infinite alternate;
	 z-index: 3; /* reklame-tekst øverst */
}

@keyframes gradientShift{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

@keyframes adPulse {
    0% { transform: translateX(-50%) scale(1); opacity: 0.9; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
}

*{box-sizing:border-box}




/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;           /* brug right i stedet for width */
    box-sizing: border-box; /* padding tæller med i bredden */

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 20px;

    background: rgba(26,26,46,0.9);
    backdrop-filter: blur(10px);

    z-index: 10;
}

/* hovedmenu */
.nav-links {
	flex: 1;
	justify-content: right;
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}


/* Logo styling */
.logo-link {
    margin: 0;
    padding: 0;
}

.logo {
    display: block;
    height: 50px;
    width: auto;
}



.logo:hover {
    transform: scale(1.05);
}


nav .nav-links,
nav a.logo {
    max-width: calc(100% - 40px); /* sørg for at padding ikke skubber ud */
    box-sizing: border-box;
}

/* dropdown reference */
.nav-links li {
    position: relative;
}

/* menu links */
.nav-links a {
    text-decoration: none;
    color: #eee;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;

    transition: 
        background 0.3s ease,
        color 0.3s ease;
}

.nav-links a:hover {
    background: #333;
}

/* SUBMENU */
.sub-menu {
    position: absolute;
    top: 100%;   /* ingen afstand */
    left: 0px;

    background: rgba(26,26,46,0.98);
    list-style: none;
    padding: 10px 0;
    margin: 0;

    min-width: 240px;
    border-radius: 8px;

    border: 1px solid rgba(255,60,172,0.3);

    box-shadow:
        0 12px 25px rgba(0,0,0,0.5),
        0 0 12px rgba(255,60,172,0.25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* vis submenu */
.nav-links li:hover .sub-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) translateX(0) scale(1);
}

/* submenu links */
.sub-menu li a {
    padding: 10px 22px;
    display: block;
    white-space: nowrap;

    transition:
        background 0.25s ease,
        padding-left 0.25s ease;
}

/* hover effekt */
.sub-menu li a:hover {
    background: linear-gradient(90deg,#ff3cac33,#00f0ff33);
    padding-left: 28px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 20;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg,#ff3cac,#00f0ff);
    border-radius: 3px;
    transition: 0.4s;
}


.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}


/* MOBIL JUSTERING */
/* Mobile styles */
@media (max-width:768px){
	
	    tfoot tr {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    tfoot th {
        width: 100%;
        display: block;
    }


 .hero-content {
        max-width: 90%;      /* fylder næsten hele skærmen */
        padding: 20px 15px;  /* mindre padding */
        border-radius: 25px; /* lidt mindre hjørner */
    }

    .hero-content h2 {
        font-size: clamp(14px, 4vw, 28px); /* mindre overskrift */
		 line-height: 1.2; /* tættere linjer */
    }

    .hero-content h3 {
        font-size: clamp(18px, 6vw, 26px);
    }

    .hero-content p {
        font-size: clamp(14px, 4vw, 10px);
    }
	
.menu-toggle{
    display:flex;
}

/* skjult menu */
.nav-links{
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;

    flex-direction: column;
    align-items: flex-start;

    background: rgba(26,26,46,0.98);
    backdrop-filter: blur(12px);

    padding: 20px;

    transform: translateY(-120%);
    opacity: 0;

    transition: 
        transform 0.45s ease,
        opacity 0.45s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* aktiv menu */
.nav-links.active{
    transform: translateY(0);
    opacity: 1;
}

/* menu items */
.nav-links li{
    width:100%;
}

/* links */
.nav-links a{
    padding:14px 10px;
    width:100%;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

/* mobil submenu */
.sub-menu{
    position:relative;
    left:0;
    top:0;

    background:none;
    border:none;
    box-shadow:none;

    display:none;
    opacity:1;
    transform:none;
}

/* åbnet submenu */
.has-submenu.open .sub-menu{
    display:block;
}

/* pil */
.has-submenu > a::after{
    content:"▾";
    float:right;
}
}


/* BUTTON */

button{
    border:none;
    padding:14px 26px;
    border-radius:40px;
    background:linear-gradient(270deg,#ff3cac,#00f0ff,#ff3cac);
    background-size:600% 600%;
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.6);
    animation:buttonGlow 8s ease infinite;
}

button:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.8);
}

@keyframes buttonGlow{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* SECTION */

.section-title{
    text-align:center;
    font-size:40px;
    margin:80px 0 20px 0;
    color:#ff9eff;
    text-shadow:0 0 10px #ff3cac;
}

/* CARDS */

.container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
    padding:40px;
}


.container2 {
    max-width: 500px;
    margin: 80px auto;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    text-align: center;
}

.container3{
	min-width: 600px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
    padding:40px;
}

/* container for hele sektionen */
.order-inner {
    max-width: 1500px;   /* hvor bredt det maksimalt kan blive */
    width: 95%;          /* fylder næsten hele skærmen */
    margin: 0 auto;      /* centrerer på siden */
    padding: 20px;
}


/* container for kortene */
.tilbehoer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centrerer vandret */
    gap: 20px; /* mellemrum mellem cards */
}

.tilbehoer img{
    width:100%;
    height:180px;
    object-fit:cover;
}




/* individuelle kort */
.infocard3 {
    flex: 1 1 calc(25% - 20px); /* 3 kort pr. række med mellemrum */
    min-width: 280px;               /* kortene krymper ikke for meget */
    max-width: 280px;               /* begrænser kortene på store skærme */
    background: #1a1a2e;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255,60,172,0.2), 0 0 15px rgba(0,240,255,0.2);
    overflow: hidden;
    transition: 0.3s;
	padding: 20px;
}

.infocard3 img {
    width: 100%;
    height: 180px;

}


@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    .infocard4 {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 10px;
        border-radius: 0; /* optional */
    }
     
	.responsive-table {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}


* {
    box-sizing: border-box;
}


/* individuelle kort */
.infocard4 {
    flex: 1 1 calc(25% - 20px); /* 3 kort pr. række med mellemrum */
    min-width: 280px;               /* kortene krymper ikke for meget */
    max-width: 900px;               /* begrænser kortene på store skærme */
    background: #1a1a2e;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255,60,172,0.2), 0 0 15px rgba(0,240,255,0.2);
    overflow: hidden;
    transition: 0.3s;
	padding: 20px;
	display: block;
}

.infocard4 img {
    width: 100%;
    height: 180px;

}

/* individuelle kort */
.infocard5 {
    flex: 1 1 calc(25% - 20px); /* 3 kort pr. række med mellemrum */
    min-width: 380px;               /* kortene krymper ikke for meget */
    max-width: 600px;               /* begrænser kortene på store skærme */
    background: #1a1a2e;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255,60,172,0.2), 0 0 15px rgba(0,240,255,0.2);
    overflow: hidden;
    transition: 0.3s;
	padding: 20px;
}

.infocard5 img {
    width: 100%;
    height: 180px;

}


/* container for kortene */
.card4 {
    display: flex;
    gap: 20px;
    width: 100%;
}

.info-card4 {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


@media (max-width: 768px) {
    .card4 {
        grid-template-columns: 1fr;
    }
}

.card3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* CARD */
.card{
    width:260px;
    background:#1a1a2e;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(255,60,172,0.2), 0 0 15px rgba(0,240,255,0.2);
    overflow:hidden;
    transition:0.3s;
    animation:cardGlow 4s ease-in-out infinite;

    /* NYT */
    display:flex;
    flex-direction:column;
}

/* hover */
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,60,172,0.5), 0 0 25px rgba(0,240,255,0.5);
}

/* billede */
.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* indhold */
.card-content {
    padding: 20px;

    /* NYT */
    display:flex;
    flex-direction:column;
    flex:1;
}

/* titel */
.card-content h3 {
    margin: 10px 0;
    color: #fff;

    /* giver ens højde på titel */
    min-height:50px;
}

/* beskrivelse */
.card-content p:first-of-type {

    /* maks 3 linjer */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;

    /* ens højde */
    min-height:72px;

    color:#ccc;
}

/* pris */
.price{
    margin-top:auto;
    color:#fff;
    font-weight:bold;
}

/* dropdown */
.card-content select{
    margin-top:10px;
}



.infocard{
	
    flex:0 0 80%; /* gør kortet 60% bredt i flex layout */
    max-width:1200px;
    background:#1a1a2e;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(255,60,172,0.2), 0 0 15px rgba(0,240,255,0.2);
    overflow:hidden;
    transition:0.3s;
    padding:20px;
    text-align:left;
    display: flex;
    flex-wrap: wrap; /* Bryd linjen når pladsen fyldes */
    gap: 20px;       /* Afstand mellem kortene */


}

.infocard img{
    width:100%;
    height:180px;
    object-fit:cover;
}



.infocardlogo {
    position: relative; /* VIGTIG for ::before */
    
    flex: 0 0 80%;
    background-color: #1a1a2e; /* fallback farve */
    
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255,60,172,0.2), 0 0 15px rgba(0,240,255,0.2);
    
    overflow: hidden;
    transition: 0.3s;
    padding: 20px;
    text-align: left;

    gap: 20px;

    /* BAGGRUNDSBILLEDE */
    
    background-repeat: no-repeat;
    background-position: top 20px right 20px;
    background-size: 150px;
	
}

.infocardlogo::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;

    background-image: url("images/logo3.png");
    background-size: contain;
    background-repeat: no-repeat;
	opacity: 0.7;
    

    z-index: 1;
}

.infocardlogo * {
    position: relative;
    z-index: 2;
}




.infocardlogo:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,60,172,0.5), 0 0 25px rgba(0,240,255,0.5);
}






.card-content{
    padding:20px;
    text-align:center;
}



.card-content h3{
    margin:10px 0;
    color:#fff;
}



.infocard:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,60,172,0.5), 0 0 25px rgba(0,240,255,0.5);
}





.infocard-content {
	padding:20px;
    position: relative;
}

.infocard-content img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; /* gør mindre */
    opacity: 0.1; /* gør diskret */
    z-index: 0;
}

.infocard-content p {
    position: relative;
    z-index: 1;
}


.infocard-content h3{
    margin:10px 0;
    color:#fff;
}


/* Mobil */
@media (max-width:768px){
    .infocard{
        width:90%;
    }
}


.price{
    font-weight:700;
    color:#ff3cac;
}

/* Card neon pulse animation */
@keyframes cardGlow{
    0%,100%{
        box-shadow:0 10px 25px rgba(255,60,172,0.2), 0 0 15px rgba(0,240,255,0.2);
    }
    50%{
        box-shadow:0 10px 25px rgba(255,60,172,0.5), 0 0 25px rgba(0,240,255,0.5);
    }
}

/* ORDER */

.order{
    max-width:600px;
    margin:80px auto;
    background:#1a1a2e;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.7);
}

.order h3{
    margin-top:0;
    text-align:center;
    color:#ff3cac;
}


.order3{
    max-width:1500px;
    margin:80px auto;
    background:#1a1a2e;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.7);

    display: flex;
    flex-direction: column;
    align-items: center; /* centrerer horisontalt */
}

.order3 h3{
    margin-top:0;
    text-align:center;
    color:#ff3cac;
}


.tilbehoer3{
	max-width:1500px;
    margin:80px auto;
    background:#1a1a2e;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.7);

    display: flex;
    flex-direction: column;
    align-items: center; /* centrerer horisontalt */
	
}

.tilbehoer3 h3{
    margin-top:0;
    text-align:center;
    color:#ff3cac;
}


input, select{
    width:100%;
    padding:14px;
    margin-top:12px;
    border-radius:12px;
    border:1px solid #333;
    background:#0d0d1a;
    color:#ffffff;
    font-family:'Poppins',sans-serif;
}

/* dropdown liste */
select option{
    background:#0d0d1a;
    color:#ffffff;
}

/* focus effekt */
input:focus, select:focus{
    outline:none;
    border:1px solid #4da3ff;
    box-shadow:0 0 6px rgba(77,163,255,0.6);
}

/* FOOTER */

footer{
    text-align:center;
    padding:40px;
    margin-top:80px;
    background:#111;
    color:#fff;
}

/* MOBILE */

@media(max-width:900px){
    .hero{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero h2{
        font-size:44px;
    }

    .hero-img img{
        width:260px;
    }
}

.video-ad {
    position: absolute; /* placering ovenpå videoen */
    bottom: 50px;       /* afstand fra bunden */
    left: 50%;
    transform: translateX(-50%); /* centrerer vandret */
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 10px #ff3cac, 0 0 20px #00f0ff;
    z-index: 2;          /* ovenpå både video og overlay */
    padding: 10px 20px;
    background: rgba(0,0,0,0.3); /* semi-transparent baggrund for kontrast */
    border-radius: 12px;
    animation: adPulse 2s infinite alternate;
}

/* Små pulserende animation på reklame tekst */
@keyframes adPulse {
    0% { transform: translateX(-50%) scale(1); opacity: 0.9; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
}


footer {
    background: #111; /* mørk nattebaggrund */
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;

    /* Neon glød effekt */
    text-shadow:
        0 0 5px #ff3cac,
        0 0 10px #ff3cac,
        0 0 20px #00f0ff,
        0 0 30px #ff3cac;
    
    /* subtil animation for liv */
    animation: footerGlow 3s ease-in-out infinite alternate;
}

/* Neon puls animation */
@keyframes footerGlow {
    0% {
        text-shadow:
            0 0 5px #ff3cac,
            0 0 10px #ff3cac,
            0 0 20px #00f0ff,
            0 0 30px #ff3cac;
    }
    50% {
        text-shadow:
            0 0 10px #ff3cac,
            0 0 20px #ff3cac,
            0 0 40px #00f0ff,
            0 0 60px #ff3cac;
    }
    100% {
        text-shadow:
            0 0 5px #ff3cac,
            0 0 10px #ff3cac,
            0 0 20px #00f0ff,
            0 0 30px #ff3cac;
    }
}




.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* responsivt: 2 kort per række på tablet */
@media screen and (max-width: 992px) {
    .infocard3 {
        flex: 1 1 calc(50% - 20px);
    }
}

/* responsivt: 1 kort per række på mobil */
@media screen and (max-width: 600px) {
    .infocard3 {
        flex: 1 1 100%;
    }
}



/* Hero baggrund */
.cart-hero{
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #1c1c1c;
    min-height: 100vh;
}

/* Kurv-box */
.cart-box{
    background: rgba(0,0,0,0.85); /* mørk boks */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.7);
    color: #fff;
    width: 95%;           /* bredere end før */
    max-width: 1200px;    /* maks bredde */
	position: relative;
    z-index: 2;
}

/* Overskrift */
.cart-box h2{
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    letter-spacing: 1px;
}

/* Tabel */
#cart-table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#cart-table th, #cart-table td{
    padding: 15px;
    text-align: center;
}

#cart-table th{
    border-bottom: 2px solid #555;
}

#cart-table tbody tr:nth-child(even){
    background: rgba(255,255,255,0.05);
}

/* Venstrejuster varenavn i tabellen */
#cart-table td:first-child,
#cart-table th:first-child{
    text-align: left;
    padding-left: 20px; /* lidt luft fra kanten */
}

/* Resten forbliver centreret */
#cart-table td:not(:first-child),
#cart-table th:not(:first-child){
    text-align: center;
}



/* Dropdown */
.quantity-dropdown{
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    background: #333;
    color: #fff;
    cursor: pointer;
}

/* Knapper */
.remove-btn, #clear-cart{
    background: #ff4d4f;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.remove-btn:hover, #clear-cart:hover{
    background: #ff7875;
}

/* Responsivt: skalerer ned på mobil */
@media (max-width: 992px){
    .cart-box{
        width: 90%;
    }
}
@media (max-width: 768px){
    .cart-box{
        width: 100%;
        padding: 10px;
    }
    #cart-table th, #cart-table td{
        padding: 0px;
    }
	
	table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        padding: 10px;
        background-color: #1e1e1e;
        border: 1px solid #333;

    }

    td {
        text-align: left;
        padding: 8px;
        position: relative;
    }

    td:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }	
}


.infocardlogo {
    flex: 1 1 100%;
    max-width: 1400px;
}

@media (min-width: 600px) {
    .produkt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .produkt-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .produkt-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.produkt-grid {
    width: 100%;
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Kort */
.produkt-card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #2e2e2e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: 0.2s ease;
}

.produkt-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

/* Titel */
.produkt-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
}

/* Info rækker */
.produkt-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* Labels */
.label {
    color: #aaa;
    font-size: 13px;
}

/* Pris highlight */
.pris {
    font-weight: bold;
    color: #4caf50;
    font-size: 16px;
}

/* Beskrivelse */
.beskrivelse {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

/* Kategori titel */
.kategori-title {
    margin: 30px 0 10px;
    color: #fff;
    border-left: 4px solid #4caf50;
    padding-left: 10px;
}

/* Mobil finjustering */
@media (max-width: 768px) {

    .produkt-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .produkt-card {
        padding: 15px;
    }

    .produkt-card h3 {
        font-size: 16px;
    }

    .pris {
        font-size: 15px;
    }
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.badge.popular {
    background: #ff9800;
    color: #000;
}

.badge.new {
    background: #2196f3;
    color: #fff;
}

/* Bestil knap */
.bestil-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.bestil-btn:hover {
    background: #43a047;
    transform: scale(1.02);
}

/* Ekstra spacing */
.produkt-card {
    position: relative;
}

/* Lidt mere premium look */
.produkt-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.05);
}


.flatpickr-day:nth-child(7n),
.flatpickr-day:nth-child(7n+1){
    color:#c0392b;
}


.flatpickr-calendar{
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    font-family:Arial;
}

.flatpickr-day.selected{
    background:#2c7be5;
    border-color:#2c7be5;
}

.info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background-color: #00c6ff;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    margin-left: 4px;
}

.tooltip {
  cursor: pointer;
  color: #FFFFFF;
  text-decoration: underline;
  position: relative;
}

.tooltiptext {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 700px;
  max-height: 500px;
  overflow: auto;

  background-color: #1a1a2e;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  border: 2px solid #11002f;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 100;
}

.tooltip:hover + .tooltiptext {
  display: block;
}

.change-trigger:hover + .tooltip {
  display: block;
}

.change-line {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 6px 0;
}

.change-line:last-child {
  border-bottom: none;
}

.change-text {
  color: #ddd;
}

.customer-note {
  color: #8ecae6;
  font-style: italic;
  margin-top: 2px;
}
/* ---------- GLOBAL ---------- */
body {


  /* mørk slushice baggrund */
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 99, 132, 0.5), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(54, 162, 235, 0.5), transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(120, 255, 214, 0.3), transparent 40%),
    linear-gradient(135deg, #1b2338, #222b45);
}

/* ---------- TABLE ---------- */



/* ---------- SPARKLES ---------- */

@keyframes sparkle {
  0% { transform: translateY(0) scale(0.5); opacity: 0.8; }
  50% { transform: translateY(-20px) scale(1); opacity: 1; }
  100% { transform: translateY(0) scale(0.5); opacity: 0.8; }
}

span.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkle 2s infinite ease-in-out;
}

input, select{
    width:100%;
    padding:4px 6px;
    margin-top:2px;
    border-radius:6px;
    border:1px solid #333;
    background:#0d0d1a;
    color:#ffffff;
    font-family:'Poppins',sans-serif;
    font-size:12px;
}

/* dropdown liste */
select option{
    background:#0d0d1a;
    color:#ffffff;
}

/* focus effekt */
input:focus, select:focus{
    outline:none;
    border:1px solid #4da3ff;
}

select.zero {
    opacity:0.45;
    background:#0d0d1a;
    color:#aaa;
}

select.hasvalue {
    opacity:1;
    background:#16213a;
    color:#ffffff;
    border:1px solid #4da3ff;
    box-shadow:0 0 4px rgba(77,163,255,0.6);
}


.social-footer {
  background-color: #0d0d0d;
  padding: 30px 0;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  width: 45px;
  height: 45px;
  background: #1a1a1a;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover effekter */
.icon:hover {
  transform: translateY(-5px) scale(1.1);
  color: #fff;
}

/* Platform farver ved hover */
.facebook:hover { background: #1877f2; }
.twitter:hover { background: #000000; }
.instagram:hover { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.linkedin:hover { background: #0a66c2; }
.tiktok:hover { background: #010101; }


/* ===== KALENDER BASE ===== */
.flatpickr-calendar {
    font-family: Poppins, sans-serif;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
}

/* ===== HEADER (måned + år) ===== */
.flatpickr-months {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    padding: 10px 0;
}

/* tekst i header */
.flatpickr-current-month {
    color: #fff !important;
    font-weight: 600;
}

/* dropdown måned + år */
.flatpickr-monthDropdown-months,
.flatpickr-yearDropdown-years {
    background: #2c3e50 !important;
    color: #fff !important;
}

/* pile */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff !important;
}

/* ===== UGEDAGE ===== */
.flatpickr-weekdays {
    background: #f4f6f8;
}

.flatpickr-weekday {
    color: #333 !important;
    font-weight: 600;
}

/* ===== DAGE ===== */
.flatpickr-day {
    border-radius: 8px;
    transition: all 0.15s ease;
}

/* hover */
.flatpickr-day:hover {
    background: #e8f0ff;
    transform: scale(1.05);
}

/* selected */
.flatpickr-day.selected {
    background: #2c3e50 !important;
    border-color: #2c3e50 !important;
    color: #fff !important;
}

/* ===== FERIE DAGE ===== */
.flatpickr-day.ferie-dag {
    background: repeating-linear-gradient(
        45deg,
        #ffe08a,
        #ffe08a 6px,
        #ffd36a 6px,
        #ffd36a 12px
    ) !important;

    border: 1px solid #f1c40f !important;
    font-weight: 600;
	
}

/* lille prik indikator */
.flatpickr-day.ferie-dag::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #b8860b;
    border-radius: 50%;
}

/* hover på ferie */
.flatpickr-day.ferie-dag:hover {
    background: #ffd24d !important;
}

/* ===== DISABLED DAGE ===== */
.flatpickr-day.flatpickr-disabled {
    color: #ccc !important;
}

/* ===== MOBILE FORBEDRING ===== */
@media (max-width: 600px) {
    .flatpickr-calendar {
        width: 100% !important;
    }

    .flatpickr-day {
        height: 38px;
        line-height: 38px;
    }
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.tooltip2 {
  position: relative;
  display: inline-block;
  cursor: default;
}

.tooltip2 .tooltiptext2 {
  visibility: hidden;
  opacity: 0;

  width: max-content;
  max-width: 200px;

  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;

  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);

  font-size: 13px;

  /* 🔥 SMOOTH FADE */
  transition: opacity 1.25s ease, transform 0.25s ease;
  pointer-events: none;
}

/* lille pil */
.tooltip2 .tooltiptext2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* hover effekt */
.tooltip2:hover .tooltiptext2 {
  visibility: visible;
  opacity: 1;
}


.data-table {
   display: flex;
    flex-wrap: wrap;      /* bryd til ny række når pladsen er fyldt */
    gap: 20px;            /* mellemrum mellem kort */
    justify-content: center; /* centrerer vandret */
    background: rgba(26, 26, 46, 0.85);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.data-table th {
    background: linear-gradient(90deg, #ff3cac33, #00f0ff33);
    color: #ff9eff;
    font-weight: 600;
    padding: 14px;
    text-shadow: 0 0 10px #ff3cac;
}

.data-table td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px;
    transition: 0.2s ease;
}

/* hover effekt */
.data-table tr:hover td {
    background: rgba(255, 60, 172, 0.08);
    transform: scale(1.01);
}

/* zebra look */
.data-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.dark-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px 5px 0 0;
    background-color: #1e1e1e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dark-btn:hover {
    background-color: #333;
    border-color: #555;
}


.green-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px 5px 0 0;
    background-color: #4ade80; /* lys grøn */
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #22c55e;
    font-weight: 600;
    transition: all 0.2s ease;
}

.green-btn:hover {
    background-color: #22c55e; /* lidt mørkere grøn */
    border-color: #16a34a;
}


.logout-btn {
     display: inline-block;
    padding: 10px 18px;
    margin: 5px 5px 0 0;
    background-color: #1e1e1e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background-color: #333;
    border-color: #555;
}

.delete-btn {
    background: #8b0000 !important;
    border: 1px solid #a30000 !important;
    animation: none !important;
}

.delete-btn:hover {
    background-color: #b30000;
}


.warning {
    color: #ff4d4d;
    font-weight: bold;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.btn-confirm {
    background-color: #b30000;
    color: #fff;
}

.btn-confirm:hover {
    background-color: #e60000;
}

.btn-cancel {
    background-color: #2b2b2b;
    color: #fff;
    border: 1px solid #444;
}

.btn-cancel:hover {
    background-color: #3a3a3a;
}

textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #fff;
    resize: none;
}

.checkbox {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .infocardlogo {
        flex: 0 0 98%;
        max-width: 98%;
        margin: 0 auto; /* centrer */
        padding: 15px;
    }

    .infocardlogo::after {
        width: 80px;
        height: 80px;
        top: 10px;
        right: 10px;
        opacity: 0.3; /* lidt mere diskret på mobil */
    }
}

/* PAGE WRAPPER FEEL */
.product-page {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* HOVEDKORT */
.product-card {
    max-width: 70%;
    margin: 60px auto 0 auto; /* <-- rykker den ned + centrerer */
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* GRID LAYOUT */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center; /* bedre vertikal balance */
}

/* BILLEDE WRAPPER */
.product-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* BILLEDE */
.product-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 10px;
    background: #f5f5f5;
}

/* ZOOM CURSOR */
.zoom-image {
    cursor: zoom-in;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.2s ease;
}

/* ANIMATION */
@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* MOBILE */
@media (max-width: 768px) {

    .product-page {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .product-card {
        max-width: 95%;
        margin: 30px auto 0 auto;
        padding: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image img {
        max-height: 300px;
    }
}

.product-info {
    color: #000;
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: #111;
}

.quick-menu{
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    padding:10px 15px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.selected-product{
    font-size:16px;
    font-weight:700;
    color:#fff;
    background:#2a2a2a;
    border-left:4px solid #ff6b00;
    padding:8px 12px;
    border-radius:6px;
}

.menu-links{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    font-size:14px;
}

.quick-menu{
    background:#1b1b1b;
    border:1px solid #333;
    border-radius:10px;
    padding:10px 15px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.35);
    color:#e5e5e5;
}

.menu-btn,
.cart-btn{
    display:inline-block;
    padding:6px 12px;
    background:#252525;
    border:1px solid #3a3a3a;
    border-radius:6px;
    text-decoration:none;
    color:#e5e5e5;
    font-weight:600;
    transition:all .2s ease;
}

.menu-btn:hover,
.cart-btn:hover{
    background:#099556;
    border-color:#ff6b00;
    color:#fff;
    transform:translateY(-1px);
}

</style>

