.bottom-sheet-panel{position:fixed;left:0;right:0;bottom:0;z-index:201;width:100%;max-height:88vh;overflow-y:auto;background:var(--color-surface);border-radius:var(--radius-2xl) var(--radius-2xl) 0 0;box-shadow:var(--shadow-2);padding:20px 18px calc(18px + env(safe-area-inset-bottom));box-sizing:border-box;animation:bottom-sheet-slide-up .2s ease}@keyframes bottom-sheet-slide-up{0%{transform:translateY(100%)}}@media (min-width:768px){.bottom-sheet-panel{left:50%;bottom:auto;top:50%;transform:translate(-50%,-50%);width:440px;max-width:calc(100vw - 48px);max-height:85vh;border-radius:var(--radius-2xl);padding:24px;animation:bottom-sheet-pop-in .18s ease}@keyframes bottom-sheet-pop-in{0%{opacity:0;transform:translate(-50%,-46%)}}}