/* =========================================================
   STUDIO MOON – UREJEN GLAVNI CSS
   1. PC / osnovni stil
   2. Manjši PC
   3. Skupne responsive nastavitve
   4. Tablica / iPad
   5. Telefon
   ========================================================= */

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.meni-gumb,
.meni-narocanje {
    display: none;
}

/* =================================
   OSNOVNE NASTAVITVE
   ================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #f4f0e9;
    color: #191713;
    font-family: Arial, Helvetica, sans-serif;
}


/* =================================
   ZGORNJA ORODNA VRSTICA
   ================================= */

.glava {
    position: absolute;
    z-index: 100;
    top: 22px;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: calc(100% - 48px);
    max-width: 1450px;
    min-height: 96px;
    margin: 0;
    padding: 12px 18px 12px 26px;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid #e6ded1;
    border-radius: 22px;
    box-shadow:
        0 8px 25px rgba(39, 31, 20, 0.06),
        0 2px 6px rgba(39, 31, 20, 0.04);
    transform: translateX(-50%);
}


/* =================================
   LOGOTIP NA LEVI
   ================================= */

.logo-okvir {
    position: relative;

    width: 190px;
    height: 70px;

    overflow: hidden;
    border-radius: 12px;
}

.logo {
    position: absolute;

    top: -55px;
    left: 50%;

    width: 285px;
    max-width: none;

    transform: translateX(-50%);
}


/* =================================
   MENI NA SREDINI
   ================================= */

.meni {
    display: flex;
    align-items: center;

    gap: 5px;
    padding: 6px;

    background-color: #f5f1e9;

    border: 1px solid #ebe3d7;
    border-radius: 100px;
}

.meni a {
    padding: 12px 23px;

    border-radius: 100px;

    color: #625d54;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.2px;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s,
        color 0.25s,
        box-shadow 0.25s;
}


/* KO GREŠ Z MIŠKO ČEZ POVEZAVO */

.meni a:hover {
    background-color: #ffffff;
    color: #171612;
}


/* TRENUTNO IZBRANA STRAN */

.meni a.aktivna {
    background-color: #ffffff;
    color: #171612;

    box-shadow: 0 3px 12px rgba(39, 31, 20, 0.09);
}


/* ZLATA PIKA OB AKTIVNI STRANI */

.meni a.aktivna::before {
    content: "";

    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 8px;

    background-color: #b88c3b;
    border-radius: 50%;

    vertical-align: 1px;
}


/* =================================
   GUMB NAROČITE SE
   ================================= */

.gumb-narocanje {
    display: flex;
    justify-self: end;
    align-items: center;

    gap: 14px;
    padding: 7px 8px 7px 22px;

    background-color: #191713;
    border: 1px solid #191713;
    border-radius: 100px;

    color: #ffffff;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.2px;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
}


/* KROG S PUŠČICO */

.puscica {
    display: flex;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    background-color: #c6a15c;
    border-radius: 50%;

    color: #191713;
    font-size: 18px;
}


/* GUMB OB PREMIKU MIŠKE */

.gumb-narocanje:hover {
    background-color: #2b2823;

    box-shadow: 0 8px 20px rgba(25, 23, 19, 0.18);

    transform: translateY(-2px);
}


/* =================================
   CELOZASLONSKI UVOD
   ================================= */

.uvod {
    display: grid;
    grid-template-columns: 55% 45%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(
        105deg,
        #f6f2eb 0%,
        #f6f2eb 48%,
        #eee6d9 56%,
        #e3d7c4 64%,
        #e3d7c4 100%
    );
}


/* =================================
   LEVA STRAN
   ================================= */

.uvod-levo {
    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        170px
        clamp(50px, 8vw, 160px)
        80px;

    background-color: transparent;
}


.uvod-vsebina {
    width: 100%;
    max-width: 800px;

    position: relative;
    z-index: 2;
}


.uvod-oznaka {
    margin: 0 0 28px;

    color: #a87c30;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.uvod h1 {
    margin: 0 0 32px;

    color: #181713;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 5.5vw, 100px);
    font-weight: normal;
    line-height: 1.02;
    letter-spacing: -4px;
}


.uvod h1 span {
    display: block;

    color: #ad8135;
    font-style: italic;
}


.uvod-opis {
    max-width: 590px;

    margin: 0 0 42px;

    color: #625c53;

    font-size: 17px;
    line-height: 1.8;
}


/* =================================
   GUMBI
   ================================= */

.uvod-gumbi {
    display: flex;

    align-items: center;

    gap: 30px;
}


.uvod-glavni-gumb {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 8px 9px 8px 23px;

    background-color: #191713;
    border-radius: 12px;

    color: #ffffff;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.3px;

    text-decoration: none;
    text-transform: uppercase;

    transition: 0.25s;
}


.uvod-glavni-gumb span {
    display: flex;

    width: 41px;
    height: 41px;

    align-items: center;
    justify-content: center;

    background-color: #c69d50;
    border-radius: 8px;

    color: #191713;

    font-size: 19px;
}


