* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #111;
    color: #eee;
    line-height: 1.6;
}

.main-nav {
    background: #181818;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #eee;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
}

.main-nav a:hover {
    color: #e63946;
}

.logo-link {
    padding: 0 !important;
}

.logo {
    width: 50px;
    height: auto;
    display: block;
}

.hero {
    text-align: center;
    padding: 70px 20px 90px;
    background:
        radial-gradient(circle at center, #333 0%, #111 65%);
}

.hero-logo {
    max-width: min(700px, 90%);
    height: auto;
}

.tagline {
    color: #aaa;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 20px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin: 20px 0;
}

.hero-text {
    max-width: 750px;
    margin: auto;
    font-size: 1.2rem;
    color: #ccc;
}

.hero-buttons {
    margin-top: 30px;
}

.cta {
    display: inline-block;
    padding: 13px 28px;
    background: #e63946;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin: 8px;
    font-weight: bold;
}

.cta:hover {
    background: #ff4f5e;
}

.cta.secondary {
    background: #333;
}

section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

.feature-section {
    max-width: 900px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
}

.feature-section h2,
.categories h2,
.story-section h2,
.decision-section h2,
.shop-teaser h2,
.newsletter-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    background: #1d1d1d;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    text-decoration: none;
    color: #eee;
    transition: transform .2s, border-color .2s;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #e63946;
}

.category-icon {
    font-size: 2.5rem;
}

.category-card h3 {
    font-size: 1.5rem;
}

.category-card p {
    color: #bbb;
}

.story-section {
    max-width: 900px;
}

.story-box {
    background: linear-gradient(135deg, #222, #151515);
    border-left: 4px solid #e63946;
    padding: 40px;
    border-radius: 8px;
}

.section-label {
    color: #e63946;
    font-weight: bold;
    letter-spacing: 2px;
}

.story-intro {
    font-size: 1.2rem;
    color: #ccc;
}

.decision-section {
    text-align: center;
}

.decision-box {
    background: #1b1b1b;
    border-radius: 10px;
    padding: 50px 30px;
}

.shop-teaser {
    text-align: center;
}

.newsletter-section {
    text-align: center;
    background: #181818;
    max-width: none;
}

.footer {
    background: #0c0c0c;
    color: #aaa;
    padding: 50px 20px;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-note {
    font-size: .85rem;
    color: #777;
}


/* =========================
   COOKIE
========================= */

#cookie-banner {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-box {
    max-width: 500px;
    background: #fff;
    color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.cookie-box button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#cookie-accept {
    background: #e63946;
    color: white;
}

#cookie-settings {
    background: #ddd;
}


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

@media (max-width: 700px) {

    .main-nav {
        gap: 2px;
    }

    .main-nav a {
        font-size: .9rem;
        padding: 6px 7px;
    }

    .hero {
        padding: 50px 15px 70px;
    }

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

    .footer-inner {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

}
