/* ============================================================
   BestQRMenu — Demo Menü Sayfası
   Statik demo: kategoriler, ürünler, sepet akışı (yalnızca JS).
   ============================================================ */

:root {
    --primary: #0D9488;
    --primary-500: #14B8A6;
    --primary-700: #0F766E;
    --background: #F2FAFA;
    --content-1: #E8FAF6;
    --foreground: #124B47;
    --warning: #F59E0B;
    --white: #FFFFFF;

    --fg-soft: rgba(18, 75, 71, 0.66);
    --fg-faint: rgba(18, 75, 71, 0.42);
    --line: rgba(13, 148, 136, 0.14);
    --line-strong: rgba(13, 148, 136, 0.26);
    --shadow-sm: 0 2px 10px -2px rgba(15, 118, 110, 0.10);
    --shadow-md: 0 14px 36px -14px rgba(15, 118, 110, 0.20);
    --shadow-lg: 0 32px 70px -28px rgba(15, 118, 110, 0.30);

    --font-display: 'Sora', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ---------- Demo şeridi ---------- */

.demo-ribbon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #7c4a03;
    background: linear-gradient(110deg, #fef3c7, #fde9b8);
    border-bottom: 1px solid #fde68a;
}

.demo-ribbon svg { width: 14px; height: 14px; }

.demo-ribbon-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #fde68a;
    font-weight: 700;
    transition: background 0.25s;
}

.demo-ribbon-link:hover { background: var(--white); }

/* ---------- Kapak ---------- */

.menu-hero {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.menu-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 55, 51, 0.85), rgba(15, 55, 51, 0.15) 60%);
}

.menu-hero-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 18px clamp(16px, 4vw, 28px);
    max-width: 760px;
    margin: 0 auto;
}

.menu-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
}

.menu-brand-mark {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.menu-brand-mark svg,
.menu-brand-mark img { width: 28px; height: 28px; object-fit: contain; }

.menu-brand h1 { font-size: clamp(20px, 4vw, 26px); color: var(--white); }

.menu-brand p {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 3px;
}

.menu-brand p svg { width: 12px; height: 12px; }

.menu-lang-chip {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* ---------- Ana içerik ---------- */

.menu-main {
    max-width: 760px;
    margin: 0 auto;
    padding: 18px clamp(16px, 4vw, 28px) 110px;
}

.menu-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    height: 48px;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}

.menu-search svg { width: 18px; height: 18px; color: var(--fg-faint); flex-shrink: 0; }

.menu-search input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--foreground);
}

.menu-search input::placeholder { color: var(--fg-faint); }

/* ---------- Kategoriler ---------- */

.menu-cats-sticky {
    position: sticky;
    top: 0;
    z-index: 20;
    margin: 0 calc(-1 * clamp(16px, 4vw, 28px)) 18px;
    padding: 0 clamp(16px, 4vw, 28px);
    background: linear-gradient(var(--background) 80%, transparent);
}

.menu-cats {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 10px 0 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-500) transparent;
}

.menu-cats::-webkit-scrollbar {
    height: 5px;
}

.menu-cats::-webkit-scrollbar-track {
    margin: 0 2px;
    border-radius: 999px;
    background: var(--line);
}

.menu-cats::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
}

.menu-cats::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}

.cat-pill {
    flex: 0 0 auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 17px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--fg-soft);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}

.cat-pill svg { width: 15px; height: 15px; }

.cat-pill:hover { transform: translateY(-2px); }

.cat-pill.on {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    border-color: transparent;
    box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.55);
}

/* ---------- Ürün listesi ---------- */

.menu-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cat-title {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 10px 0 2px;
}

.cat-title svg { width: 18px; height: 18px; color: var(--primary); }

.cat-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--content-1);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-img img { transform: scale(1.06); }

.product-tag {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(110deg, var(--warning), #f97316);
    box-shadow: 0 6px 14px -6px rgba(245, 158, 11, 0.6);
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 13px 14px 14px;
}

.product-body h3 { font-size: 14.5px; line-height: 1.3; }

.product-body p {
    font-size: 12px;
    color: var(--fg-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 9px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--primary-700);
}

.product-add {
    width: 34px; height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 6px 14px -6px rgba(13, 148, 136, 0.55);
    transition: transform 0.3s var(--ease-out);
}

.product-add:hover { transform: scale(1.12); }

.product-add svg { width: 16px; height: 16px; }

.menu-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 48px 0;
    font-size: 14.5px;
    color: var(--fg-faint);
    text-align: center;
}

