/* ==========================================================================
   THEME SETUP - Skift kun her for at ændre hele siden
   ========================================================================== */
:root {
    /* Baggrund og overordnet layout */
    --backgroundColor: #f8fafc; /* Prøv #0f172a for Dark Mode */
    --hero-img: url('bg.jpg');
    
    /* Tekstfarver */
    --nameTextColor: #0f172a;
    --cardTextColor: #1e293b;
    --cardTextMutedColor: #64748b;
    
    /* Card/Box indstillinger */
    --boxBackgroundColor: #ffffff;
    --boxTextColor: #0f172a;
    --boxBorderColor: rgba(0, 0, 0, 0.08);
    /*--cardHoverBg: rgba(0, 0, 0, 0.01);*/
    --cardHoverBg: rgba(255, 255, 255, 0.8);
    
    /* Knapper & Accenter */
    --buttonBackgroundColor: #000000;
    --buttonBorderColor: #000000;
    --buttonTextColor: #ffffff;
    
    /* Skygger */
    --shadowColor: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   CORE RESET & LAYOUT
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--backgroundColor);
    font-family: 'Inter', sans-serif;
    color: var(--cardTextColor);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

@media (min-width: 500px) {
    body {
        display: flex;
        justify-content: center;
    }
}

/* ==========================================================================
   DYNAMISK BAGGRUND (Universelt Fade)
   ========================================================================== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px;
    z-index: -1;
    display: flex;
    justify-content: center;
}

/* Side-blur effekten til desktop */
.hero-side-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.95);
    opacity: 0.4;
    /* Gør bunden gennemsigtig så body-farven ses */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Det skarpe center-billede */
.hero-image {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 100%;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center 20%;
    /* Universelt fade: billedet bliver gennemsigtigt i bunden */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

/* ==========================================================================
   CONTAINER & HEADER
   ========================================================================== */
.container {
    width: 100%;
    max-width: 480px;
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    display: block;
}

.cards-container {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

@media (min-width: 992px) {
    .container {
        max-width: 640px;
        padding-top: 180px;
    }
    .name {
        font-size: 3rem;
    }
}

.profile-pic img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--boxBorderColor);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px var(--shadowColor);
}

.name {
    color: var(--nameTextColor);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

/*.bio {
    color: var(--cardTextMutedColor);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 40px;
}*/

.bio {
    display: inline-block; /* Gør at baggrunden kun fylder teksten */
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15); /* Lysere boks til mørke temaer */
    backdrop-filter: blur(8px); /* Gør baggrunden sløret bag teksten */
    -webkit-backdrop-filter: blur(8px);
    color: var(--cardTextColor);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 5px;
    margin-bottom: 40px;
}

/*.bio {
    color: var(--cardTextColor);
    text-shadow: 
        0px 1px 3px rgba(0,0,0,0.1), /* Blød skygge til lyse baggrunde */
        0px 0px 10px rgba(255,255,255,0.5); /* Let glød til mørke baggrunde */
    font-weight: 500; /* Gør teksten en anelse tykkere for læsbarhed */
	margin-bottom: 40px;
}*/

.section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cardTextMutedColor);
    margin: 30px 0 15px;
    font-weight: 600;
    text-align: left;
    padding-left: 5px;
}

.group-header {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nameTextColor);
    margin: 45px 0 15px 5px;
}

/* ==========================================================================
   CARD SYSTEM
   ========================================================================== */
