
/* Bottom Sheet Styles */
.bottom-sheet-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 20px;
    padding-bottom: calc(env(safe-area-inset-bottom, 20px) + 20px);
    z-index: 1800;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.bottom-sheet.open {
    transform: translateY(0);
}

.bottom-sheet-drag-handle {
    width: 40px;
    height: 5px;
    background: var(--text-secondary);
    border-radius: 3px;
    margin: 0 auto 20px auto;
    opacity: 0.5;
}

.bottom-sheet-video {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 15px auto;
    display: block;
    max-height: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    object-fit: cover;
    background: #000;
}

/* Hide native video controls if any */
.bottom-sheet-video::-webkit-media-controls {
    display: none !important;
}

@media (min-width: 768px) {
    .bottom-sheet {
        left: 50%;
        right: auto;
        width: 100%;
        max-width: 450px;
        transform: translateX(-50%) translateY(100%);
        padding-bottom: 30px;
    }
    .bottom-sheet.open {
        transform: translateX(-50%) translateY(0);
    }
}