.menu-empty svg { width: 36px; height: 36px; }

/* ---------- Sepet çubuğu ---------- */

.cart-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(92%, 460px);
    padding: 14px 20px;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary), var(--primary-700));
    box-shadow: var(--shadow-lg);
    font-size: 15px;
    font-weight: 600;
    animation: cartBarIn 0.45s var(--ease-out);
}

@keyframes cartBarIn {
    from { transform: translate(-50%, 70px); opacity: 0; }
    to   { transform: translate(-50%, 0); opacity: 1; }
}

.cart-bar:hover { filter: brightness(1.06); }

.cart-bar-count {
    width: 28px; height: 28px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 13.5px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cart-bar-label { flex: 1; text-align: left; }

.cart-bar-total { font-family: var(--font-display); font-weight: 700; }

.cart-bar.bump { animation: cartBump 0.4s var(--ease-out); }

@keyframes cartBump {
    0%   { transform: translate(-50%, 0) scale(1); }
    40%  { transform: translate(-50%, -6px) scale(1.04); }
    100% { transform: translate(-50%, 0) scale(1); }
}

/* ---------- Modal genel ---------- */

.modal-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 5;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out);
}

.modal-close:hover { transform: rotate(90deg); }

.modal-close svg { width: 17px; height: 17px; }

/* ---------- Ürün modalı ---------- */

.product-modal-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--content-1);
}

.product-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-modal-body h2 { font-size: 21px; }

.product-modal-body p { font-size: 14px; color: var(--fg-soft); }

.pm-chips { display: flex; flex-wrap: wrap; gap: 7px; }

.pm-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
}

.pm-chip.amber { color: #b45309; background: #fef3c7; border-color: #fde68a; }

.pm-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 13px;
    background: var(--content-1);
    border: 1px solid var(--line);
}

.qty-control button {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--white);
    border: 1px solid var(--line);
    transition: background 0.25s, color 0.25s;
}

.qty-control button:hover { background: var(--primary); color: var(--white); }

.qty-control button svg { width: 15px; height: 15px; }

.qty-control span {
    min-width: 32px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.btn-add {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 10px 24px -10px rgba(13, 148, 136, 0.6);
    transition: transform 0.3s var(--ease-out), filter 0.3s;
}

.btn-add:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-add svg { width: 17px; height: 17px; }

.btn-block { width: 100%; }

/* ---------- Sepet çekmecesi ---------- */

.cart-drawer { padding: 20px 22px 26px; }

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-head h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
}

.cart-head h2 svg { width: 20px; height: 20px; color: var(--primary); }

.cart-head .modal-close { position: static; }

.cart-step { display: none; }
.cart-step.active { display: block; animation: stepIn 0.4s var(--ease-out); }

@keyframes stepIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cart-items { display: flex; flex-direction: column; gap: 11px; margin-bottom: 16px; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 15px;
    background: var(--background);
    border: 1px solid var(--line);
}

.cart-item-img {
    width: 56px; height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--content-1);
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-info h4 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 13.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-info span { font-size: 12.5px; font-weight: 600; color: var(--primary-700); }

.cart-item .qty-control { padding: 3px; }
.cart-item .qty-control button { width: 27px; height: 27px; }
.cart-item .qty-control span { min-width: 24px; font-size: 13.5px; }

.cart-item-remove {
    width: 30px; height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #b91c1c;
    background: #fee2e2;
    transition: filter 0.25s;
}

.cart-item-remove:hover { filter: brightness(0.95); }

.cart-item-remove svg { width: 14px; height: 14px; }

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--content-1);
    border: 1px solid var(--line);
    margin-bottom: 16px;
    font-size: 14.5px;
    font-weight: 600;
}

.cart-summary strong {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--primary-700);
}

/* ---------- Sipariş formu ---------- */

.cart-form { display: flex; flex-direction: column; gap: 13px; margin-bottom: 18px; }

.cart-field { display: flex; flex-direction: column; gap: 7px; }

.cart-field > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-soft);
}

.cart-field > span svg { width: 14px; height: 14px; color: var(--primary); }

