/* ==========================================================================
   360° VIRTUAL TOUR - MAXSUS STILLAR
   ========================================================================== */

/* 360 viewer navigatsiya va knopkalari */
.tour-floating-toolbar {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 15;
}

.tour-tool-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.tour-tool-btn:hover {
    background: var(--primary);
    transform: scale(1.08);
    border-color: #38bdf8;
    color: #ffffff;
}

/* Interaktiv Hotspot (Sahna ichidagi o'tish nuqtalari) */
.interactive-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease;
}

.interactive-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.hotspot-pulse {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.4);
    animation: hotspotPulseAnim 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.hotspot-core {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border: 2px solid #ffffff;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.hotspot-tag {
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    backdrop-filter: blur(8px);
}

@keyframes hotspotPulseAnim {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* Fayl yuklash zonasi va ogohlantirish */
.upload-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
