* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #2f3a3d;
    line-height: 1.5;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(253, 234, 199);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #4c4946;
    padding: 12px 16px;

}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.header-left {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: -45px;
    margin-top: -45px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fdb837;
    white-space: nowrap;
    text-align: center;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    flex-wrap: nowrap;
    width: 100%;
}

.header-icon-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fbb737;
    color: #1c1c1c;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
    flex-shrink: 0;
}

.header-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.header-search-pill {
    height: 42px;
    border-radius: 999px;
    background: #d8d8d8;
    display: flex;
    align-items: center;
    padding: 0 16px;
    width: 0;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.header-search-pill.active {
    width: min(950px, 100%);
    max-width: 950px;
    flex: 1 1 auto;
    opacity: 1;
}

.header-search-pill input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: #2f3a3d;
}

.header-search-pill input::placeholder {
    color: #666;
}

/* HERO */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    order: 2;
}

.tag {
    display: inline-block;
    color: #847100;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: #27454d;
}

.product-meta {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 18px;
}

.price {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    padding: 10px 12px;
    font-weight: 800;
    color: #000000;
    border-radius: 999px;
    border: 2px solid #ffb937;
    min-height: 52px;
    white-space: nowrap;
}

.badge {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to right, #EDEB48, #FF9D00);
    color: #000000;
    border-radius: 999px;
    font-size: 1rem;
    padding: 10px 16px;
    font-weight: 700;
    border: 2px solid #ffb937;
    min-height: 52px;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

h2.description {
    font-family: "Comic Sans MS";
    font-size: 40px;
}

.description {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    font-size: 1rem;
    background: #ffecc9;
    color: black;
    padding: 12px 16px;
    font-family: "Comic Sans MS";
}

.info-badges {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    justify-content: center;
    background: #ffecc9;
    padding-bottom: 10px;
    display: flex;
    gap: 35px;
    flex-wrap: wrap; /* gør det responsivt */
}

.info-badge {
    color: #000;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: "Comic Sans MS";
    white-space: nowrap;
    padding: 10px 12px;
    font-weight: 800;
    color: #000000;
    border-radius: 999px;
    border: 2px solid #ffb937;
    min-height: 52px;
    white-space: nowrap;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.badge i {
    font-size: 1rem;
}

.hero-image-card {
    order: 1;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);

    width: 100%;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* BENEFITS */
.benefits-section {
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 30px 16px 20px;
}

.benefits-title {
    font-size: 2.5rem;
    color: #2f4850;
    margin-bottom: 20px;
    position: absolute;
    top: 30px;
    left: 40px;
}

.benefits-shell {
    position: relative;
    border: 3px solid #FFB937;
    border-radius: 50px;
    background: #FFECC9;
    border-radius: 34px;
    padding: 40px 70px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.benefits-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 25px;
}

.benefit-card {
   filter: blur(1px);
    width: 220px;
    max-height: 210px;
    background: #ffffff;
    border-radius: 25px;
    padding: 24px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
    opacity: 0.65;
    transform: scale(1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: 3px solid #D0CFCB;

}

.benefit-card.active {
    filter: blur(0);
    position: relative;
    border: 3px solid #FFEA08;
    border-radius: 35px;
    width: 250px;
    min-height: 250px;
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 18px 32px rgba(78, 183, 216, 0.14);
}

.benefit-card i {
    font-size: 1.7rem;
    color: #4eb7d8;
    margin-bottom: 14px;

}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2f4850;
}

.benefit-card p {
    color: #5f7378;
    font-size: 0.95rem;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: none;
    color: #111;
    font-size: 3.5rem;
    cursor: pointer;
    transition: 0.25s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    transform: translateY(-50%) scale(1.08);
}

.arrow-left {
    left: 18px;
}

.arrow-right {
    right: 18px;
}

/* DEMO */
.demo-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px 60px;
}

.demo-text {
    margin-bottom: 18px;

}

.demo-text h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #27454d;
    border: 3px solid #FFB937;
    border-radius: 50px;
    white-space: nowrap;
    max-width: 100px;
    text-align: center;
}

.demo-text p {
    color: #5b6f75;
    max-width: 700px;

}

.demo-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
    border: 3px solid #dff6ff;
}

.demo-image-wrapper img {
    width: 100%;
    display: block;
    min-height: 260px;
    object-fit: cover;
}

.play-demo-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 300px;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;


    border: 3px solid black;
    border-radius: 50px;
    background: linear-gradient(#EDEB48, #FF9D00);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
    text-decoration: none;
}

.play-demo-btn i {
    margin-left: 3px;
}
.play-demo-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 20px rgba(255, 247, 184, 0.8),
    0 12px 30px rgba(0, 0, 0, 0.25);
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 24px 16px;
    background: #fbe8c5;
    border-top: 1px solid #fbb737;
    color: #567078;
    font-size: 0.95rem;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1200;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SIDEBAR */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.14);
    z-index: 1300;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px;
    border-bottom: 1px solid #fbb737;
}

.cart-header h2 {
    font-size: 1.3rem;
    color: #27454d;
}

.close-cart {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    color: #444;
}

.cart-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fbb737;
    border-radius: 18px;
    padding: 12px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #2f4850;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 6px;
}

.cart-item-info span {
    font-weight: 700;
    color: #53b96c;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    padding-top: 6px;
    border-top: 1px solid #f9b637;
    color: #2f4850;
}

.checkout-btn {
    border: none;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EDEB48, #FF9D00);
    color: black;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

/* TABLET */
@media (max-width: 900px) {
    .benefits-shell {
        padding: 36px 60px;
    }

    .benefit-card {
        width: 190px;
        min-height: 175px;
        padding: 20px 16px;
    }

    .benefit-card.active {
        width: 220px;
        min-height: 195px;
    }
}

/* MOBIL */
@media (max-width: 767px) {
    .site-header {
        padding: 10px 12px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .header-center {
        gap: 8px;
    }

    .header-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .header-search-pill {
        height: 40px;
        width: 180px;
        max-width: 180px;
        min-width: 0;
        padding: 0 12px;
        flex: 0 0 180px;
    }

    .header-search-pill input {
        font-size: 0.85rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .price {
        flex: 1;
        font-size: 0.85rem;
        min-height: 46px;
        padding: 8px 10px;
    }

    .badge {
        flex: 2;
        font-size: 0.85rem;
        min-height: 46px;
        padding: 8px 10px;
        gap: 8px;
    }
    .benefits-title {
        font-size: 1.6rem;
    }

    .benefits-shell {
        padding: 20px 16px;
        min-height: 260px;
    }

    .benefits-track {
        position: relative;
        width: 100%;
        min-height: 190px;
        display: block;
    }

    .benefit-card {
        display: none;
        width: 100%;
        max-width: 290px;
        min-height: 190px;
        margin: 0 auto;
        padding: 24px 20px;
        opacity: 1;
        transform: none;
    }

    .benefit-card.active {
        display: flex;
        width: 100%;
        max-width: 250px;
        min-height: 190px;
    }

    .arrow-btn {
        width: 48px;
        height: 48px;
        font-size: 2.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .arrow-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .arrow-left:hover,
    .arrow-right:hover {
        transform: translateY(-50%) scale(1.05);
    }
}

/* DESKTOP */
@media (min-width: 768px) {
    .site-header {
        padding: 18px 28px;
    }

    .logo {
        font-size: 1.6rem;
    }

    .hero-section {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        padding: 50px 28px 20px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .benefits-section {
        padding: 30px 28px 20px;
    }

    .demo-section {
        padding: 60px 28px 80px;
    }

    .demo-text h2 {
        font-size: 2.2rem;
    }
}