.cart-field input,
.cart-field select,
.cart-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 13px;
    border: 1px solid var(--line-strong);
    background: var(--background);
    font-family: inherit;
    font-size: 14px;
    color: var(--foreground);
    outline: none;
    resize: vertical;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.cart-field input:focus,
.cart-field select:focus,
.cart-field textarea:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.16);
}

.cart-error {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #b91c1c;
}

.cart-error svg { width: 15px; height: 15px; }

.cart-step-nav { display: flex; gap: 11px; }

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    transition: background 0.25s;
}

.btn-back:hover { background: #ddf4ec; }

.btn-back svg { width: 16px; height: 16px; }

/* ---------- Sipariş özeti ---------- */

.order-summary {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
}

.os-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--background);
    border: 1px solid var(--line);
    font-size: 13.5px;
}

.os-row strong { font-family: var(--font-display); }

.os-row.total {
    background: var(--content-1);
    border-color: var(--line-strong);
    font-weight: 700;
}

.os-row.total strong { color: var(--primary-700); font-size: 16px; }

/* ---------- Başarı ekranı ---------- */

.order-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    text-align: center;
    padding: 14px 4px 4px;
}

.success-ring {
    width: 76px; height: 76px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 16px 36px -12px rgba(13, 148, 136, 0.6);
    animation: successPop 0.6s var(--ease-out);
}

.success-ring svg { width: 36px; height: 36px; }

@keyframes successPop {
    0%   { transform: scale(0.4); opacity: 0; }
    60%  { transform: scale(1.12); }
    100% { transform: scale(1); opacity: 1; }
}

.order-success h3 { font-size: 20px; }

.order-success p { font-size: 13.5px; color: var(--fg-soft); max-width: 340px; }

.order-success .btn-back { margin-top: 2px; }

/* ---------- Bildirim ---------- */

.toast {
    position: fixed;
    left: 50%;
    bottom: 92px;
    transform: translateX(-50%) translateY(16px);
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
    background: var(--foreground);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s var(--ease-out);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast svg { width: 16px; height: 16px; color: var(--primary-500); }

/* ---------- Footer ---------- */

.menu-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 26px 16px 32px;
    font-size: 13px;
    color: var(--fg-faint);
    border-top: 1px solid var(--line);
    background: var(--white);
}

.menu-foot-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--foreground);
}

.menu-foot-brand em { font-style: normal; color: var(--primary); }

.menu-foot-brand svg { width: 16px; height: 16px; color: var(--primary); }

.menu-foot a { font-weight: 600; color: var(--primary-700); }

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
    .menu-products { grid-template-columns: repeat(3, 1fr); }
    .menu-hero { height: 280px; }

}

@media (max-width: 360px) {
    .menu-products { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Demo ribbon: button variant ---------- */

button.demo-ribbon-link {
    font-size: 12.5px;
    color: #7c4a03;
}

/* ---------- E-posta doğrulama (Adım 3) ---------- */

.verify-icon {
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
}

.verify-icon svg {
    width: 52px;
    height: 52px;
    color: var(--primary);
}

.verify-desc {
    text-align: center;
    font-size: 13.5px;
    color: var(--fg-soft);
    line-height: 1.55;
    padding: 0 4px;
}

.verify-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    font-size: 13px;
    color: #7c4a03;
}

.verify-hint svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #d97706;
}

.verify-input {
    text-align: center;
    letter-spacing: 0.45em;
    font-size: 22px !important;
    font-weight: 700 !important;
    font-family: var(--font-display) !important;
    color: var(--primary-700) !important;
}

/* ---------- Siparişlerim modal ---------- */

.orders-drawer {
    padding: 20px 22px 26px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 2px;
}

.order-entry {
    border-radius: 16px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--white);
}

.order-entry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: var(--content-1);
    border-bottom: 1px solid var(--line);
}

.order-entry-head-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.order-entry-no {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--foreground);
}

.order-entry-meta {
    font-size: 11.5px;
    color: var(--fg-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-entry-total {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-700);
    flex-shrink: 0;
}

.order-entry-items {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-entry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--foreground);
}

.order-entry-item span:last-child {
    font-weight: 600;
    color: var(--primary-700);
    flex-shrink: 0;
}

.orders-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 0;
    font-size: 14px;
    color: var(--fg-faint);
    text-align: center;
}

.orders-empty svg {
    width: 44px;
    height: 44px;
}
