html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

    background: #111315;
    color: #F4F1E8;

    font-family: "Zalando Sans";

    display: flex;
    flex-direction: column;
    align-items: center;

    scroll-behavior: smooth;
}

:root {
    --accent: #D6C19A;
    --accent-dark: #B79A69;

    --black: #111315;
    --black-soft: #171A1D;
    --black-card: #1D2023;

    --beige: #F1EFE7;
    --beige-soft: #E5DDCE;
    --beige-muted: #CFC2AC;

    --white: #FFFFFF;
    --white-muted: rgba(255, 255, 255, 0.82);

    --background: #111315;
}

.standard {
    width: 1200px;
    margin: 80px 0;
}

.standard_h2 {
    font-size: 30px;
    font-weight: 700;
    font-family: "Zalando Sans Expanded";
    color: var(--accent);

    margin: 0;
}

.standard_h3 {
    font-size: 18px;
    font-weight: 500;
    font-family: "Zalando Sans SemiExpanded";
    color: var(--beige);

    margin: 0;
    margin-top: 10px;
    margin-bottom: 30px;

    max-width: 600px;
}

.red_button {
    display: inline-block;
    border-radius: 1000px;
    padding: 12px 20px;

    font-size: 16px;
    font-weight: 600;
    font-family: "Zalando Sans";
    text-decoration: none;

    color: #111315;
    background: var(--accent);
    margin: 0;
    box-shadow: 0 8px 24px rgba(183,154,105,.25);

    transition: all 0.2s ease;
}

.red_button:hover {
    transform: scale(1.03);
}

.white_button {
    border-radius: 1000px;
    padding: 12px 20px;

    font-size: 16px;
    font-weight: 600;
    font-family: "Zalando Sans";
    text-decoration: none;

    color: #111315;
    background: var(--beige);
    margin: 0;
}

.dynamic_content {
    min-height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


nav {
    background: rgba(241, 239, 231, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 1000px;

    box-sizing: border-box;
    margin: 0;
    padding: 0 15px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 40px);

    z-index: 100;

    box-shadow: 0 8px 24px rgba(183,154,105,.25);
}

nav img {
    width: 55px;
    height: 55px;
    margin-right: 20px;

    transform-origin: center center;
    transition: all 0.2s ease;
}

nav img:hover {
    animation: logoWiggle 0.7s ease-in-out infinite;
}

@keyframes logoWiggle {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(-8deg); }
    40%  { transform: rotate(8deg); }
    60%  { transform: rotate(-6deg); }
    80%  { transform: rotate(4deg); }
    100% { transform: rotate(0deg); }
}

.nava {
    font-size: 16px;
    font-weight: 400;
    font-family: "Zalando Sans SemiExpanded";
    color: #111315;
    text-decoration: none;

    padding: 0 10px;
    transition: all 0.2s ease;
}

.nava:hover {
    font-weight: 600;
}