.card {
    background: var(--boxBackgroundColor);
    border: 1px solid var(--boxBorderColor);
    border-radius: 26px;
    padding: 22px;
    margin-bottom: 18px;
    text-align: left;
    box-shadow: 0 4px 12px var(--shadowColor);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Link Cards */
.link-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.link-card.has-thumb .thumb {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin-right: 18px;
    object-fit: cover;
}

.link-card .content { flex: 1; }
.link-card .title { display: block; font-weight: 700; color: var(--boxTextColor); font-size: 1.05rem; }
.link-card .desc { font-size: 0.85rem; color: var(--cardTextMutedColor); margin-top: 2px; }
.link-card .arrow { color: var(--boxTextColor); opacity: 0.7; font-size: 1.3rem; margin-left: 10px; }

.link-card:hover {
    transform: translateY(-3px);
    background: var(--cardHoverBg);
}

/* Swipe Slider */
.slider-card { padding-right: 0; max-width: 100%; overflow: hidden; }
.card-label { font-size: 0.7rem; color: var(--cardTextMutedColor); margin-bottom: 12px; display: block; text-transform: uppercase; letter-spacing: 1px; }

.swipe-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    min-width: 0; /* Vigtigt: Tillader flex-containeren at være mindre end sit indhold */
    gap: 15px;
    padding-bottom: 15px;
    padding-right: 22px; /* Giver lidt luft i slutningen af rækken */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.swipe-container::-webkit-scrollbar { display: none; }

/* Swipe Slider Styles */
.swipe-item {
    flex: 0 0 150px; /* flex-grow: 0, flex-shrink: 0, flex-basis: 150px */
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.swipe-item:hover {
    transform: scale(1.02); /* Giver en lille feedback når man holder over det */
}

.swipe-item img {
    width: 100%;
    height: 150px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 10px;
    display: block;
}

.item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--boxTextColor);
    display: block;
    text-align: center;
    line-height: 1.2;
}

.item-price {
    font-size: 0.8rem;
    color: var(--buttonBackgroundColor);
    font-weight: 700;
    display: block;
    text-align: center;
    margin-top: 4px;
}

/* Recommended Card */
.recommended-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--buttonBackgroundColor);
}
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor);
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}
.rec-img { width: 100%; object-fit: cover; display: block; }
.rec-content { padding: 22px; }
.rec-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.rec-content h3 { font-size: 1.3rem; color: var(--boxTextColor); }
.rec-content .price { color: var(--buttonBackgroundColor); font-weight: 700; font-size: 1.1rem; }
.rec-content p { color: var(--cardTextMutedColor); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }
.rec-btn { display: block; text-align: center; background: var(--buttonBackgroundColor); color: var(--buttonTextColor); padding: 16px; border-radius: 18px; text-decoration: none; font-weight: 700; }

/* YouTube Card */
.video-card { padding: 0; overflow: hidden; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-info { padding: 15px 20px; }

/* Grid Card (Pills) */
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.pill {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--boxBorderColor);
    color: var(--boxTextColor);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}
.pill:hover { background: var(--buttonBackgroundColor); color: var(--buttonTextColor); }

/* Subscribe Card */
.sub-form { display: flex; gap: 10px; margin-top: 10px; }
.sub-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--boxBorderColor);
    padding: 14px;
    border-radius: 14px;
    outline: none;
}
.sub-form button {
    background: var(--buttonBackgroundColor);
    border: none;
    padding: 0 20px;
    border-radius: 14px;
    color: var(--buttonTextColor);
    font-weight: 700;
    cursor: pointer;
}

/* Standard Produkt Card Styles */
.product-card {
    padding: 0; /* Billedet skal gå helt til kant */
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Opdateret header for at give prisen mere plads */
.product-header {
    display: flex;
    flex-direction: column; /* Stabler tekst og pris lodret */
    gap: 6px;               /* Luft mellem titel og pris */
    margin-bottom: 12px;    /* Mere luft ned til beskrivelsen */
}

.product-header h3 {
    font-size: 1.2rem;      /* Lidt større titel */
    font-weight: 700;
    color: var(--boxTextColor);
    line-height: 1.2;
}

.product-header .price {
    display: inline-block;
    color: var(--buttonBackgroundColor);
    font-weight: 700;
    font-size: 1.15rem;     /* Gør prisen mere markant */
    letter-spacing: -0.01em;
}

/* Tilføj lidt ekstra padding til selve content-området */
.product-content {
    padding: 24px;          /* Mere luft i hele boksen */
}

.product-content p {
    color: var(--cardTextMutedColor);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-btn {
    display: block;
    text-align: center;
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor);
    padding: 14px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    transition: filter 0.2s ease;
}

.product-btn:hover {
    filter: brightness(1.1);
}

/* Social Icons - Free floating */
.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 25px;         /* Plads mellem ikonerne */
    margin: 20px 0;    /* Luft over og under rækken */
    padding: 10px;
}