.uvod-glavni-gumb:hover {
    box-shadow: 0 12px 28px rgba(25, 23, 19, 0.2);

    transform: translateY(-2px);
}


.uvod-drugi-gumb {
    position: relative;

    padding: 12px 0;

    color: #191713;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.3px;

    text-decoration: none;
    text-transform: uppercase;
}


.uvod-drugi-gumb::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 5px;
    left: 0;

    height: 1px;

    background-color: #b88a39;
}


/* =================================
   DESNA STRAN
   ================================= */

.uvod-desno {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-color: transparent;
}
/* DEKORATIVNA ILUSTRACIJA NA DESNI */

.uvod-ilustracija {
    position: absolute;

    top: 50%;
    right: -400px;

    width: 1200px;
    max-width: none;
    height: auto;

    opacity: 0.16;
    mix-blend-mode: multiply;

    transform: translateY(-50%);

    z-index: 0;
}


/* OKVIR, KI OBREŽE PRAZEN DEL SLIKE */

.uvod-logo-okvir {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;
    
}


/* ORIGINALNI LOGOTIP */

.uvod-logo {
    position: absolute;

    top: 50%;
    left: 43%;

    width: max(1000px, 125%);
    max-width: none;

    clip-path: inset(0 12px 0 12px);

    mix-blend-mode: multiply;

    transform: translate(-50%, -50%);
    
}


/* PODATKI NA DNU DESNE STRANI */

.uvod-podatki {
    position: absolute;

    right: 55px;
    bottom: 45px;
    left: 55px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    padding-top: 24px;

    border-top: 1px solid rgba(62, 51, 34, 0.25);
    z-index: 3;
}


.uvod-podatki div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.uvod-podatki div:last-child {
    align-items: flex-end;
    text-align: right;
}


.uvod-podatki span {
    color: #817460;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.uvod-podatki strong {
    color: #28231c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: normal;
}


/* =========================================================
   ELEGANTNA PISAVA GLAVNE NAVIGACIJE
   ========================================================= */

.meni > a:not(.meni-narocanje) {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.uvod-levo-ilustracija {
    position: absolute;

    left: 45%;
    top: 69%;

    width: 58%;
    max-width: 560px;
    height: auto;

    transform: translate(-50%, -50%);

    opacity: 0.55;

    object-fit: contain;
    mix-blend-mode: multiply;

    pointer-events: none;
    user-select: none;

    z-index: 1;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    width: 100%;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(192, 145, 67, 0.08),
            transparent 32%
        ),
        #171612;

    color: #f5f1e9;
}


/* =========================================================
   OVOJ
   ========================================================= */

.footer-ovoj {
    width: min(1450px, calc(100% - 80px));

    margin: 0 auto;

    padding:
        70px
        0
        28px;
}


/* =========================================================
   ZGORNJI DEL
   ========================================================= */

.footer-glavni {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.4fr)
        0.65fr
        0.9fr
        0.9fr;

    gap: clamp(40px, 6vw, 90px);

    padding-bottom: 52px;
}


/* =========================================================
   ZNAMKA
   ========================================================= */

.footer-znamka {
    max-width: 390px;
}

.footer-logo-okvir {
    position: relative;

    width: 220px;
    height: 90px;

    margin-bottom: 22px;

    overflow: hidden;

    background: #f8f6f2;
    border-radius: 18px;
}

.footer-logo {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 330px;
    max-width: none;

    transform: translate(-50%, -50%);
}