.navimga {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


footer {
    width: 100%;

    display: flex;
    flex-direction: column;

    background: var(--black-soft);
    color: var(--beige);

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    margin-top: 120px;
}

.footer_top {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.footer_top > div {
    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    padding: 45px 35px;
    box-sizing: border-box;
}

.footer_top > div:first-child {
    justify-content: center;
    align-items: center;
}

.footer_top > div:last-child {
    border-right: none;
}

.footer_top div img {
    width: 140px;
    max-width: 70%;
    height: auto;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.footer_top div img:hover {
    transform: scale(1.04);
}

.footer_top h2 {
    width: 100%;

    margin: 0 0 22px;

    font-size: 18px;
    font-weight: 600;
    color: var(--beige);
}

.footer_top a,
.footer_top p {
    width: 100%;

    margin: 0 0 12px;

    color: rgba(244, 241, 232, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer_top a {
    width: fit-content;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer_top a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer_top p {
    white-space: pre-line;
}

.footer_bottom {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: 0 auto;

    padding: 24px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_bottom p {
    margin: 0;

    color: rgba(244, 241, 232, 0.5);
    font-size: 14px;
}

.footer_bottom_links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer_bottom_links a {
    color: rgba(244, 241, 232, 0.5);
    font-size: 14px;
    text-decoration: none;

    transition: color 0.25s ease;
}

.footer_bottom_links a:hover {
    color: var(--accent);
}



.cookie_banner {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);

    width: 700px;
    max-width: calc(100% - 40px);

    padding: 22px 25px;
    box-sizing: border-box;

    background: rgba(23, 26, 29, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;

    color: var(--beige);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);

    z-index: 1000;
}

.cookie_banner_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie_banner_text {
    flex: 1;
}

.cookie_banner h2 {
    margin: 0 0 6px;

    font-family: "Zalando Sans Expanded";
    font-size: 18px;
    font-weight: 700;

    color: var(--accent);
}

.cookie_banner p {
    margin: 0;

    font-family: "Zalando Sans";
    font-size: 14px;
    line-height: 1.5;

    color: var(--white-muted);
}

.cookie_banner a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie_banner_buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie_banner button {
    padding: 11px 18px;

    border: none;
    border-radius: 1000px;

    font-family: "Zalando Sans";
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.cookie_banner button:hover {
    transform: scale(1.03);
}

#cookieReject {
    border: 1px solid rgba(255, 255, 255, 0.25);

    background: transparent;
    color: var(--beige);
}

#cookieReject:hover {
    border-color: var(--accent);
}

#cookieAccept {
    background: var(--accent);
    color: var(--black);

    box-shadow: 0 8px 24px rgba(183, 154, 105, 0.25);
}

#cookieAccept:hover {
    background: var(--accent-dark);
}

@media (max-width: 700px) {
    .cookie_banner {
        bottom: 15px;

        width: calc(100% - 30px);
        max-width: none;

        padding: 20px;
        border-radius: 20px;
    }

    .cookie_banner_content {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .cookie_banner_buttons {
        width: 100%;
    }

    .cookie_banner button {
        flex: 1;
    }
}




/* ==================================================
   MINDRE DESKTOP / STORA SURFPLATTOR
   1250px och mindre
================================================== */

@media (max-width: 1250px) {
    .standard {
        width: calc(100% - 80px);
        max-width: 1100px;
        margin: 70px 0;
    }

    .footer_top,
    .footer_bottom {
        width: calc(100% - 80px);
        max-width: 1100px;
    }

    .footer_top > div {
        padding: 40px 25px;
    }
}


/* ==================================================
   IPAD / SURFPLATTA
   1024px och mindre
================================================== */

@media (max-width: 1024px) {
    .standard {
        width: calc(100% - 60px);
        margin: 65px 0;
    }

    .standard_h2 {
        font-size: 28px;
    }

    .standard_h3 {
        font-size: 17px;
        max-width: 650px;
    }

    nav {
        top: 15px;
        max-width: calc(100% - 30px);
        padding: 0 12px;
    }

    nav img {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }

    nav a {
        font-size: 15px;
        padding: 0 8px;
    }

    footer {
        margin-top: 100px;
    }

    .footer_top {
        width: calc(100% - 60px);
        grid-template-columns: 1fr 1fr;
    }

    .footer_top > div {
        min-height: auto;
        padding: 40px 30px;
    }

    .footer_top > div:first-child {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer_top div img {
        width: 125px;
        max-width: 100%;
    }

    .footer_bottom {
        width: calc(100% - 60px);
    }
}


/* ==================================================
   MOBIL / MINDRE SURFPLATTA
   768px och mindre
================================================== */

@media (max-width: 810px) {
    .standard {
        width: calc(100% - 40px);
        margin: 55px 0;
    }

    .standard_h2 {
        font-size: 25px;
        line-height: 1.2;
    }

    .standard_h3 {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 8px;
        margin-bottom: 25px;
    }

    .red_button,
    .white_button {
        padding: 11px 18px;
        font-size: 15px;
    }

    nav {
        width: calc(100% - 20px);

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav_hide_mobile {
        display: none;
    }

    .nav_logo,
    .nav_mobile {
        display: flex;
        align-items: center;
    }

    .nav_logo img {
        width: 42px;
        height: 42px;
        margin: 0;
    }

    .nav_mobile {
        font-size: 14px;
        padding: 10px 14px;
        text-decoration: none;
        color: var(--black);
    }

    .nav_mobile:last-child {
        background: var(--accent);
        border-radius: 1000px;
        font-weight: 600;
    }

    footer {
        margin-top: 80px;
    }

    .footer_top {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
    }

    .footer_top > div {
        min-height: auto;
        padding: 30px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer_top > div:first-child {
        align-items: flex-start;
        padding-top: 40px;
    }

    .footer_top > div:last-child {
        border-bottom: none;
    }

    .footer_top div img {
        width: 115px;
        max-width: 100%;
    }

    .footer_top h2 {
        margin-bottom: 15px;
        font-size: 17px;
    }

    .footer_top a,
    .footer_top p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .footer_bottom {
        width: calc(100% - 40px);

        padding: 25px 0 35px;

        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer_bottom_links {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .footer_bottom p,
    .footer_bottom_links a {
        font-size: 13px;
    }
}


/* ==================================================
   MINDRE MOBILER
   480px och mindre
================================================== */

@media (max-width: 480px) {
    .standard {
        width: calc(100% - 30px);
        margin: 45px 0;
    }

    .standard_h2 {
        font-size: 23px;
    }

    .standard_h3 {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .red_button,
    .white_button {
        padding: 10px 16px;
        font-size: 14px;
    }

    footer {
        margin-top: 65px;
    }

    .footer_top,
    .footer_bottom {
        width: calc(100% - 30px);
    }

    .footer_top > div {
        padding: 25px 0;
    }

    .footer_top > div:first-child {
        padding-top: 35px;
    }

    .footer_top div img {
        width: 100px;
    }

    .footer_top h2 {
        font-size: 16px;
    }

    .footer_top a,
    .footer_top p {
        font-size: 14px;
    }

    .footer_bottom {
        padding-bottom: 30px;
    }

    .footer_bottom_links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}