.social-icons-row a {
    color: var(--nameTextColor); /* Bruger din primære tekstfarve */
    font-size: 1.8rem;           /* Gør ikonerne store og tydelige */
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-row a:hover {
    color: var(--buttonBackgroundColor); /* Skifter til din blå accent ved hover */
    transform: translateY(-3px);         /* Lille hop opad */
}

/* Sørg for at ikonerne har samme vægt hvis de blandes */
.social-icons-row i {
    line-height: 1;
}

/* Subscribe Card Styling */
.subscribe-card {
    text-align: center;
    padding: 35px 25px !important;
}

.sub-icon {
    font-size: 2rem;
    color: var(--buttonBackgroundColor);
    margin-bottom: 15px;
    opacity: 0.9;
}

.subscribe-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--boxTextColor);
    margin-bottom: 8px;
}

.subscribe-card p {
    font-size: 0.95rem;
    color: var(--cardTextMutedColor);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Form Layout */
.sub-form {
    display: flex;
    flex-direction: column; /* Stabler dem på mobil for bedre plads */
    gap: 12px;
}

.sub-form input {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--boxBorderColor);
    background: rgba(0, 0, 0, 0.02);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.sub-form input:focus {
    border-color: var(--buttonBackgroundColor);
}

.sub-form button {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.sub-form button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


/* ==========================================================================
   FOOTER & GHOST BUTTONS
   ========================================================================== */
.social-card { display: flex; justify-content: space-around; padding: 18px; }
.social-card a { color: var(--boxTextColor); text-decoration: none; font-weight: 600; font-size: 0.85rem; }

.button-row-ghost { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.ghost-btn { color: var(--cardTextMutedColor); text-decoration: none; font-size: 0.75rem; }

/* Spotify Card */
.spotify-card {
    padding: 22px !important;
}

.spotify-player {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.05);
}

.spotify-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spotify-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--boxBorderColor);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.spotify-list-item:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.spotify-list-item.active {
    border-color: #1DB954;
    background: rgba(29, 185, 84, 0.05);
    color: #1DB954;
}

.spotify-list-item i {
    opacity: 0.7;
}

.spotify-list-item.active i {
    opacity: 1;
}

/* Footer CTA Container */
.footer-cta-container {
    margin: 60px 0 20px;
    padding: 0 10px;
}

.main-cta-btn {
    display: block;
    width: 100%;
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor);
    text-decoration: none;
    padding: 20px;
    border-radius: 22px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadowColor);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--buttonBorderColor);
}

.main-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadowColor);
    filter: brightness(1.1);
}

.main-cta-btn:active {
    transform: translateY(-2px);
}

footer { margin-top: 60px; font-size: 0.75rem; color: var(--cardTextMutedColor); padding-bottom: 40px; }

/* ==========================================================================
   SALES LETTER STYLING (For Marketplace Products)
   ========================================================================== */
.sales-letter-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    background: var(--boxBackgroundColor);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadowColor);
    border: 1px solid var(--boxBorderColor);
    text-align: left;
}

.sales-letter-header {
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor);
    padding: 60px 40px;
    text-align: center;
}

.sales-letter-header h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--buttonTextColor);
    letter-spacing: -1px;
    line-height: 1.1;
}

.sales-letter-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.sales-letter-image-container {
    padding: 0 30px;
    margin-top: -40px; /* Trækker billedet lidt op i headeren for et moderne look */
    text-align: center;
}

.sales-letter-image {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--boxBackgroundColor);
    background: var(--boxBackgroundColor);
}

.sales-letter-image-fallback {
    width: 100%;
    max-width: 600px;
    height: 350px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.05) 100%);
    border-radius: 24px;
    font-size: 120px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--boxBackgroundColor);
}

.sales-letter-content {
    padding: 40px 24px;
}

@media (min-width: 768px) {
    .sales-letter-content {
        padding: 60px 50px;
    }
}

.sales-letter-content h1 {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--nameTextColor);
    text-align: center;
}

.sales-letter-content h2 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 48px 0 24px;
    color: var(--nameTextColor);
}

.sales-letter-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--cardTextColor);
}

.sales-letter-content ul {
    margin-bottom: 32px;
    padding-left: 20px;
    list-style: none;
}

.sales-letter-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
}

.sales-letter-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--buttonBackgroundColor);
    font-weight: 800;
}

.sales-letter-content strong {
    color: var(--nameTextColor);
    font-weight: 700;
}

