:root {
    --primary: #1a1a1a;
    --primary-dark: #000000;
    --accent: #C4973E;
    --accent-dark: #a67c2e;
    --bg: #f8f6f3;
    --card: #ffffff;
    --text: #1e1e1e;
    --muted: #6b6b6b;
    --border: #e5e0d8;
    --radius: 14px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

* { box-sizing: border-box; }

body.menu-app {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 2rem;
}

.menu-header {
    position: relative;
    min-height: 220px;
    background: linear-gradient(160deg, #111111 0%, #000000 100%);
    color: #fff;
    overflow: hidden;
}

.menu-header__cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.menu-header__content {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1rem 2rem;
    max-width: 640px;
    margin: 0 auto;
}

.menu-header__logo {
    width: auto;
    max-width: 220px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    border: none;
    margin-bottom: 1rem;
    display: block;
}

.menu-header__name {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
    opacity: 0.9;
    color: var(--accent);
}

.menu-header h1 {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.menu-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.menu-lang {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.menu-lang a {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
}

.menu-lang a.active {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border-color: var(--accent);
}

.menu-container {
    max-width: 640px;
    margin: -1.25rem auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.menu-events {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    margin-bottom: 1rem;
}

.menu-events h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--primary);
}

.event-card {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}

.event-card:last-child { border-bottom: none; }

.event-card img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.event-card h3 {
    margin: 0 0 0.2rem;
    font-size: 0.9rem;
}

.event-card p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.category-section {
    margin-bottom: 1.25rem;
}

.menu-container > .category-section:first-of-type {
    margin-top: 30px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--accent);
}

.product-card {
    display: flex;
    gap: 0.85rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.85rem;
    margin-bottom: 0.75rem;
}

.product-card.unavailable {
    opacity: 0.65;
}

.product-card__img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--border);
}

.product-card__img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--muted);
}

.product-card__body { flex: 1; min-width: 0; }

.product-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-card__name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-card__price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    font-size: 0.95rem;
}

.product-card__desc {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.45rem;
}

.product-tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: #e0f2f1;
    color: #0d5c54;
}

.badge-unavailable {
    display: inline-block;
    font-size: 0.7rem;
    color: #b45309;
    background: #fef3c7;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.35rem;
}

/* Home - menu picker */
.home-hero {
    text-align: center;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(160deg, #111111, #000000);
    color: #fff;
}

.home-hero img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 0.75rem;
}

.menu-picker {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
}

.menu-picker-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: transform 0.15s;
}

.menu-picker-card:active { transform: scale(0.98); }

.menu-picker-card__img {
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.menu-picker-card__body { padding: 1rem; }

.menu-picker-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    color: var(--primary);
}

.menu-picker-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

/* Şef mesaj widget (sağ üst köşe) */
.chef-widget {
    position: fixed;
    top: max(0.9rem, env(safe-area-inset-top, 0.9rem));
    right: 0.9rem;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.chef-widget.is-ready {
    opacity: 1;
    pointer-events: auto;
}

.chef-widget.is-dismissed {
    display: none !important;
}

.chef-widget__btn {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: #fff;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    overflow: visible;
    display: block;
    transition: transform 0.15s, box-shadow 0.15s;
}

.chef-widget__btn:active {
    transform: scale(0.93);
}

.chef-widget__photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.chef-widget__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    border-radius: 50%;
    background: #f8f5f0;
}

.chef-widget__badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.chef-widget__close {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #888;
    font-size: 0.7rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    transition: background 0.15s, color 0.15s;
    z-index: 1;
}

.chef-widget__close:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

.product-card.js-product-card {
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.12s;
}

.product-card.js-product-card:active {
    transform: scale(0.99);
}

/* Modals */
body.menu-modal-open {
    overflow: hidden;
}

.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.menu-modal[hidden] {
    display: none !important;
}

.menu-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.menu-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--card);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
    animation: menuModalSlide 0.25s ease;
}

.menu-modal__dialog--chef {
    padding-bottom: 1.5rem;
}

@keyframes menuModalSlide {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.menu-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.65rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.menu-modal__img-wrap {
    width: 100%;
    background: var(--border);
}

.menu-modal__img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    display: block;
}

.menu-modal__img--empty {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--muted);
}

.menu-modal__body {
    padding: 1rem 1.1rem 1.5rem;
}

.menu-modal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.menu-modal__head h2 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
}

.menu-modal__price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    font-size: 1.05rem;
}

.menu-modal__desc {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}

.menu-modal__section {
    margin-bottom: 1rem;
}

.menu-modal__section h3 {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
}

.menu-modal__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-modal__list li {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
}

.menu-modal__list li:last-child {
    border-bottom: none;
}

.menu-modal__ingredients {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text);
}

.menu-modal__unavailable {
    color: #b45309;
    background: #fef3c7;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin: 0;
}

.chef-modal__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.1rem 0.5rem;
}

.chef-modal__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.chef-modal__header h2 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.chef-modal__message {
    padding: 0 1.1rem 1rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
}

/* Masa sipariş */
.menu-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.4rem;
    width: 100%;
}

