/* 
 * آراوا - فایل CSS برای 3D Tour
 * این فایل برای ویژگی‌های 3D آینده آماده شده است
 */

.tour-3d-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-3d-placeholder {
    text-align: center;
    color: #666;
}

.tour-3d-placeholder h3 {
    margin-bottom: 10px;
    color: #333;
}

.tour-3d-placeholder p {
    color: #888;
    font-size: 0.9rem;
}

/* 3D Product Viewer Styles */
.product-3d-viewer {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.product-3d-viewer:active {
    cursor: grabbing;
}

.product-3d-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.tour-control-btn {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.tour-control-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation for 3D effect */
@keyframes rotate3d {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.rotating-3d {
    animation: rotate3d 10s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-3d-container {
        height: 250px;
    }
    
    .product-3d-viewer {
        height: 200px;
    }
} 