.floating-nav {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background: rgba(0,0,0,0.4);
    border-top-left-radius: 5px;
  	border-bottom-left-radius: 5px;
    padding: 15px 0;
    transition: all 0.3s ease;
    display: none;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    list-style: none;
    margin: 0;
}

.nav-dot-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 1;
}

.nav-dot.active {
    background: #fff;
}

@media (max-width: 480px) {
	.floating-nav {
		display: none !important;
	}
}