/* Fix cart scrolling and layout */
#cart-items {
    max-height: 40vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 12px;
}

#checkout-section {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    z-index: 10;
}

/* Ensure cart sheet has proper height */
.bottom-sheet.open {
    max-height: 85vh !important;
}