.footer-opis {
    max-width: 350px;

    margin: 0 0 28px;

    color: #aaa398;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   NAROČANJE
   ========================================================= */

.footer-narocanje {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 16px;

    padding:
        7px
        7px
        7px
        20px;

    background: #f5f1e9;

    border-radius: 100px;

    color: #191713;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.footer-narocanje span {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c99b47;

    border-radius: 50%;

    font-size: 17px;
}

.footer-narocanje:hover {
    transform: translateY(-2px);
    background: #ffffff;
}


/* =========================================================
   NASLOVI STOLPCEV
   ========================================================= */

.footer-naslov {
    margin: 7px 0 24px;

    color: #c99b47;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   NAVIGACIJA
   ========================================================= */

.footer-povezave {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.footer-povezave a {
    width: fit-content;

    color: #f5f1e9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-povezave a:hover {
    color: #c99b47;
    transform: translateX(3px);
}


/* =========================================================
   KONTAKTI
   ========================================================= */

.footer-kontakti {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.footer-kontakti a {
    display: flex;
    flex-direction: column;

    gap: 5px;

    text-decoration: none;
}

.footer-kontakti span {
    color: #8f887d;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.footer-kontakti strong {
    color: #f5f1e9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;
    font-weight: normal;

    transition: color 0.2s ease;
}

.footer-kontakti a:hover strong {
    color: #c99b47;
}


/* =========================================================
   LOKACIJA
   ========================================================= */

.footer-lokacija {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 20px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.10);
}

.footer-lokacija div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.footer-lokacija span {
    color: #c99b47;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}

.footer-lokacija strong {
    color: #f5f1e9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;
    font-weight: normal;
}

.footer-lokacija a {
    color: #f5f1e9;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.2s ease;
}

.footer-lokacija a:hover {
    color: #c99b47;
}


/* =========================================================
   SPODNJA VRSTICA
   ========================================================= */

.footer-spodaj {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding-top: 24px;
}


/* =========================================================
   LEVO – PODJETJI
   ========================================================= */

.footer-podjetja {
    display: flex;
    align-items: center;

    gap: 30px;
}

.footer-podjetja a {
    color: #a49b8f;

    font-size: 12px;
    line-height: 1.4;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-podjetja a:hover {
    color: #c99b47;
}


/* =========================================================
   DESNO – PRAVNO
   ========================================================= */

.footer-pravno {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    margin-left: auto;
}

.footer-pravno a,
.footer-pravno span {
    color: #8f877c;

    font-size: 11px;
    line-height: 1.4;

    text-decoration: none;
    white-space: nowrap;
}

.footer-pravno a:hover {
    color: #c99b47;
}


/* =========================================================
   MANJŠI PC – 1101px do 1500px
   ========================================================= */

@media (min-width: 1101px) and (max-width: 1500px) {

    .uvod-logo {
        top: 50%;
        left: 50%;

        width: clamp(850px, 68vw, 950px);
        max-width: none;

        transform: translate(-50%, -50%);
    }
}


/* =========================================================
   SKUPNO ZA TABLICE IN TELEFONE – do 1100px
   Header, meni in osnovna zložena hero postavitev.
   ========================================================= */

@media (max-width: 1100px) {

    /* -------------------------
       HEADER
       ------------------------- */

    .glava {
        position: fixed;
        z-index: 1000;

        top: 18px;
        right: 24px;
        left: 24px;

        width: auto;
        max-width: none;
        height: 90px;

        margin: 0;
        padding: 0 17px 0 24px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        box-sizing: border-box;

        background-color: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(128, 103, 63, 0.12);
        border-radius: 22px;

        box-shadow: 0 14px 35px rgba(39, 31, 20, 0.12);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        transform: none;
    }

    /* Logotip v headerju. Slika je prosojna, prazni robovi
       pa so obrezani samo z okvirjem. */

    .glava .logo-okvir {
        position: relative;

        width: 190px;
        height: 72px;

        margin: 0;
        padding: 0;

        display: block;
        flex-shrink: 0;

        overflow: hidden;
    }

    .glava .logo {
        position: absolute;

        top: 54%;
        left: 50%;

        width: 305px;
        height: auto;
        max-width: none;
        max-height: none;

        display: block;

        object-fit: initial;
        clip-path: none;
        mix-blend-mode: normal;

        transform: translate(-50%, -50%);
    }

    /* Namizni gumb skrijemo. Naročanje je v mobilnem meniju. */

    .glava > .gumb-narocanje {
        display: none;
    }

    /* Hamburger */

    .glava .meni-gumb {
        width: 50px;
        height: 50px;

        margin: 0;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-shrink: 0;

        gap: 5px;

        appearance: none;

        background-color: #191713;
        border: 0;
        border-radius: 16px;

        box-shadow: 0 8px 18px rgba(25, 23, 19, 0.15);

        cursor: pointer;

        transition:
            transform 0.2s ease,
            background-color 0.2s ease;
    }

    .glava .meni-gumb:hover {
        background-color: #2b2822;
        transform: translateY(-1px);
    }

    .meni-gumb span {
        width: 21px;
        height: 2px;

        display: block;

        background-color: #ffffff;
        border-radius: 10px;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .glava.meni-odprt .meni-gumb span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .glava.meni-odprt .meni-gumb span:nth-child(2) {
        opacity: 0;
    }

    .glava.meni-odprt .meni-gumb span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* -------------------------
       ODPRTI MENI
       ------------------------- */

    .glava .meni {
        position: fixed;
        z-index: 999;

        top: 126px;
        left: 50%;
        right: auto;
        bottom: auto;

        width: min(440px, calc(100vw - 48px));
        max-width: none;
        height: auto;

        margin: 0;
        padding: 14px;

        display: flex;
        align-items: center;
        flex-direction: column;

        gap: 6px;

        box-sizing: border-box;

        background-color: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(128, 103, 63, 0.13);
        border-radius: 23px;

        box-shadow: 0 24px 65px rgba(43, 34, 21, 0.2);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translate(-50%, -12px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .glava.meni-odprt .meni {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translate(-50%, 0);
    }

    .glava .meni > a {
        width: 100%;
        min-height: 49px;

        margin: 0;
        padding: 0 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;

        background-color: transparent;
        border-radius: 14px;

        color: #625c52;

        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.3px;

        text-align: center;
        text-decoration: none;
        text-transform: uppercase;

        transition:
            background-color 0.2s ease,
            color 0.2s ease;
    }

    .glava .meni > a::before,
    .glava .meni > a::after {
        display: none;
    }

    .glava .meni > a:hover {
        background-color: #f7f3ed;
        color: #191713;
    }

    .glava .meni > a.aktivna {
        background-color: #f2ede4;
        color: #191713;
        box-shadow: none;
    }

    /* Naročite se v meniju */

    .glava .meni .meni-narocanje {
        width: 220px;
        min-height: 52px;

        margin: 10px auto 3px;
        padding: 7px 8px 7px 23px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background-color: #191713;
        border-radius: 999px;

        box-shadow: 0 10px 25px rgba(25, 23, 19, 0.16);

        color: #ffffff;

        transition:
            background-color 0.2s ease,
            transform 0.2s ease;
    }

    .glava .meni .meni-narocanje:hover {
        background-color: #2a2721;
        color: #ffffff;
        transform: translateY(-1px);
    }

    .glava .meni .meni-narocanje span {
        width: 37px;
        height: 37px;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        background-color: #c69d50;
        border-radius: 50%;

        color: #191713;
        font-size: 17px;
    }
}

/* =========================================================
   TABLICA / iPAD – 701px do 1100px
   ========================================================= */

@media (min-width: 701px) and (max-width: 1100px) {

    /* HERO – enako zaporedje kot na telefonu:
       najprej velik Studio Moon, nato besedilni del. */
    .uvod {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 0;
        background: none;
    }

    .uvod-desno {
        position: relative;
        order: 1;
        width: 100%;
        height: 100svh;
        min-height: 700px;
        padding: 0;
        overflow: hidden;
        background: linear-gradient(
            180deg,
            #e3d7c4 0%,
            #e3d7c4 86%,
            #ece3d6 100%
        );
    }

    .uvod-logo-okvir {
        position: absolute;
        top: 105px;
        right: 0;
        bottom: 110px;
        left: 0;
        width: 100%;
        height: auto;
        overflow: hidden;
        z-index: 2;
    }

    .uvod-logo {
        position: absolute;
        top: 52%;
        left: 50%;
        width: clamp(820px, 112vw, 960px);
        max-width: none;
        height: auto;
        clip-path: none;
        mix-blend-mode: normal;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    /* Dve glavi v ozadju – na iPadu ostaneta vidni. */
    .uvod-ilustracija {
        display: block;
        position: absolute;
        top: 57%;
        left: 50%;
        right: auto;
        width: clamp(920px, 135vw, 1120px);
        max-width: none;
        height: auto;
        opacity: 0.18;
        mix-blend-mode: multiply;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .uvod-podatki {
        right: 42px;
        bottom: 30px;
        left: 42px;
        gap: 20px;
        padding-top: 18px;
        z-index: 3;
    }

    .uvod-podatki span {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .uvod-podatki strong {
        font-size: 17px;
    }

    .uvod-levo {
        position: relative;
        order: 2;
        width: 100%;
        min-height: 100svh;
        padding: 100px 55px 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f6f2eb;
    }

    .uvod-vsebina {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .uvod h1 {
        font-size: clamp(58px, 8vw, 72px);
        line-height: 0.98;
        letter-spacing: -2.5px;
    }

    .uvod-opis {
        max-width: 570px;
        font-size: 16px;
        line-height: 1.75;
    }

    .uvod-levo-ilustracija {
        top: -37%
    }

    /* STORITVE */
    #storitve {
        padding: 145px 32px 95px !important;
    }

    #storitve .storitve-glava {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 0;
        margin-bottom: 44px;
    }

    #storitve .storitve-oznaka {
        margin-bottom: 18px;
        font-size: 10px;
    }

    #storitve .storitve-glava h2 {
        font-size: clamp(48px, 7.2vw, 62px);
        line-height: 0.98;
    }

    #storitve .storitve-uvod {
        max-width: 610px;
        font-size: 15px;
        line-height: 1.7;
    }

    #storitve .storitve-kategorije {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    #storitve .storitve-kategorija {
        width: 100%;
        height: clamp(215px, 28vw, 270px);
        min-height: 0;
        aspect-ratio: auto;
        padding: 18px;
    }

    #storitve .kategorija-ime {
        margin-top: 16px;
        font-size: clamp(23px, 3.4vw, 30px);
    }

    #storitve .storitve-kategorija:nth-child(5) {
        grid-column: 1 / -1;
        width: calc((100% - 14px) / 2);
        justify-self: center;
    }

    /* O NAMA */
    #o-nama {
        padding-top: 145px !important;
        background: #f4f0e9;
    }

    #o-nama h2 {
        font-size: clamp(48px, 7vw, 62px);
    }

    #o-nama img[alt*="Maruša"],
    #o-nama img[alt*="Nina"] {
        display: block;
        width: 100% !important;
        height: 360px !important;
        object-fit: cover;
        object-position: center 25%;
    }

    #o-nama *:has(> img[alt*="Maruša"]),
    #o-nama *:has(> img[alt*="Nina"]) {
        min-height: 0 !important;
        height: 360px !important;
        overflow: hidden;
    }

    /* FOOTER */
    .footer-ovoj {
        width: calc(100% - 48px);
        padding-top: 60px;
    }

    .footer-glavni {
        grid-template-columns: 1.2fr 1fr;
        gap: 50px 40px;
    }

    .footer-spodaj {
        gap: 24px;
    }

    .footer-podjetja,
    .footer-pravno {
        gap: 18px;
    }
}

