:root {
    --mint: #26a69a;
    --mango: #ffb300;
    --slate: #455a64;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #f0f2f5;
}

app-shell {
    display: block;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

lawn-map {
    position: absolute;
    top: 70px; /* Below toolbar on desktop */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

app-toolbar {
    position: fixed;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* Let shadow DOM control internal layout (display:flex) */
}

/* Desktop: Top */
@media (min-width: 601px) {
    app-toolbar {
        top: 0;
        border-bottom: 1px solid #eee;
    }
    lawn-map {
        top: 70px;
        bottom: 0;
    }
}

/* Mobile: Bottom */
@media (max-width: 600px) {
    app-toolbar {
        bottom: 0;
        border-top: 1px solid #eee;
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(70px + env(safe-area-inset-bottom));
    }
    lawn-map {
        top: 0;
        bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

location-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30000;
}

swipe-deck {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

saved-sales {
    z-index: 15000;
}
