.sheet {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(27rem, 27.5vw, 56rem);
    background: var(--rich-white, #ffffff);
    border-radius: 2rem 2rem 0 0;
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.sheet.active {
    bottom: 0;
}

.handle {
    width: 3rem;
    height: 0.375rem;
    background: #e2e8f0;
    border-radius: 0.1875rem;
    margin: 1rem auto;
    cursor: grab;
    touch-action: none;
}

.handle:active {
    cursor: grabbing;
}

.sheet .panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}