/* =========================================================
   TELEFON – do 700px
   ========================================================= */

@media (max-width: 700px) {

    /* HEADER */
    .glava {
        top: 10px;
        right: 10px;
        left: 10px;
        height: 76px;
        padding: 0 11px 0 16px;
        border-radius: 19px;
    }

    .glava .logo-okvir {
        width: 160px;
        height: 62px;
        overflow: hidden;
    }

    .glava .logo {
        top: 55%;
        left: 50%;
        width: 255px;
        clip-path: none;
        mix-blend-mode: normal;
        transform: translate(-50%, -50%);
    }

    .glava .meni-gumb {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .glava .meni {
        top: 96px;
        width: calc(100vw - 20px);
        padding: 12px;
        gap: 4px;
        border-radius: 20px;
    }

    .glava .meni > a {
        min-height: 46px;
        font-size: 11px;
        letter-spacing: 1.15px;
    }

    .glava .meni .meni-narocanje {
        width: 205px;
        min-height: 50px;
        margin-top: 9px;
        padding: 7px 7px 7px 21px;
        border-radius: 999px;
    }

    .glava .meni .meni-narocanje span {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* HERO – dva dela, vsak čez zaslon */
    .uvod {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 0;
        background: none;
    }

    .uvod-desno {
        position: relative;
        order: 1;
        width: 100%;
        min-height: max(620px, 100svh);
        background: linear-gradient(
            180deg,
            #e3d7c4 0%,
            #e3d7c4 86%,
            #ece3d6 100%
        );
    }

    .uvod-logo-okvir {
        position: absolute;
        top: 100px;
        right: 0;
        bottom: 110px;
        left: 0;
        width: 100%;
        height: auto;
    }

    .uvod-logo {
        top: 54%;
        left: 50%;
        width: 650px;
        max-width: none;
        clip-path: none;
        mix-blend-mode: normal;
        transform: translate(-50%, -50%);
    }

    .uvod-ilustracija {
        top: 53%;
        right: -310px;
        width: 840px;
        opacity: 0.13;
        transform: translateY(-50%);
    }

    .uvod-podatki {
        right: 24px;
        bottom: 28px;
        left: 24px;
        gap: 14px;
        padding-top: 16px;
    }

    .uvod-podatki span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .uvod-podatki strong {
        font-size: 14px;
    }

    .uvod-levo {
        order: 2;
        width: 100%;
        min-height: 100svh;
        padding: 85px 24px 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .uvod-vsebina {
        width: 100%;
        max-width: 520px;
        margin: 0;
    }

    .uvod-oznaka {
        margin-bottom: 20px;
        font-size: 9px;
        line-height: 1.6;
        letter-spacing: 1.7px;
    }

    .uvod h1 {
        margin-bottom: 27px;
        font-size: clamp(42px, 11.5vw, 53px);
        line-height: 1.04;
        letter-spacing: -1.8px;
    }

    .uvod-opis {
        margin-bottom: 34px;
        font-size: 15px;
        line-height: 1.72;
    }

    .uvod-gumbi {
        width: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .uvod-glavni-gumb {
        width: auto;
        min-width: 185px;
        max-width: 100%;
        align-self: flex-start;
        justify-content: space-between;
        padding: 7px 8px 7px 21px;
        border-radius: 999px;
    }

    .uvod-glavni-gumb span {
        width: 38px;
        height: 38px;
        border-radius: 50%;
    }

    .uvod-drugi-gumb {
        width: auto;
        align-self: flex-start;
    }

    .uvod-levo-ilustracija {
        opacity: 1;
        top: 80%
    }

    /* STORITVE */
    #storitve {
        padding-top: 135px !important;
    }

    #storitve .storitve-glava {
        margin-top: 0 !important;
    }

    #storitve .storitve-kategorija:nth-child(5) {
        grid-column: 1 / -1;
        width: calc((100% - 10px) / 2);
        justify-self: center;
    }

    /* O NAMA */
    #o-nama {
        padding-top: 135px !important;
        padding-bottom: 130px !important;
        background: #f4f0e9;
    }

    #o-nama img[alt*="Maruša"],
    #o-nama img[alt*="Nina"] {
        display: block;
        width: 100% !important;
        height: 285px !important;
        object-fit: cover;
        object-position: center 25%;
    }

    #o-nama *:has(> img[alt*="Maruša"]),
    #o-nama *:has(> img[alt*="Nina"]) {
        min-height: 0 !important;
        height: 285px !important;
        overflow: hidden;
    }

    #kontakt {
        margin-top: 0 !important;
    }

    /* FOOTER */
    .footer-ovoj {
        width: calc(100% - 44px);
        padding: 48px 0 24px;
    }

    .footer-glavni {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 42px;
    }

    .footer-znamka {
        max-width: none;
    }

    .footer-logo-okvir {
        width: 190px;
        height: 78px;
    }

    .footer-logo {
        width: 290px;
    }

    .footer-opis {
        max-width: 100%;
    }

    .footer-lokacija {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 24px 0;
    }

    .footer-spodaj {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding-top: 22px;
    }

    .footer-podjetja {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-pravno {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 18px;
    }
}

