    /* Webkit browsers (Chrome, Safari) */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #ffffff;
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: #FFA500;
        border-radius: 10px;
        border: 2px solid #2c2c2c;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #f9b857;
    }

    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: #FFA500 #2c2c2c;
    }

    html, body {
        max-width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f1f1f1;

    }

    header {
        height: 60px;
        background-color: #333;
        color: #fff;
        padding: 10px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .logo {
        height: 120px;
        margin-right: 20px;
    }
    .nav-desktop {
        display: flex;
        gap: 30px;
        margin-left: auto;
    }
    .nav-link {

        color: orange;
        font-weight: bold;
        padding:10px 10px 5px 5px;
        text-decoration: none;

        font-size: 18px;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: #ddd;
    }
    /* Hamburger dugme - skriveno na desktopu */
    .hamburger {
        display: none;
        font-size: 28px;
        color: white;
        margin-left: auto;
        cursor: pointer;
    }

    /* Padajući meni za mobilne uređaje */
    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #222;
        position: absolute;
        top: 100%;
        right: 30px;
        width: 200px;
        border-radius: 10px;
        overflow: hidden;
    }

    .mobile-menu a {
        padding: 14px 20px;
        text-decoration: none;
        color: white;
        font-weight: bold;
        border-bottom: 1px solid #444;
        text-align: right;
    }

    .mobile-menu a:hover {
        background-color: #444;
    }

    /* Responsive ponašanje */
    @media (max-width: 768px) {
        .nav-desktop {
            display: none;
        }

        .hamburger {
            display: block;
        }

        .mobile-menu.open {
            display: flex;
        }
    }

    body {
        font-family: sans-serif;
        background-color: #fdfaf7;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 90%;
        max-width: 900px;
        margin: 0 auto;
        padding: 50px 0;
    }

    h1 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 10px;
    }

    h2 {
        text-align: center;
        font-size: 1.5rem;
        color: #777;
        margin-bottom: 40px;
    }

    .paket-puna {
        display: flex;
        background-color: #4a3b35;
        color: #fff;
        border-radius: 20px;
        margin-bottom: 50px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .paket-box {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 30px;
    }

    .paket-levo {
        flex: 0 0 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .paket-krug {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .paket-krug img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .paket-desno {
        flex: 1;
        padding-left: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .paket-opis h3 {
        color: #f0a66b;
        font-size: 22px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 0 0 5px 0;
    }
    .paket-linija {
        width: 200px;
        height: 2px;
        background-color: #f0a66b;
        margin: 5px 0 15px 0;
        display: inline-block;
    }

    .paket-opis ul {
        padding-left: 20px;
        margin: 0;
    }

    .paket-napomena {
        font-size: 12px;
        text-transform: uppercase;
        color: #ddd;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }

    .paket-cena-traka {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        background-color: #fdfaf7;
        color: #5b3924;
        font-weight: bold;
        padding: 15px 10px;
        font-size: 16px;
        text-align: center;
        display: flex;
        width: 80px;
        align-items: center;
        justify-content: center;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .slika-desno .paket-box {
        flex-direction: row-reverse;
    }

    .slika-desno .paket-desno {
        padding-left: 0;
        padding-right: 30px;
    }

    @media (max-width: 768px) {
        .paket-puna {
            flex-direction: column;
            margin-bottom: 30px;
            text-align: center;
            align-items: center;
            justify-content: center;
        }

        .paket-box {
            flex-direction: column;
            padding: 20px;
            text-align: center;
            align-items: center;
            justify-content: center;
        }

        .paket-levo,
        .paket-desno {
            padding: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .paket-opis {
            padding: 0 15px;
        }
        .paket-krug {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
        }

        .paket-opis h3 {
            font-size: 18px;
            margin-top: 10px;
            margin-bottom: 5px;
        }

        .paket-opis ul {
            list-style-position: inside;
            padding-left: 0;
            font-size: 14px;
            text-align: left;
        }

        .paket-cena-traka {
            writing-mode: horizontal-tb;
            font-size: 14px;
            padding: 10px;
            width: 100%;
            border-radius: 20px 20px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        margin-top: auto;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .footer-section {
        flex: 1 1 300px;
        margin:7px;
    }

    .footer-section h3 {
        font-size: 20px;
        border-bottom: 2px solid #fff;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 16px;
        line-height: 1.6;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .social-icons a {
        display: inline-block;
        text-align: center;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
        filter: invert(100%);
        transition: transform 0.3s ease;
    }

    .social-icons img:hover {
        transform: scale(1.2);
    }

    .footer-copyright {
        background-color: #222;
        padding: 5px;
        font-size: 14px;
    }
    #kategorije-blokovi {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }
    html, body {
        height: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    main {
        flex: 1; /* zauzima sav prostor izmedju headera i footera */
        padding-top: 80px; /* dovoljno da sadržaj krene ispod headera */
    }
    .kategorija {
        animation: fadeIn 0.6s ease;
    }

    @keyframes fadeIn {
        from {opacity: 0; transform: translateY(20px);}
        to {opacity: 1; transform: translateY(0);}
    }
    .kategorija-blok {
        background-color: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        width: 250px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .kategorija-blok:hover {
        transform: scale(1.05);
    }

    .kategorija-blok img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .kategorija-blok p {
        margin: 15px 0;
        font-size: 18px;
        font-weight: bold;
        color: #333;
    }
    .kategorija.active h2 {
        border-bottom: 3px solid #f0a66b;
        display: inline-block;
        padding-bottom: 5px;
    }
    .nazad-btn {
        background-color: #f0a66b;
        color: white;
        padding: 10px 20px;
        border: none;
        margin-bottom: 20px;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }


    .nazad-btn:hover {
        background-color: #d68c50;
        transform: scale(1.05);
    }
    .cenovnik-container {
        max-width: 1000px;
        margin: 50px auto;
        padding: 30px 20px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        font-family: 'Segoe UI', sans-serif;
    }

    .cenovnik-title {
        text-align: center;
        font-size: 2em;
        margin-bottom: 40px;
        color: #333;
    }

    .cenovnik-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .cenovnik-card {
        background-color: #f4f7fa;
        border-radius: 12px;
        padding: 25px;
        width: 300px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
    }

    .cenovnik-card:hover {
        transform: translateY(-5px);
    }

    .cenovnik-card h3 {
        margin-bottom: 20px;
        font-size: 1.2em;
        color: #0077cc;
        border-bottom: 2px solid #ddd;
        padding-bottom: 8px;
    }

    .cenovnik-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cenovnik-card li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 16px;
        color: #333;
    }

    .cenovnik-card strong {
        color: #000;
    }

    .cenovnik-info {
        margin-top: 40px;
        text-align: center;
        color: #444;
        font-size: 15px;
        line-height: 1.6;
    }
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    #preloader.fade-out {
        opacity: 0;
        pointer-events: none;
    }

    #preloader-logo {
        width: 200px;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    #loading-message {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
        color: #fff;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .nav-link.active {
        color: #fff;
        background-color: #FFA500;
        border-radius: 8px;
        padding: 6px 12px;
    }
    .mobile-menu a.active {
        background-color: #FFA500;
        color: white;
    }
    /* Sekcija cenovnika */
    .phone-link {
        color: #FFA500;
        font-weight: bold;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .phone-link:hover {
        color: #cc8400;
        text-decoration: underline;
    }

    .simple-cenovnik {
        max-width: 800px;
        margin: 125px auto;
        padding: 40px 30px 30px 40px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .simple-cenovnik h1 {
        font-size: 32px;
        color: #333;
        margin-bottom: 20px;
        border-bottom: 3px solid #FFA500;
        display: inline-block;
        padding-bottom: 6px;
    }

    .simple-cenovnik p {
        font-size: 18px;
        line-height: 1.6;
        color: #555;
        margin: 15px 0;
    }

    .simple-cenovnik strong {
        color: #FFA500;
        font-weight: bold;
    }
