
.showroom360-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.showroom360-viewer {
    width: 100%;
    height: 100%;
    position: relative;
}

.showroom360-hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ff6b6b, #ff5252);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 100;
}

.showroom360-hotspot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.showroom360-info-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 200;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.showroom360-info-panel.show {
    transform: translateX(0);
}

.info-content {
    padding: 20px;
}

.close-info {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.info-title {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.info-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.view-details {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
}

.view-details:hover {
    background: #005a87;
    color: white;
}

.showroom360-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 150;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .showroom360-info-panel {
        width: calc(100% - 40px);
        right: 20px;
    }
}
