:root {
    --blue: #0d6efd;
    --blue-dark: #0b5ed7;
    --bg: #0b1220;
    --card: #1d2d4e;
    --text: #e9eefc;
    --muted: #d6dae4;
    --accent: #25D366;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Cambria, serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
}

.app {
    width: 100%;
    max-width: 640px;
}

header {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, var(--blue), var(--blue-dark));
    padding: 14px;
    text-align: center;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.tickbox {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pedido-mostrar {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border: none;
    background: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.container {
    padding: 12px;
    padding-bottom: 140px
}

.card {
    background: var(--card);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 12px;
    padding-top: 0px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
}

.desc {
    color: var(--muted);
    font-size: 16px;
    margin: 6px 0px;
    margin-top: 0px;
}

.opts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

button:hover {
    cursor: pointer;
}

.btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-weight: 600
}

.btn:active {
    background-color: var(--bg);
    transform: translateY(3px);
}

.pedido {
    position: sticky;
    bottom: 60px;
    margin: 12px;
    background: #0d6efd;
    border-radius: 14px
}

.pedido h4 {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #333;
}

.pedido-list {
    max-height: 240px;
    overflow: auto;
}

.pedido-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px dashed #333;
}

.pedido-item-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.total {
    padding: 10px;
    font-weight: 700;
    text-align: right
}

svg {
    width: 30px;
    height: 30px;
}

.remove {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    background: none;
    border: none;
    color: red;
}

.whatsapp {
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: var(--accent);
    font-weight: 800;
    color: white;
    border: none
}

.hidden {
    opacity: 0;
    pointer-events: none;
}