/* ================================================================
   АДМИН-ТОЧКА
   ================================================================ */

.admin-dot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 14px;
    height: 14px;
    background: #ff3b30;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    opacity: 0.4;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

.admin-dot:hover {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 59, 48, 0.6);
}

.admin-dot.active {
    background: #e67e22;
    opacity: 1;
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.6);
}

@media (max-width: 480px) {
    .admin-dot {
        width: 10px;
        height: 10px;
        bottom: 10px;
        right: 10px;
    }
}
