:root {
    --bg: #0b0f19;
    --panel: #111827;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #2ea6ff;
    --border: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; }

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 14px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

#app {
    padding: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.btn.primary {
    background: var(--accent);
    border-color: transparent;
    color: #fff;
}

h1, h2, h3 { margin: 0 0 12px; }
p { margin: 0 0 10px; color: var(--muted); }


.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.row.between {
    justify-content: space-between;
}

.qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn.small {
    height: 32px;
    width: 32px;
    padding: 0;
}

.muted {
    color: var(--muted);
    font-size: 12px;
}

.total {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}


.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 480px) {
    .grid { grid-template-columns: 1fr 1fr; }
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}


.img-wrap {
    width: 100%;
    background: #0f172a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.img-placeholder {
    color: var(--muted);
    font-size: 12px;
}