.sales-letter-content small {
    display: block;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--cardTextMutedColor);
    margin-top: 40px;
    border-top: 1px solid var(--boxBorderColor);
    padding-top: 20px;
}

.sales-letter-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 40px 0 20px;
    color: var(--nameTextColor);
    line-height: 1.2;
}

.sales-letter-list {
    margin-bottom: 32px;
    padding-left: 0;
    list-style: none;
}

.sales-letter-list li {
    margin-bottom: 16px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: var(--cardTextColor);
    line-height: 1.5;
}

.sales-letter-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #34c759;
}

.sales-letter-cta-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.02);
    padding: 40px 20px;
    border: 2px dashed var(--boxBorderColor);
    border-radius: 24px;
    margin: 50px 0;
}

.sales-letter-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--nameTextColor);
}

.sales-letter-btn {
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor) !important;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 18px;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--buttonBorderColor);
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

.sales-letter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadowColor);
    filter: brightness(1.1);
}

.swipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-right: 22px; /* Tilføjer plads til pilen */
}
.swipe-header .card-label { margin-bottom: 0; }
.swipe-hint {
    font-size: 0.9rem;
    color: var(--cardTextMutedColor);
    opacity: 0.6;
    animation: swipeBounce 1.5s infinite;
}

@keyframes swipeBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* ==========================================================================
   NEW COMPONENTS STYLING (FAQ, Testimonials, Countdown, Divider)
   ========================================================================== */

/* FAQ / Accordion */
.faq-container {
    width: 100%;
    margin-bottom: 18px;
}

.faq-item {
    background: var(--boxBackgroundColor);
    border: 1px solid var(--boxBorderColor);
    border-radius: 18px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--boxTextColor);
    user-select: none;
}

.faq-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--cardTextMutedColor);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 18px;
}

.testimonial-card {
    background: var(--boxBackgroundColor);
    border: 1px solid var(--boxBorderColor);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 4px 12px var(--shadowColor);
}

.testimonial-stars {
    margin-bottom: 10px;
}

.testimonial-stars .star {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-stars .star.active {
    color: #f59e0b;
}

.testimonial-text {
    font-style: italic;
    color: var(--cardTextColor);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial-name {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--cardTextMutedColor);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Countdown Timer */
.countdown-container {
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor);
    border-radius: 26px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadowColor);
    margin-bottom: 18px;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.countdown-unit .num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-unit .label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.7;
}

/* Divider / Spacer */
.divider-container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.divider-container.type-spacer {
    margin-bottom: 0; /* Spacers håndterer selv deres margin via height */
}

/* ==========================================================================
   ESSENTIALS PRODUCT STYLING
   ========================================================================== */
.cta-box-essentials {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 2px solid var(--buttonBackgroundColor) !important;
    position: relative;
    overflow: hidden;
    padding: 40px 20px !important;
}

.essentials-badge {
    background: var(--buttonBackgroundColor);
    color: var(--buttonTextColor);
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.essentials-timer {
    font-weight: 700;
    color: #34c759;
    margin-bottom: 10px;
    display: block;
}

.essentials-price-large {
    font-size: 3rem;
    margin: 15px 0;
    font-weight: 900;
    color: var(--nameTextColor);
}

.essentials-btn-primary {
    background: var(--buttonBackgroundColor) !important;
    color: var(--buttonTextColor) !important;
    font-size: 1.3rem !important;
    padding: 20px !important;
    width: 100%;
    margin-top: 10px !important;
}

.upsell-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--boxBorderColor);
}

.upsell-text {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--cardTextMutedColor);
}

.upsell-link {
    color: var(--buttonBackgroundColor);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.upsell-link:disabled {
    pointer-events: none;
    opacity: 0.6;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--cardTextMutedColor);
}

/* Marketplace Terms Checkbox */
.terms-checkbox-container {
    text-align: left;
    font-size: 0.9em;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-checkbox-container input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.terms-checkbox-container label {
    cursor: pointer;
    font-weight: normal;
    color: var(--boxTextColor, #666);
    line-height: 1.4;
}

.terms-checkbox-container label a {
    text-decoration: underline;
    color: inherit;
}

.terms-checkbox-container label span {
    display: block;
    margin-top: 4px;
    font-weight: bold;
    color: var(--boxTextColor, #333);
}