@media screen and (max-width: 1024px) {
    .markovic-nav {
        display: none !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.markovic-nav {
    background-color: #AF8366; 
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    height: 85px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999;
}

.argentum-container {
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ovo stoji, ali moramo osigurati da unutrašnji elementi ne prelamaju */
}

.nelle-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center; /* Dodato poravnanje za svaki slučaj */
    gap: 12px; /* KOREKCIJA 1: Smanjen razmak sa 20px na 12px da sve stane bez prelamanja na laptopu */
}

.nelle-menu-item { position: static; display: flex; align-items: center; }

.nelle-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 30px 2px; /* Smanjen horizontalni padding sa 0 na 2px za svaki slučaj */
    transition: 0.3s;
    white-space: nowrap; /* KOREKCIJA 2: Sprečava da tekst u meniju ode u dva reda */
}

.nelle-mega-panel {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px; 
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    padding: 40px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    min-height: 400px;
}

.nelle-menu-item:hover .nelle-mega-panel {
    visibility: visible;
    opacity: 1;
}

.markovic-col {
    position: relative;
    z-index: 2;
    /* flex: 0 0 400px; STARI KOD - Previše fiksira širinu unutar panela */
    flex: 1; /* KOREKCIJA 3: Pustimo kolonu da se automatski prilagodi unutar mega panela */
    max-width: 400px; /* Ali joj ne damo da bude šira od 400px */
}

.markovic-col h3 {
    color: #AF8366;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    display: table;
}

.markovic-col ul { list-style: none; padding: 0; }

.markovic-col ul li a {
    color: #AF8366;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 600;
    font-size: 15px;
}

.nelle-btn-wrapper {
    position: relative;
    padding: 2px;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center; /* Dodato poravnanje za dugme unutar wrapper-a */
}

.nelle-btn-wrapper::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: conic-gradient(transparent, transparent, transparent, #ffffff);
    animation: argentum-led 3s linear infinite;
}

@keyframes argentum-led {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nelle-btn-zakazi {
    position: relative;
    background: #ffffff !important;
    color: #AF8366 !important;
    padding: 12px 22px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    white-space: nowrap; /* Sprečava prelamanje u dugmetu */
}

.markovic-img-box { 
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: 0 !important;
    display: block !important;
}

.markovic-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    object-position: right center;
    border-radius: 0 4px 4px 0;
}