:root {
    --bg-color: #D9D9D9;
    --text-color: #000000;
    --brand-color: #C0FF01;
}

/* === DENNA LILLA KOD LÖSER ATT KNAPPEN HAMNAR UTANFÖR === */
html, body {
    overflow-x: hidden; 
    width: 100%;
}

body {
    font-family: 'Geist', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.uppercase { text-transform: uppercase; }

/* --- HEADER & KNAPP --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    box-sizing: border-box;
    z-index: 1000;
}

.logo a {
    display: flex; /* Viktigt för att bilden ska centreras vertikalt i länken */
    align-items: center;
    text-decoration: none;
}

/* Styr storleken på logotyp-bilden */
.site-logo-img {
    height: 40px; /* Ändra denna siffra för att göra loggan större/mindre på desktop */
    width: auto;
    display: block;
}

.menu-toggle {
    background: var(--brand-color);
    color: var(--text-color);
    -webkit-appearance: none;
    border: none;
    padding: 8px 24px;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0;
    transition: transform 0.2s ease;
}

.menu-toggle:hover {
    transform: scale(1.03);
}

/* --- MENY OVERLAY --- */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    z-index: 900;
    cursor: pointer;
}

body.menu-is-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* --- DEN STORA GULA NAVIGATIONEN --- */
.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: var(--brand-color);
    z-index: 950;
    display: flex;
    flex-direction: column;
    padding: 120px 40px 40px;
    box-sizing: border-box;
    
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.menu-is-open .menu-panel {
    transform: translateX(0);
}

/* --- NAV LÄNKARNA MED HOVER EFFEKTEN --- */
.menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    margin-bottom: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: baseline;
}

.nav-number {
    font-size: 12px;
    font-weight: 700;
    margin-right: 20px;
    letter-spacing: -0.05em;
    line-height: 1;
}

.text-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1; 
}

.text-default, .text-hover {
    display: block;
    padding-bottom: 0.2em;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-hover {
    position: absolute;
    top: 100%;
    left: 0;
}

.nav-link:hover .text-default {
    transform: translateY(-100%);
}

.nav-link:hover .text-hover {
    transform: translateY(-100%);
}

.menu-footer-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

/* ========================================= */
/* --- MOBILANPASSNING (UPPDATERAD) --- */
/* ========================================= */
@media (max-width: 768px) {
    .site-header {
        padding: 16px; 
    }
    
    .site-logo-img {
        height: 28px; /* Mindre logga på mobilskärmar */
    }

    .menu-toggle {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .menu-panel {
        width: 100%; 
        height: 100dvh; 
        padding: 100px 16px 40px 16px; 
    }
    
    .text-wrapper {
        font-size: 40px; 
    }

    .nav-number {
        margin-right: 12px; 
    }
}

/* ========================================= */
/* --- HERO SLIDER OCH LAYOUT --- */
/* ========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100dvh; 
    background-color: #000;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: flex-end; 
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
    width: 100%;
    padding: 24px; 
    padding-bottom: 40px; 
    box-sizing: border-box;
}

.hero-link {
    text-decoration: none;
    color: #FFFFFF; 
    display: inline-block;
    transition: color 0.3s ease; 
}

.hero-link:hover {
    color: var(--brand-color); 
}

.hero-label {
    display: block;
    font-size: 16px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 128px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
    max-width: 90%; 
}

.hero-nav {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-nav .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s;
    padding: 0;
    -webkit-appearance: none;
}

.hero-nav .dot.active {
    background: var(--brand-color); 
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 16px; 
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 40px; 
        max-width: 100%;
    }

    .hero-label {
        font-size: 12px; 
    }

    .hero-nav {
        bottom: 16px;
        right: 16px;
    }
}

/* ========================================= */
/* --- ARTIKEL-GRID OCH KORT --- */
/* ========================================= */

.sections-container {
    padding: 100px 24px;
}

.article-section {
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.610, 0.355, 1), 
                transform 1.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.article-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 200px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1; 
    margin: 0 0 48px 0; 
    color: var(--text-color);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}

.article-card {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 24px;
    background-color: transparent;
    transition: background-color 0s; 
}

.article-card:hover {
    background-color: var(--brand-color);
}

.article-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}