/* =========================================================
   ZELO MAJHNI TELEFONI – do 390px
   ========================================================= */

@media (max-width: 390px) {

    .glava .logo-okvir {
        width: 150px;
    }

    .glava .logo {
        top: 55%;
        width: 240px;
    }

    .uvod-desno {
        min-height: max(600px, 100svh);
    }

    .uvod-logo {
        top: 54%;
        width: 610px;
    }

    .uvod-ilustracija {
        top: 53%;
        right: -295px;
        width: 800px;
    }

    .uvod-podatki {
        right: 20px;
        left: 20px;
    }

    .uvod-levo {
        padding-right: 20px;
        padding-left: 20px;
    }

    .uvod-glavni-gumb {
        min-width: 180px;
    }
}

/* =========================================================
   iPAD PRO 12.9" / 1024 × 1366 – SAMO POKONČNI NAČIN
   Ta blok je namenoma ločen od navadnega iPada in iPad mini,
   da njun videz ostane nespremenjen.
   ========================================================= */

@media (min-width: 950px) and (max-width: 1100px) and (min-height: 1200px) {

    /* HEADER */
    .glava {
        top: 22px !important;
        right: 30px !important;
        left: 30px !important;
        height: 106px !important;
        min-height: 106px !important;
        padding: 0 20px 0 28px !important;
        border-radius: 25px !important;
        box-shadow: 0 16px 42px rgba(39, 31, 20, 0.13) !important;
    }

    .glava .logo-okvir {
        width: 225px !important;
        height: 84px !important;
    }

    .glava .logo {
        top: 54% !important;
        width: 350px !important;
    }

    .glava .meni-gumb {
        width: 56px !important;
        height: 56px !important;
        border-radius: 17px !important;
    }

    .glava .meni-gumb span {
        width: 23px !important;
    }

    .glava .meni {
        top: 144px !important;
        width: min(470px, calc(100vw - 60px)) !important;
        padding: 16px !important;
        border-radius: 25px !important;
    }

    .glava .meni > a {
        min-height: 54px !important;
        font-size: 13px !important;
    }

    /* PRVI HERO – STUDIO MOON */
    .uvod-desno {
        height: 100svh !important;
        min-height: 1200px !important;
    }

    .uvod-logo-okvir {
        top: 132px !important;
        bottom: 125px !important;
    }

    .uvod-logo {
        top: 50.5% !important;
        width: 1060px !important;
    }

    .uvod-levo-ilustracija {
        left: 50% !important;
        top: -63% !important;
        width: 610px !important;
        max-width: 610px !important;
        opacity: 0.50 !important;
        transform: translate(-50%, -50%) !important;
    }

    .uvod-podatki {
        right: 48px !important;
        bottom: 38px !important;
        left: 48px !important;
        padding-top: 20px !important;
    }

    .uvod-podatki span {
        font-size: 10px !important;
        letter-spacing: 1.35px !important;
    }

    .uvod-podatki strong {
        font-size: 19px !important;
    }

    /* DRUGI HERO – PREPUSTITE SE NEGI */
    .uvod-levo {
        min-height: 900px !important;
        padding: 155px 90px 105px !important;
        align-items: center !important;
    }

    .uvod-vsebina {
        max-width: 820px !important;
    }

    .uvod-oznaka {
        margin-bottom: 24px !important;
        font-size: 11px !important;
        letter-spacing: 2.1px !important;
    }

    .uvod h1 {
        margin-bottom: 32px !important;
        font-size: 82px !important;
        line-height: 0.99 !important;
        letter-spacing: -3px !important;
    }

    .uvod-opis {
        max-width: 660px !important;
        margin-bottom: 38px !important;
        font-size: 18px !important;
        line-height: 1.72 !important;
    }

    .uvod-gumbi {
        gap: 28px !important;
    }

    .uvod-glavni-gumb {
        min-width: 205px !important;
        padding: 8px 9px 8px 23px !important;
        font-size: 12px !important;
    }

    .uvod-glavni-gumb span {
        width: 43px !important;
        height: 43px !important;
    }

    /* STORITVE – 3 + 2 */
    #storitve {
        padding: 160px 42px 105px !important;
    }

    #storitve .storitve-glava {
        gap: 26px !important;
        margin-bottom: 48px !important;
    }

    #storitve .storitve-oznaka {
        margin-bottom: 20px !important;
        font-size: 10px !important;
    }

    #storitve .storitve-glava h2 {
        font-size: 70px !important;
        line-height: 0.97 !important;
    }

    #storitve .storitve-uvod {
        max-width: 700px !important;
        font-size: 17px !important;
        line-height: 1.7 !important;
    }

    #storitve .storitve-kategorije {
        display: grid !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    #storitve .storitve-kategorija {
        grid-column: span 2 !important;
        width: 100% !important;
        height: 230px !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        padding: 19px !important;
    }

    #storitve .storitve-kategorija:nth-child(4) {
        grid-column: 2 / span 2 !important;
    }

    #storitve .storitve-kategorija:nth-child(5) {
        grid-column: 4 / span 2 !important;
        width: 100% !important;
        justify-self: stretch !important;
    }

    #storitve .kategorija-ime {
        margin-top: 16px !important;
        font-size: 27px !important;
    }

    /* O NAMA */
    #o-nama {
        padding-top: 155px !important;
    }

    #o-nama h2 {
        font-size: 70px !important;
        line-height: 0.98 !important;
    }

    #o-nama img[alt*="Maruša"],
    #o-nama img[alt*="Nina"] {
        height: 430px !important;
        object-fit: cover !important;
        object-position: center 24% !important;
    }

    #o-nama *:has(> img[alt*="Maruša"]),
    #o-nama *:has(> img[alt*="Nina"]) {
        height: 430px !important;
        min-height: 0 !important;
    }

    /* KONTAKT + FOOTER */
    #kontakt {
        padding-top: 150px !important;
    }

    .footer-ovoj {
        width: calc(100% - 64px) !important;
        padding-top: 65px !important;
    }

    .footer-glavni {
        gap: 52px 46px !important;
    }
}

