.site-footer {
    width: 95%;
    margin: 50px auto 0;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    background: var(--color-footer-bg);
    color: var(--color-footer-tekst);
    box-shadow: 0 -18px 45px color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.2fr 1.5fr;
    gap: 28px;
    padding: 25px 36px;
    align-items: start;
}

.footer-brand h3,
.footer-col h4 {
    margin: 0 0 10px;
    font-weight: 700;
}

.footer-brand p,
.footer-col p {
    margin: 1px 0;
    line-height: 1.55;
    opacity: 0.9;
}

.footer-col a {
    color: var(--color-footer-tekst);
    text-decoration: none;
    font-weight: 500;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* ===== ÅBNINGSTIDER ===== */

.footer-hours-grid {
    display: flex;
    gap: 28px;
    font-size: 0.88rem;
}

.hours-column {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.footer-hours-grid p {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 3px 0;
    line-height: 1.1;
}

.footer-hours-grid span {
    opacity: 0.75;
}

.footer-hours-grid strong {
    font-weight: 800;
    white-space: nowrap;
}

.footer-hours-grid p {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 5px 0;
    line-height: 0.70;
}

.footer-hours-grid span {
    opacity: 0.75;
}

.footer-hours-grid strong {
    font-weight: 800;
    white-space: nowrap;
  
}

/* ===== ADRESSE ===== */

.footer-address a {
    color: var(--color-footer-tekst);
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}

.footer-address a:hover {
    border-bottom: 1px solid var(--color-accent);
}

/* ===== BUND ===== */

.footer-bottom {
    padding: 12px 20px;
    text-align: center;
    background: var(--shadow-soft);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ===== windows ===== */

@media (max-width: 1400px) {
    
    .footer-inner {
        grid-template-columns: 1.2fr 0.9fr 1.2fr 1.5fr;

     }
     
     .footer-brand h3,
.footer-col h4 {
    margin: 0 0 10px;
    font-weight: 600;
        font-size: 0.70rem;

}

.footer-hours-grid {
    display: flex;
    gap: 28px;
    font-size: 0.60rem;
}

.footer-brand p,
.footer-col p {
    margin: 6px 0;
    line-height: 1.55;
    opacity: 0.9;
    font-size: 0.70rem;
}

.footer-hours-grid p {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin: 4px 0;
    line-height: 0.70;
}

.footer-col a {
    color: var(--color-footer-tekst);
    text-decoration: none;
    font-weight: 600;
}



}

/* ===== TABLET ===== */

@media (max-width: 1000px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== MOBIL ===== */

@media (max-width: 640px) {
    .site-footer {
        width: min(100% - 22px, 1500px);
        margin-top: 5px;
        border-radius: 24px 24px 0 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 20px;
    }

    .footer-brand {
        display: none;
    }

    .footer-col:not(.footer-contact):not(.footer-address):not(.footer-hours) {
        display: none;
    }

    .footer-contact a {
        display: block;
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

  .footer-hours-grid {
    display: flex;
    gap: 18px;
    font-size: 0.85rem;
}
    .footer-hours-grid p {
        margin: 2px 0;
        max-width: 100%;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding: 10px;
    }
}