:root {
    --bg: #f3f4f6;
    --bg-soft: #e5e7eb;
    --bg-alt: #eff6ff;
    --card-bg: #ffffff;
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.10);
    --accent-alt: #0ea5e9;
    --accent-alt-soft: rgba(14, 165, 233, 0.10);
    --text: #0f172a;
    --text-muted: #6b7280;
    --border-subtle: #e5e7eb;
    --max-width: 1040px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* Reset-ish */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #e5f0ff 0, #f9fafb 45%, #f3f4f6 100%);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    background-color: white;
}

/* Layout helpers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header / nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background-color: rgba(248, 250, 252, 0.94);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--accent-soft);
    color: var(--accent);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.logo-text {
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 1.0rem;
    text-transform: uppercase;
    color: #0f172a;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.35rem 0.15rem;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover {
    color: #0f172a;
    border-color: rgba(148, 163, 184, 0.7);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 2.7rem 0 2.4rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.1rem, 4vw, 2.7rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
}

.hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-alt);
    margin-bottom: 0.35rem;
}

.hero-text p {
    margin: 0.2rem 0;
    color: var(--text-muted);
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Hero illustration */
.hero-illo {
    position: relative;
    border-radius: 24px;
    padding: 1.6rem 1.4rem;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.10), #ffffff);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-illo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #f9fafb;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--text-muted);
}

.pill span {
    font-size: 1rem;
}

.hero-illo-main {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.hero-emoji {
    font-size: 2.6rem;
    filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.18));
}

.hero-illo-text h2 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.hero-illo-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-illo-orb {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 60%);
    right: -40px;
    top: -30px;
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, background-color 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
    background: linear-gradient(to right, #f97316, #ea580c);
    color: #0f172a;
    box-shadow: 0 16px 40px rgba(248, 113, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(248, 113, 22, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: rgba(148, 163, 184, 0.7);
}

.btn-secondary:hover {
    border-color: rgba(30, 64, 175, 0.9);
    background-color: rgba(191, 219, 254, 0.45);
}

/* Sections */
.section {
    padding: 2.7rem 0;
}

.section-alt {
    background: linear-gradient(to bottom, #eff6ff, #f9fafb);
}

.section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.section-intro {
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

/* Grids & cards */
.grid {
    display: grid;
    gap: 1.3rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.1rem 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.2rem;
}

.card-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.card p {
    margin: 0.25rem 0;
    font-size: 0.92rem;
}

.card ul {
    margin: 0.4rem 0 0.4rem 1.1rem;
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    background: var(--accent-soft);
    color: #9a3412;
    border: 1px solid rgba(248, 184, 139, 0.7);
    margin-bottom: 0.3rem;
}

.badge-alt {
    background: var(--accent-alt-soft);
    color: #0369a1;
    border-color: rgba(125, 211, 252, 0.9);
}

/* Guide links */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
}

.link-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    text-decoration: none;
    color: var(--text);
    font-size: 0.92rem;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, border-color 0.1s ease-out, background-color 0.1s ease-out;
}

.link-card h3 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
}

.link-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    border-color: rgba(249, 115, 22, 0.8);
    background-color: #fefce8;
}

/* Product rows */
.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    margin-top: 0.8rem;
}

@media (max-width: 768px) {
    .product-list {
        grid-template-columns: 1fr;
    }
}

.product {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.8rem;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.87rem;
}

.product-image {
    width: 100%;
    height: 140px;
    background: var(--bg-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--text-muted);
}

.product-main {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.product-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.product-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}

.product-old-price {
    color: #dc2626;
    text-decoration: line-through;
    margin-left: 0.4rem;
    font-size: 0.74rem;
}

.product-cta {
    margin-top: 0.3rem;
}

.product-cta a {
    display: inline-block;
    font-size: 0.82rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(30, 64, 175, 0.9);
    text-decoration: none;
    color: #1e3a8a;
    background: linear-gradient(to right, rgba(219, 234, 254, 0.8), rgba(191, 219, 254, 0.4));
    transition: background 0.2s;
    white-space: nowrap;
}

.product-cta a:hover {
    background: rgba(191, 219, 254, 0.95);
}

@media (max-width: 640px) {
    .product-image {
        height: 120px;
    }
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding: 1.6rem 0 2rem;
    background: #f9fafb;
}

.footer-inner {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
    }

    .hero-illo {
        order: -1;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: #f9fafb;
        border-bottom: 1px solid rgba(148, 163, 184, 0.35);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.18s ease-out;
    }

    .nav-links.nav-open {
        max-height: 260px;
    }

    .nav-links li {
        padding: 0.35rem 1.25rem 0.4rem;
    }

    .hero {
        padding-top: 2.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.disclaimer {
    background: transparent;
}

.disclaimer-inner {
    margin: 0.5rem auto 0.8rem;
    padding: 0.45rem 0.85rem;
    max-width: 900px;
    background: #fffdfa;
    border-left: 3px solid #f5d7a1;
    border-radius: 6px;
    font-size: 0.78rem;
    color: #5e4633;
    line-height: 1.4;
}

/* --- Seasonal Christmas theme (Nov–Dec) --- */
.is-christmas .logo-mark {
    background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(239,68,68,0.18));
    color: #16a34a; /* green */
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

.xmas-banner {
    position: relative;
    z-index: 40;
    background: linear-gradient(90deg, #065f46, #047857, #059669);
    color: #ecfdf5;
    border-bottom: 1px solid rgba(16,185,129,0.35);
}
.xmas-banner-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
}
.xmas-banner-emoji { font-size: 1.15rem; }
.xmas-banner-text { font-size: 0.95rem; }
.xmas-banner-text strong { color: #ffffff; }
.xmas-banner-links { margin-left: auto; display: flex; gap: 0.6rem; }
.xmas-banner-links a {
    color: #ecfdf5;
    text-decoration: none;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(236,253,245,0.25);
    background: rgba(255,255,255,0.06);
}
.xmas-banner-links a:hover { background: rgba(255,255,255,0.12); }

/* Julebadge ved H1 */
.xmas-badge-wrap { display: inline-block; margin-left: 0.5rem; }
.xmas-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.8rem;
    line-height: 1.2;
    border-radius: 999px;
    color: #065f46;
    background: #d1fae5; /* emerald-100 */
    border: 1px solid #a7f3d0; /* emerald-200 */
}

@media (max-width: 720px) {
    .xmas-banner-inner { flex-wrap: wrap; }
    .xmas-banner-links { width: 100%; margin-left: 0; }
}