.menu-table-badge {
    margin: 0;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-extra-request,
.btn-table-cleaning {
    display: inline-block;
    flex-shrink: 0;
    margin: 0;
    padding: 0.4rem 0.75rem;
    white-space: nowrap;
    border: 1px solid rgba(196, 151, 62, 0.65);
    background: rgba(196, 151, 62, 0.18);
    color: #f5e6c8;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-extra-request:hover,
.btn-table-cleaning:hover {
    background: rgba(196, 151, 62, 0.32);
}

.extra-request-modal__intro {
    line-height: 1.55;
    margin: 0.5rem 0 0.85rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.extra-request-options {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.extra-request-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 10px;
    background: #f8fafc;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
}

.extra-request-option__input {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.extra-request-modal__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-extra-request-cancel,
.btn-table-cleaning-cancel {
    flex: 1;
    padding: 0.65rem;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
}

.btn-extra-request-confirm,
.btn-table-cleaning-confirm {
    flex: 1;
    padding: 0.65rem;
    border: none;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.extra-request-sent,
.table-cleaning-sent {
    margin: 0 0 1rem;
    padding: 0.65rem 0.85rem;
    background: #ecfeff;
    border: 1px solid #67e8f9;
    border-radius: 10px;
    color: #0e7490;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.menu-container--ordering {
    padding-bottom: 5rem;
}

body.menu-app.menu-has-footer {
    padding-bottom: 0;
}

.table-orders-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.table-orders-panel:not([hidden]) {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.table-orders-panel h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--primary);
}

.peer-order-notifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.peer-order-toast {
    background: #fff8e8;
    border: 1px solid #e8c872;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 12px rgba(196, 151, 62, 0.15);
    animation: peerToastIn 0.35s ease;
}

.peer-order-toast strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.peer-order-toast p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.peer-order-toast--hide {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s, transform 0.35s;
}

@keyframes peerToastIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.table-order-card--mine {
    background: #fafafa;
}

.table-order-card--peer {
    background: #fffdf7;
}

.table-order-card__who {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 0.15rem;
}

.table-order-card--mine .table-order-card__who {
    color: var(--muted);
}

.table-order-card {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.table-order-card:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.table-order-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.table-order-card__items {
    margin: 0.5rem 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
}

.table-order-card__total {
    font-weight: 600;
    font-size: 0.9rem;
}

.order-status {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
}

.order-status--pending { background: #fef3c7; color: #92400e; }
.order-status--seen { background: #dbeafe; color: #1e40af; }
.order-status--preparing { background: #e0e7ff; color: #3730a3; }
.order-status--ready { background: #d1fae5; color: #065f46; }

.table-order-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.order-status-visual {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--bg);
}

.order-status-visual--pending::before { content: "⏳"; }
.order-status-visual--seen::before { content: "👀"; }
.order-status-visual--preparing {
    background: #eef2ff;
    animation: order-pulse 1.4s ease-in-out infinite;
}
.order-status-visual--preparing::before {
    content: "🍳";
    display: inline-block;
    animation: order-cook 1.2s ease-in-out infinite;
}
.order-status-visual--ready {
    background: #d1fae5;
    animation: order-ready-pop 0.6s ease-out;
}
.order-status-visual--ready::before { content: "🍽️"; }

.order-status-hint {
    margin: 0.25rem 0 0.5rem 2.9rem;
    font-size: 0.8rem;
    color: var(--muted);
}
.order-status-hint:empty { display: none; }
.order-status-hint--preparing { color: #4338ca; font-style: italic; }
.order-status-hint--ready { color: #047857; font-weight: 500; }

@keyframes order-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
}
@keyframes order-cook {
    0%, 100% { transform: rotate(-6deg) scale(1); }
    50% { transform: rotate(6deg) scale(1.08); }
}
@keyframes order-ready-pop {
    0% { transform: scale(0.85); opacity: 0.6; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

/* Floating cart button (sağ alt köşe) */
.cart-fab {
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
    right: 1rem;
    z-index: 100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    box-shadow: 0 6px 24px rgba(196, 151, 62, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    font-size: 1.55rem;
}

.cart-fab:active {
    transform: scale(0.91);
    box-shadow: 0 3px 12px rgba(196, 151, 62, 0.4);
}

.cart-fab[hidden] { display: none !important; }

.cart-fab__badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #e53e3e;
    color: #fff;
    border-radius: 999px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: transform 0.18s;
}

.cart-fab__badge[data-empty="true"] {
    background: #9ca3af;
}

/* Siparişlerim pill (cart FAB'ın üstünde) */
.orders-pill {
    position: fixed;
    bottom: max(5.25rem, calc(env(safe-area-inset-bottom, 0px) + 5.25rem));
    right: 0.75rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2d1f0e 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.orders-pill[hidden] { display: none !important; }

.orders-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fef08a;
    flex-shrink: 0;
    animation: order-pulse 1.2s ease-in-out infinite;
}

.product-modal-order {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-add-cart,
.btn-submit-order {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.15s;
}

.btn-add-cart:hover,
.btn-submit-order:hover {
    background: var(--accent-dark);
}

.btn-submit-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* cart-bar merged into .menu-footer */

.cart-bar__count {
    background: rgba(255, 255, 255, 0.25);
    min-width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-line__info {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.cart-line__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.cart-line__remove {
    border: none;
    background: transparent;
    color: #b91c1c;
    cursor: pointer;
    margin-left: 0.25rem;
}

.cart-empty { color: var(--muted); }
.cart-summary { margin: 1rem 0; }
.order-success { text-align: center; }
.menu-modal__dialog--cart { max-height: 85vh; overflow-y: auto; }

.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%) translateY(1rem);
    z-index: 200;
    background: #065f46;
    color: #fff;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    max-width: calc(100% - 2rem);
    text-align: center;
}

.cart-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-fab.cart-fab--pulse {
    animation: cart-fab-pulse 0.4s ease;
}

@keyframes cart-fab-pulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); }
    70%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.cart-bar__count {
    display: none;
}