/* =========================================================
   FOOTER – SOCIAL IKONI
   ========================================================= */

.footer-social {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 18px;
}


.footer-social a {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(201, 155, 71, 0.38);

    border-radius: 50%;

    color: #c99b47;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.footer-social svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}


.footer-social .social-pika {
    fill: currentColor;
    stroke: none;
}


/* FACEBOOK SVG uporablja fill */

.footer-social a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}


.footer-social a:hover {
    background-color: #c99b47;
    border-color: #c99b47;

    color: #191713;

    transform: translateY(-3px);
}


/* TELEFON */

@media (max-width: 700px) {

    .footer-social {
        margin-top: 17px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

}


/* =========================================================
   iOS – PUŠČICE BREZ EMOJIJEV
   ========================================================= */

.kategorija-odpri b,
.storitev-puscica,
.oseba-gumb-svetel span,
.kontakt-podatki b,
.kontakt-maps-gumb span {
    position: relative;

    font-size: 0 !important;
    line-height: 0 !important;

    color: inherit;
}


/* CSS/SVG PUŠČICA ↗ */

.kategorija-odpri b::after,
.storitev-puscica::after,
.oseba-gumb-svetel span::after,
.kontakt-podatki b::after,
.kontakt-maps-gumb span::after {
    content: "";

    display: block;

    width: 15px;
    height: 15px;

    background: currentColor;

    -webkit-mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 18L18 6M9 6h9v9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain
        no-repeat;

    mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 18L18 6M9 6h9v9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain
        no-repeat;
}


/* FOOTER – PUŠČICE ZA TEKSTOM */

.footer-lokacija a::after,
.footer-podjetja a::after {
    content: "";

    display: inline-block;

    width: 11px;
    height: 11px;

    margin-left: 7px;

    background: currentColor;

    -webkit-mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 18L18 6M9 6h9v9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain
        no-repeat;

    mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 18L18 6M9 6h9v9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain
        no-repeat;
}

/* =========================================================
   ODSTRANI STARE PODVOJENE CSS PUŠČICE
   Nova puščica pride samo iz puscice.js / SVG
   ========================================================= */

.kategorija-odpri b::after,
.storitev-puscica::after,
.oseba-gumb-svetel span::after,
.kontakt-podatki b::after,
.kontakt-maps-gumb span::after,
.footer-lokacija a::after,
.footer-podjetja a::after {
    content: none !important;
    display: none !important;
}

/* =========================================================
   KONČNA PORAVNAVA SVG PUŠČIC
   ========================================================= */

.sm-svg-puscica {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 16px !important;
    height: 16px !important;

    margin: 0 !important;
    padding: 0 !important;

    vertical-align: middle !important;

    line-height: 1 !important;
}

.sm-svg-puscica svg {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* puščica točno na sredini kroga */
.kategorija-odpri b,
.storitev-puscica,
.oseba-gumb-svetel span,
.kontakt-podatki b,
.kontakt-maps-gumb span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* =========================================================
   STUDIO MOON – FINALNE PUŠČICE
   PC + SAFARI + IPHONE
   ========================================================= */

/*
 * Najprej ugasnemo vse stare ::before / ::after puščice,
 * da nikoli več ne dobimo dveh.
 */

.kategorija-odpri b::before,
.kategorija-odpri b::after,
.storitev-puscica::before,
.storitev-puscica::after,
.oseba-gumb-svetel > span::before,
.oseba-gumb-svetel > span::after,
.kontakt-podatki b::before,
.kontakt-podatki b::after,
.kontakt-maps-gumb > span::before,
.kontakt-maps-gumb > span::after {
    content: none !important;
    display: none !important;
}


/* =========================================================
   SVG
   ========================================================= */

.sm-svg-puscica,
.ikona-puscica {
    width: 18px !important;
    height: 18px !important;

    min-width: 18px !important;
    min-height: 18px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 18px !important;

    margin: 0 !important;
    padding: 0 !important;

    position: static !important;

    inset: auto !important;

    transform: none !important;

    vertical-align: middle !important;

    overflow: visible !important;

    line-height: 0 !important;
}


.sm-svg-puscica svg,
.ikona-puscica {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    overflow: visible !important;
}


.sm-svg-puscica path,
.ikona-puscica path {
    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 1.9 !important;

    stroke-linecap: round !important;
    stroke-linejoin: round !important;

    vector-effect:
        non-scaling-stroke;
}


/* =========================================================
   KATEGORIJE STORITEV
   ========================================================= */

.kategorija-odpri b {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    line-height: 0 !important;
}


.kategorija-odpri b >
.sm-svg-puscica,

.kategorija-odpri b >
.ikona-puscica {
    width: 19px !important;
    height: 19px !important;

    flex-basis: 19px !important;

    position: static !important;

    transform: none !important;
}


/* =========================================================
   STORITVE V POPUPU
   ========================================================= */

.storitev-puscica {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    line-height: 0 !important;
}


.storitev-puscica >
.sm-svg-puscica,

.storitev-puscica >
.ikona-puscica {
    position: static !important;

    width: 17px !important;
    height: 17px !important;

    transform: none !important;
}


/* =========================================================
   MARUŠINE / NININE STORITVE
   ========================================================= */

.oseba-gumb-svetel >
span {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    line-height: 0 !important;
}


.oseba-gumb-svetel >
span >
.sm-svg-puscica,

.oseba-gumb-svetel >
span >
.ikona-puscica {
    position: static !important;

    width: 18px !important;
    height: 18px !important;

    transform: none !important;
}


/* =========================================================
   KONTAKT – TELEFON + MAIL
   ========================================================= */

.kontakt-podatki b {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    justify-self: end !important;
    align-self: center !important;

    width: 28px !important;
    height: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 0 !important;
}


.kontakt-podatki b >
.sm-svg-puscica,

.kontakt-podatki b >
.ikona-puscica {
    position: static !important;

    width: 18px !important;
    height: 18px !important;

    transform: none !important;
}


/* =========================================================
   ODPRI ZEMLJEVID
   ========================================================= */

.kontakt-maps-gumb >
span {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    line-height: 0 !important;
}


.kontakt-maps-gumb >
span >
.sm-svg-puscica,

.kontakt-maps-gumb >
span >
.ikona-puscica {
    position: static !important;

    width: 17px !important;
    height: 17px !important;

    transform: none !important;
}


/* =========================================================
   VSE DESNE PUŠČICE V ZLATIH KROGIH
   ========================================================= */

.gumb-narocanje .puscica,
.meni-narocanje > span,
.uvod-glavni-gumb > span,
.oseba-gumb-temen > span,
.kontakt-narocanje > span,
.footer-narocanje > span {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    line-height: 0 !important;
}


.gumb-narocanje
.sm-svg-puscica,

.meni-narocanje
.sm-svg-puscica,

.uvod-glavni-gumb
.sm-svg-puscica,

.oseba-gumb-temen
.sm-svg-puscica,

.kontakt-narocanje
.sm-svg-puscica,

.footer-narocanje
.sm-svg-puscica {
    position: static !important;

    width: 16px !important;
    height: 16px !important;

    transform: none !important;
}


/* =========================================================
   HERO – ŽENSKI + LUNA NIŽJE NA TELEFONU
   To je .uvod-ilustracija, NE logo.
   ========================================================= */

@media (max-width: 700px) {

    .uvod-ilustracija {
        top: 61% !important;
    }

}


@media (max-width: 390px) {

    .uvod-ilustracija {
        top: 62% !important;
    }

}

/* =========================================================
   FOOTER PUŠČICE – FINAL FIX
   ========================================================= */

.footer-lokacija a .sm-svg-puscica,
.footer-podjetja a .sm-svg-puscica {
    display: inline-flex !important;

    width: 12px !important;
    height: 12px !important;

    min-width: 12px !important;
    min-height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;

    flex: 0 0 12px !important;

    margin-left: 6px !important;
    padding: 0 !important;

    position: static !important;

    vertical-align: middle !important;

    transform: none !important;

    line-height: 0 !important;
    overflow: hidden !important;
}


.footer-lokacija a .sm-svg-puscica svg,
.footer-podjetja a .sm-svg-puscica svg {
    display: block !important;

    width: 12px !important;
    height: 12px !important;

    min-width: 12px !important;
    min-height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;

    margin: 0 !important;
    padding: 0 !important;

    position: static !important;

    transform: none !important;
}


/* Da sta tekst + puščica lepo skupaj */
.footer-lokacija a,
.footer-podjetja a {
    display: inline-flex !important;
    align-items: center !important;
}