/* Контейнер экспоната */
.exponat-single-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовок */
.exponat-header {
    margin-bottom: 30px;
}

.exponat-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* Мета информация */
.exponat-meta {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.exponat-meta-item {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.exponat-meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: #666;
    min-width: 180px;
    flex-shrink: 0;
}

.meta-value {
    color: #333;
    flex: 1;
}

/* Изображение */
.exponat-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.exponat-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Секции */
.exponat-description-section,
.exponat-video-section,
.exponat-3d-section,
.exponat-virtual-tour-section {
    margin-bottom: 40px;
}

.exponat-description p {
    margin-bottom: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

/* Описание */
.exponat-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    white-space: pre-wrap;
}

/* Видео YouTube */
.exponat-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-preview,
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	display: flex;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 68px;
    height: 48px;
    padding: 0;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-player iframe {
    width: 100%;
    height: 100%;
}

/* 3D модель */
.exponat-3d-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

model-viewer {
    width: 100%;
    height: 500px;
    background-color: #f0f0f0;
}

/* Iframe виртуального тура */
.exponat-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.exponat-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
    .exponat-single-container {
        padding: 20px 15px;
    }
    
    .exponat-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .exponat-meta {
        padding: 15px;
    }
    
    .exponat-meta-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .meta-label {
        min-width: auto;
    }
    
    .exponat-description {
        font-size: 15px;
    }
    
    model-viewer {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .exponat-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    model-viewer {
        height: 300px;
    }
}