/* ==========================================================================
   OSNOVNO
   ========================================================================== */
:root {
    --yellow: #ffd21f;
    --yellow-soft: #fff4b7;
    --black: #0d0d0f;
    --line: #ececec;
}

body { margin: 0; font-family: sans-serif; }
.container { width: min(1480px, 96%); margin: 0 auto; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 999; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { min-height: 90px; display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 20px; }

.nav-menu { display: flex; list-style: none; gap: 15px; margin: 0; padding: 0; }
.nav-menu a { font-weight: 900; text-decoration: none; color: #000; padding: 10px; }

/* ==========================================================================
   USER DROPDOWN
   ========================================================================== */
.user-dropdown { position: relative; }
.user-avatar-btn { background: none; border: none; padding: 0; cursor: pointer; display: flex; }

.user-avatar-btn img, .guest-avatar {
    width: 48px; height: 48px; border-radius: 12px; border: 2px solid var(--black);
    object-fit: cover; display: flex; align-items: center; justify-content: center;
    background: var(--line); font-size: 24px;
}

.dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0; width: 220px;
    background: #fff; border: 3px solid var(--black); border-radius: 18px;
    box-shadow: 8px 8px 0 var(--yellow); display: none; flex-direction: column;
    padding: 10px 0; z-index: 9999;
}
.dropdown-menu.show { display: flex; }

.dropdown-user-info { padding: 10px 15px; }
.dropdown-user-info strong { display: block; font-weight: 900; }
.dropdown-user-info small { font-size: 12px; color: #666; }

.dropdown-menu hr { border: none; border-top: 1px solid var(--line); margin: 5px 0; }
.dropdown-menu a { 
    padding: 10px 15px; font-weight: 800; display: flex; align-items: center; 
    gap: 10px; color: var(--black) !important; text-decoration: none; 
}
.dropdown-menu a:hover { background: var(--yellow-soft); }

/* ==========================================================================
   GUMBI
   ========================================================================== */
.btn { 
    height: 50px; padding: 0 20px; border-radius: 999px; font-weight: 900; 
    display: inline-flex; align-items: center; border: 3px solid var(--black); text-decoration: none;
}
.btn-yellow { background: var(--yellow); color: var(--black); }