:root {
    --klarna-pink: #FFB3C7;
    --klarna-black: #0A0A0A;
    --klarna-grey: #F2F2F2;
    --text-color: #333;
    --bg-color: #fff;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--klarna-black);
}

.logo .highlight {
    color: var(--klarna-black);
    /* Branding choice */
}

.site-header nav a {
    margin-left: 25px;
    font-weight: 500;
}

.site-header nav a:hover {
    color: #FF8BA7;
    /* Darker pink */
}

/* Hero */
.hero {
    background-color: var(--klarna-pink);
    color: var(--klarna-black);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Search Box */
.search-box {
    background: white;
    padding: 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    flex-wrap: wrap;
    /* Handle small label */
}

.search-box input {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    flex-grow: 1;
    border-radius: 50px;
    outline: none;
}

.search-btn {
    background: var(--klarna-black);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.search-box .small-note {
    width: 100%;
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-weight: 500;
}

.badge {
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: #fafafa;
}

.info-section h2,
.categories-section h2,
.featured-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Categories */
.categories-section {
    padding: 60px 0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cat-card {
    background: var(--klarna-grey);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s;
}

.cat-card:hover {
    transform: translateY(-5px);
    background: #e8e8e8;
}

.cat-card .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.cat-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Featured / Guides */
.featured-section {
    padding: 60px 0;
    background: #fff;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    transition: border-color 0.2s;
}

.guide-card:hover {
    border-color: var(--klarna-black);
}

.guide-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.guide-card .read-more {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--klarna-black);
    text-decoration: underline;
}

/* CTA */
.cta-section {
    background: var(--klarna-black);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-large {
    background: white;
    color: var(--klarna-black);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
}

/* Footer */
.site-footer {
    background: #fafafa;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.site-footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: #666;
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* ============================================================================
   MOBILE RESPONSIVENESS
   ============================================================================ */

/* Tablet */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .cta-section h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header - show nav on mobile */
    .site-header {
        padding: 12px 0;
    }

    .site-header .container {
        flex-wrap: wrap;
    }

    .logo {
        font-size: 20px;
    }

    .site-header nav {
        display: flex;
        gap: 0;
    }

    .site-header nav a {
        margin-left: 15px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 25px;
    }

    /* Search */
    .search-box {
        border-radius: 16px;
        padding: 8px;
    }

    .search-box input {
        padding: 12px 15px;
        font-size: 15px;
        width: 100%;
    }

    .search-btn {
        width: 100%;
        margin-top: 8px;
        border-radius: 12px;
        padding: 12px;
    }

    /* Trust badges */
    .trust-badges {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 13px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Grids */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cat-card {
        padding: 25px 15px;
    }

    .cat-card .icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .cat-card h3 {
        font-size: 16px;
    }

    /* Sections */
    .info-section,
    .categories-section,
    .featured-section {
        padding: 40px 0;
    }

    .info-section h2,
    .categories-section h2,
    .featured-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Footer */
    .site-footer .container {
        grid-template-columns: 1fr;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 13px;
        padding: 10px 0;
    }

    /* Tables - make scrollable */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cat-card {
        padding: 20px 10px;
    }

    .cat-card h3 {
        font-size: 14px;
    }

    .cat-card .icon {
        font-size: 28px;
    }

    .logo {
        font-size: 18px;
    }

    .site-header nav a {
        margin-left: 10px;
        font-size: 13px;
    }
}