.article-meta {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.article-title {
    font-size: 24px; 
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.05em;
    margin: 0;
}

@media (max-width: 768px) {
    .sections-container {
        padding: 60px 0px 60px 0px; 
    }
    
    .section-title {
        font-size: 64px;
        margin-bottom: 24px; 
        line-height: 1;
        padding-left: 16px; 
    }
    
    .article-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch; 
        border: none; 
        margin: 0;
        padding: 0;
        gap: 0; 
        scroll-padding-left: 16px;
    }
    
    .article-grid::-webkit-scrollbar {
        display: none;
    }

    .article-grid::before, .article-grid::after {
        content: '';
        flex: 0 0 16px;
    }
    
    .article-card {
        flex: 0 0 85%;
        scroll-snap-align: start; 
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        border-right: 1px solid #000;
        border-left: none; 
        padding: 16px;
        background-color: transparent;
    }

    .article-card:hover {
        background-color: transparent !important;
    }

    .article-card:first-child {
        border-left: 1px solid #000;
    }
    
    .article-title {
        font-size: 16px; 
        font-weight: 400; 
    }
}

/* ========================================= */
/* --- NYHETSBREV SEKTION --- */
/* ========================================= */

.newsletter-section {
    padding: 120px 24px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #000; 
}

.newsletter-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.newsletter-title {
    font-size: 128px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}

.newsletter-text {
    font-size: 24px; 
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.4;
    margin: 0 0 48px 0;
}

.newsletter-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000; 
    background-color: transparent;
    transition: background-color 0s; 
}

.input-wrapper:hover {
    background-color: var(--brand-color);
}

.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 60px 16px 16px; 
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #000;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(0,0,0,0.4);
}

.newsletter-submit {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.newsletter-submit:hover .arrow {
    transform: translateX(4px); 
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 80px 16px;
    }
    
    .newsletter-title {
        font-size: 56px; 
    }
    
    .newsletter-text {
        font-size: 18px; 
        margin-bottom: 32px;
    }
    
    .newsletter-input {
        font-size: 16px;
        padding: 12px 48px 12px 12px;
    }
    
    .newsletter-submit {
        font-size: 24px;
        right: 12px;
    }
}

/* ========================================= */
/* --- SITE FOOTER --- */
/* ========================================= */

.site-footer {
    background-color: #000000;
    color: var(--brand-color);
    min-height: 75vh; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 24px;
    box-sizing: border-box;
    font-family: 'Geist', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-right-col {
    align-items: flex-end;
    text-align: right;
}

.footer-logo {
    font-size: 32px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    margin: 0;
    line-height: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    text-decoration: none;
    color: var(--brand-color);
    display: inline-flex;
    line-height: 1;
}

.f-text-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 16px; 
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.f-text-default, .f-text-hover {
    display: block;
    padding-bottom: 0.2em; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-text-hover {
    position: absolute;
    top: 100%;
    left: 0;
}

.footer-link:hover .f-text-default { transform: translateY(-100%); }
.footer-link:hover .f-text-hover { transform: translateY(-100%); }

.footer-bottom {
    margin-top: auto; 
    padding-bottom: 24px; 
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    width: 100%;
}

.copyright {
    font-size: 12px; 
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px; 
}

.footer-mail {
    text-decoration: none;
    color: var(--brand-color);
    display: inline-flex;
}

.mail-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 40px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
}

.mail-default, .mail-hover {
    display: block;
    padding-bottom: 0.25em; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mail-hover {
    position: absolute;
    top: 100%;
    left: 0;
}

.footer-mail:hover .mail-default { transform: translateY(-100%); }
.footer-mail:hover .mail-hover { transform: translateY(-100%); }

.footer-address {
    font-size: 40px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .site-footer {
        min-height: auto; 
        padding: 0 16px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
        padding-top: 24px;
    }
    
    .footer-right-col {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column-reverse; 
        align-items: flex-start;
        gap: 32px;
        margin-top: 60px;
        padding-bottom: 24px;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .mail-wrapper, .footer-address {
        font-size: 28px; 
        text-align: left;
    }
}

/* ========================================= */
/* --- ARTIKELSIDA (SINGLE.PHP) --- */
/* ========================================= */

.article-page {
    padding-top: 140px; 
}

.article-header {
    padding: 0 24px;
    margin-bottom: 40px;
}

.article-main-title {
    font-size: 128px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin: 0;
    max-width: 95%;
}

.article-featured-image-wrapper {
    padding: 0 24px;
    margin-bottom: 60px;
    overflow: hidden;
}

.article-featured-image {
    width: 100%;
    height: 70vh; 
    background-size: cover;
    background-position: center;
}

.article-body-container {
    max-width: 1280px;
    padding: 0 24px;
    margin: 0 auto 120px auto;
    padding-left: calc(25% + 24px); 
    box-sizing: border-box;
}

.article-meta-byline {
    font-size: 14px; 
    font-weight: 700;
    letter-spacing: -0.04em;
    color: rgba(0,0,0,0.6);
    margin-bottom: 24px;
}

.article-lead {
    font-size: 32px; 
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--text-color);
}

.article-text p {
    font-size: 20px; 
    font-weight: 400; 
    letter-spacing: -0.03em;
    line-height: 1.5;
    margin: 0 0 28px 0;
    color: var(--text-color);
}

.related-section {
    padding: 120px 24px 40px 24px;
    border-top: 1px solid #000;
}

.related-main-title {
    font-size: 128px; 
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0 0 48px 0;
}

@media (max-width: 768px) {
    .article-page {
        padding-top: 100px;
    }
    
    .article-header {
        padding: 0 16px;
        margin-bottom: 24px;
    }
    
    .article-main-title {
        font-size: 40px; 
        max-width: 100%;
    }
    
    .article-featured-image-wrapper {
        padding: 0 16px;
        margin-bottom: 32px;
    }
    
    .article-body-container {
        padding: 0 16px; 
        margin-bottom: 80px;
    }
    
    .article-meta-byline {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .article-lead {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .article-text p {
        font-size: 16px; 
        margin-bottom: 20px;
    }

    .related-section {
        padding: 60px 0px 40px 16px; 
    }

    .related-main-title {
        font-size: 64px;
        margin-bottom: 24px;
        padding-left: 0;
    }
}

.hero-slide, 
.article-featured-image {
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* ========================================= */
/* --- KATEGORISIDOR (CATEGORY.PHP) --- */
/* ========================================= */

.category-page .section-title {
    padding-left: 24px;
    margin-bottom: 40px;
    font-size: 128px; 
}

@media (max-width: 768px) {
    .category-page .sections-container {
        padding-top: 100px !important;
    }
    
    .category-page .section-title {
        font-size: 64px;
        padding-left: 16px;
    }

    .category-page .article-grid {
        display: flex;
        flex-direction: column; 
        overflow-x: visible; 
        scroll-snap-type: none; 
        gap: 0; 
    }

    .category-page .article-grid::before,
    .category-page .article-grid::after {
        display: none;
    }

    .category-page .article-card {
        width: 100%;
        border-left: none; 
        border-right: none;
        border-bottom: none; 
    }

    .category-page .article-card:last-child {
        border-bottom: 1px solid #000;
    }
}

/* ========================================= */
/* --- OM OSS SIDA --- */
/* ========================================= */

.about-page {
    padding-top: 140px;
    padding-bottom: 120px;
}

.about-hero {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    gap: 24px; 
    padding: 0 24px;
    margin-bottom: 120px;
    align-items: end;
}

.about-hero-left {
    grid-column: 1 / 6; 
}

.about-hero-right {
    grid-column: 8 / 13; 
}

.about-title {
    font-size: 128px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin: 0 0 40px 0;
}

.about-main-image {
    width: 100%;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
}

/* UPPDATERAD: Större text och uppflyttad margin */
.about-lead {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 48px;
    margin-top: -8px; 
}

.about-text p {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 90%;
}

/* --- TEAM GRID --- */
.team-section {
    padding: 0 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumner */
    gap: 0;
    border-left: 1px solid #000; /* Endast vänster-linjen på själva containern */
}

.team-card {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    
    text-decoration: none !important; 
    color: var(--text-color);
    background-color: transparent;
    transition: background-color 0.2s ease; 
}

/* MAGIN: Ger enbart de 3 första korten (översta raden) en topp-linje! */
.team-card:nth-child(-n+3) {
    border-top: 1px solid #000;
}

/* Hover-effekt på hela kortet */
.team-card:hover {
    background-color: #000;
}

/* Texten inuti kortet blir gul vid hover */
.team-card:hover .team-name,
.team-card:hover .team-role,
.team-card:hover .team-email {
    color: var(--brand-color); 
}

.team-image {
    width: 100%;
    aspect-ratio: 1/1; 
    background-size: cover;
    background-position: center;
    background-color: transparent;
    margin-bottom: 24px;
}

.team-name {
    font-size: 28px; 
    font-weight: 600;
    letter-spacing: -0.04em;
    margin: 0 0 8px 0;
    line-height: 1;
}

.team-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.team-email {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- MOBILANPASSNING OM OSS --- */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr; 
        gap: 32px;
        padding: 0 16px;
        margin-bottom: 80px;
    }
    
    .about-hero-left,
    .about-hero-right {
        grid-column: 1 / -1; 
    }
    
    .about-title {
        font-size: 80px;
        margin-bottom: 24px;
    }
    
    /* UPPDATERAD: Mobil-lead texten är nu också större */
    .about-lead {
        font-size: 32px;
        margin-top: 0;
        margin-bottom: 32px;
    }
    
    .about-text p {
        font-size: 16px;
        max-width: 100%;
    }

    .team-section {
        padding: 0 16px;
    }

    .team-grid {
        grid-template-columns: 1fr; /* 1 kolumn på mobil */
    }
    
    /* På mobil är varje kort på sin egen rad, så ALLA kort får en topplinje (men vi stänger av det om du scrollar ner och inte vill ha dubbla) */
    .team-card {
        border-top: 1px solid #000;
    }
}
/* ========================================= */
/* --- MERCH SIDA --- */
/* ========================================= */

.merch-page {
    padding-top: 140px;
    padding-bottom: 120px;
}

.merch-header {
    padding: 0 24px;
    margin-bottom: 80px; 
}

.merch-title {
    font-size: 200px; /* Massiv rubrik som matchar nyhets-avskiljarna */
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
}

/* --- MERCH GRID --- */
.merch-section {
    padding: 0 24px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 0;
    border-left: 1px solid #000; 
}

.merch-card {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    
    text-decoration: none !important; 
    color: var(--text-color);
    background-color: transparent;
    transition: background-color 0.2s ease; 
}

/* Ger enbart de 3 första korten (översta raden) en topp-linje */
.merch-card:nth-child(-n+3) {
    border-top: 1px solid #000;
}

/* Hover-effekt på hela kortet */
.merch-card:hover {
    background-color: #000;
}

/* Texten inuti kortet blir gul vid hover */
.merch-card:hover .merch-name,
.merch-card:hover .merch-status {
    color: var(--brand-color); 
}

.merch-image {
    width: 100%;
    aspect-ratio: 1/1; 
    background-size: cover;
    background-position: center;
    background-color: transparent;
    margin-bottom: 24px;
}

.merch-name {
    font-size: 28px; 
    font-weight: 600;
    letter-spacing: -0.04em;
    margin: 0 0 8px 0;
    line-height: 1;
}

.merch-status {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- MOBILANPASSNING MERCH --- */
@media (max-width: 768px) {
    .merch-page {
        padding-top: 100px;
    }

    .merch-header {
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .merch-title {
        font-size: 80px;
    }
    
    .merch-section {
        padding: 0 16px;
    }

    .merch-grid {
        grid-template-columns: 1fr; /* 1 kolumn på mobil */
    }
    
    /* Alla kort får topplinje på mobil när de staplas på varandra */
    .merch-card {
        border-top: 1px solid #000;
    }
}