/* /Components/ClientMenu/CategoriesCarousel.razor.rz.scp.css */
.cat-card[b-l2j59i4t61] {
    flex-shrink: 0;
    width: 120px;
    background: var(--text-white, #fff);
    border-radius: 16px;
    border: 1.5px solid #ebebeb;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    margin: 1rem 0;
}

.cat-card:hover[b-l2j59i4t61] {
    border-color: var(--menu-color, rgba(4, 118, 78, 0.35));
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.cat-card:active[b-l2j59i4t61] {
    transform: scale(0.97);
}

.cat-card__img[b-l2j59i4t61] {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px;
}

.cat-card__img img[b-l2j59i4t61] {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.cat-card__label[b-l2j59i4t61] {
    padding: 10px 8px 12px;
    text-align: center;
}

.cat-card__label h5[b-l2j59i4t61] {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--menu-color, var(--f7-theme-color, #04764E));
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ── Dark mode ── */
[b-l2j59i4t61] .dark .cat-card,
:global(.dark) .cat-card[b-l2j59i4t61] {
    background: #1a1a1a;
    border-color: #333;
}

:global(.dark) .cat-card__img[b-l2j59i4t61] {
    background: #222;
}

:global(.dark) .cat-card__label h5[b-l2j59i4t61] {
    color: #e5e5e5;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .cat-card[b-l2j59i4t61] {
        width: 110px;
    }
}

@media (min-width: 1024px) {
    .cat-card[b-l2j59i4t61] {
        width: 140px;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .cat-card[b-l2j59i4t61] {
        transition: none;
    }
}
/* /Components/Common/AppErrorBoundary.razor.rz.scp.css */
.error-boundary[b-y2r4gox393] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.error-boundary-icon[b-y2r4gox393] {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 16px;
}

.error-boundary-message[b-y2r4gox393] {
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.error-boundary-details[b-y2r4gox393] {
    font-size: 13px;
    color: #888;
    margin: 0 0 16px 0;
    max-width: 400px;
    word-break: break-word;
}

.error-boundary-retry[b-y2r4gox393] {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    background-color: #05a66d;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.error-boundary-retry:hover[b-y2r4gox393] {
    background-color: #048a5b;
}
/* /Components/Common/ConfirmDialog.razor.rz.scp.css */
.confirm-overlay[b-ceqqt5jy01] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.confirm-dialog[b-ceqqt5jy01] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.confirm-title[b-ceqqt5jy01] {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.confirm-message[b-ceqqt5jy01] {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

.confirm-actions[b-ceqqt5jy01] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.confirm-btn[b-ceqqt5jy01] {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.confirm-btn-cancel[b-ceqqt5jy01] {
    background-color: #f0f0f0;
    color: #666;
}

.confirm-btn-cancel:hover[b-ceqqt5jy01] {
    background-color: #e0e0e0;
}

.confirm-btn-ok[b-ceqqt5jy01] {
    background-color: #05a66d;
    color: #fff;
}

.confirm-btn-ok:hover[b-ceqqt5jy01] {
    background-color: #048a5b;
}
/* /Components/Common/EmptyState.razor.rz.scp.css */
.empty-state[b-q7ejfjhq5i] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-state-icon[b-q7ejfjhq5i] {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 16px;
}

.empty-state-message[b-q7ejfjhq5i] {
    font-size: 16px;
    color: #888;
    margin: 0 0 16px 0;
}

.empty-state-action[b-q7ejfjhq5i] {
    margin-top: 8px;
}
/* /Components/Common/LoadingSpinner.razor.rz.scp.css */
.loading-spinner-overlay[b-b5v5dimlwd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.loading-spinner-container[b-b5v5dimlwd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loading-spinner[b-b5v5dimlwd] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #05a66d;
    border-radius: 50%;
    animation: spin-b-b5v5dimlwd 1s linear infinite;
}

.loading-message[b-b5v5dimlwd] {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

@keyframes spin-b-b5v5dimlwd {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Components/Common/PaginationControl.razor.rz.scp.css */
.pagination-control[b-y8gsljtbgn] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
}

.pagination-btn[b-y8gsljtbgn] {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled)[b-y8gsljtbgn] {
    background-color: #f5f5f5;
}

.pagination-btn:disabled[b-y8gsljtbgn] {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn.active[b-y8gsljtbgn] {
    background-color: #05a66d;
    border-color: #05a66d;
    color: #fff;
}
/* /Components/CultureSelector.razor.rz.scp.css */
.culture-smart-select-container[b-knucahz1jp] {
    margin-left: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#culture-smart-select[b-knucahz1jp] {
    color: #FFF;
    width: 35px;
    height: 35px;
    min-width: 35px !important;
    min-height: 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--menu-color, var(--count-of-products)) 0%, color-mix(in srgb, var(--menu-color, var(--count-of-products)) 70%, #000) 100%);
    border: none;
    border-radius: 50%;
}
/* /Components/VoiceOrderButton.razor.rz.scp.css */
.voice-order-container[b-rmoon3rkec] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: 1rem;
}

.kc_fab_main_btn.voice_btn[b-rmoon3rkec] {
    background: linear-gradient(135deg, var(--menu-color, var(--count-of-products)) 0%, color-mix(in srgb, var(--menu-color, var(--count-of-products)) 70%, #000) 100%);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px !important;
    min-height: 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.kc_fab_main_btn.voice_btn:hover[b-rmoon3rkec] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.kc_fab_main_btn.voice_btn:active[b-rmoon3rkec] {
    transform: translateY(0);
}

.kc_fab_main_btn.voice_btn svg[b-rmoon3rkec] {
    color: white;
    width: 20px;
    height: 20px;
}

.floating-icon-voice[b-rmoon3rkec] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.voiceTag[b-rmoon3rkec] {
    position: absolute;
    bottom: -25px;
    left: 27%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.kc_fab_main_btn.voice_btn:hover+.voiceTag[b-rmoon3rkec] {
    opacity: 1;
}

.voice-recognition-panel[b-rmoon3rkec] {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 350px;
    min-width: 300px;
    animation: slideUp-b-rmoon3rkec 0.3s ease-out;
}

@keyframes slideUp-b-rmoon3rkec {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.voice-recognition-content[b-rmoon3rkec] {
    padding: 16px;
}

.voice-recognition-header[b-rmoon3rkec] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.voice-recognition-title[b-rmoon3rkec] {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.voice-close-btn[b-rmoon3rkec] {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.voice-close-btn:hover[b-rmoon3rkec] {
    background-color: var(--hover-color);
}

.voice-recognition-text[b-rmoon3rkec] {
    background: var(--input-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    min-height: 60px;
    max-height: 120px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-color);
    word-wrap: break-word;
}

.voice-recognition-actions[b-rmoon3rkec] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.voice-action-btn[b-rmoon3rkec] {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.voice-process-btn[b-rmoon3rkec] {
    background: linear-gradient(135deg, var(--menu-color, var(--count-of-products)) 0%, color-mix(in srgb, var(--menu-color, var(--count-of-products)) 70%, #000) 100%);
    color: white;
}

.voice-process-btn:hover[b-rmoon3rkec] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.voice-clear-btn[b-rmoon3rkec] {
    background: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.voice-clear-btn:hover[b-rmoon3rkec] {
    background: var(--hover-color);
}

@media (max-width: 768px) {
    .voice-recognition-panel[b-rmoon3rkec] {
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }

    .floating-icon-voice[b-rmoon3rkec] {
        right: 15px;
        bottom: 15px;
    }
}
/* /Components/VoiceOrderPopup.razor.rz.scp.css */
.voice-order-popup-overlay[b-bw1co3bb98] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

    .voice-order-popup-overlay.show[b-bw1co3bb98] {
        opacity: 1;
        visibility: visible;
    }

.voice-order-popup[b-bw1co3bb98] {
    background: var(--background-color, #ffffff);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.voice-order-popup-overlay.show .voice-order-popup[b-bw1co3bb98] {
    transform: scale(1) translateY(0);
}

.voice-order-popup-header[b-bw1co3bb98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
    background: var(--header-background, #f8fafc);
}

.voice-order-popup-title[b-bw1co3bb98] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color, #1f2937);
    text-align: center;
    flex: 1;
}

.voice-order-close-btn[b-bw1co3bb98] {
    background: none;
    border: none;
    color: var(--text-muted, #6b7280);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

    .voice-order-close-btn:hover[b-bw1co3bb98] {
        background: var(--hover-color, #f3f4f6);
        color: var(--text-color, #1f2937);
    }

.voice-order-popup-content[b-bw1co3bb98] {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.voice-order-error[b-bw1co3bb98] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--error-background, #fef2f2);
    border: 1px solid var(--error-border, #fecaca);
    border-radius: 12px;
    color: var(--error-text, #dc2626);
}

.voice-order-error-icon[b-bw1co3bb98] {
    flex-shrink: 0;
}

.voice-order-error-message[b-bw1co3bb98] {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.voice-order-items[b-bw1co3bb98] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voice-order-item[b-bw1co3bb98] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: var(--item-background, #f8fafc);
    border: 1px solid var(--item-border, #e5e7eb);
    border-radius: 12px;
    transition: all 0.2s ease;
    animation: slideInUp-b-bw1co3bb98 0.3s ease-out;
}

    .voice-order-item:hover[b-bw1co3bb98] {
        background: var(--item-hover-background, #f1f5f9);
        border-color: var(--item-hover-border, #cbd5e1);
    }

.voice-order-item-info[b-bw1co3bb98] {
    flex: 1;
    margin-right: 16px;
}

.voice-order-item-header[b-bw1co3bb98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.voice-order-item-name[b-bw1co3bb98] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color, #1f2937);
    line-height: 1.4;
}

.voice-order-item-count[b-bw1co3bb98] {
    background: var(--primary-color, #3b82f6);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.voice-order-item-options[b-bw1co3bb98] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.voice-order-option[b-bw1co3bb98] {
    background: var(--option-background, #e0f2fe);
    color: var(--option-text, #0369a1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.voice-order-option-price[b-bw1co3bb98] {
    font-weight: 600;
    color: var(--price-color, #059669);
}

.voice-order-item-comment[b-bw1co3bb98] {
    margin-top: 8px;
    padding: 8px 12px;
    background: var(--comment-background, #fef3c7);
    border-left: 3px solid var(--comment-border, #f59e0b);
    border-radius: 0 6px 6px 0;
}

.voice-order-comment-label[b-bw1co3bb98] {
    font-size: 12px;
    font-weight: 600;
    color: var(--comment-label, #92400e);
    display: block;
    margin-bottom: 2px;
}

.voice-order-comment-text[b-bw1co3bb98] {
    font-size: 13px;
    color: var(--comment-text, #92400e);
    font-style: italic;
}

.voice-order-item-price[b-bw1co3bb98] {
    text-align: right;
    flex-shrink: 0;
}

.voice-order-price[b-bw1co3bb98] {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--price-color, #059669);
    line-height: 1.2;
}

.voice-order-price-euro[b-bw1co3bb98] {
    display: block;
    font-size: 12px;
    color: var(--text-muted, #6b7280);
    margin-top: 2px;
}

.voice-order-total[b-bw1co3bb98] {
    margin-top: 24px;
    padding: 20px;
    background: var(--total-background, #f0f9ff);
    border: 2px solid var(--total-border, #0ea5e9);
    border-radius: 12px;
    text-align: center;
}

.voice-order-total-line[b-bw1co3bb98] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.voice-order-total-label[b-bw1co3bb98] {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color, #1f2937);
}

.voice-order-total-amount[b-bw1co3bb98] {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color, #3b82f6);
}

.voice-order-total-euro[b-bw1co3bb98] {
    font-size: 14px;
    color: var(--text-muted, #6b7280);
}

.voice-order-popup-actions[b-bw1co3bb98] {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid var(--border-color, #e5e7eb);
    background: var(--actions-background, #f8fafc);
}

.voice-order-btn[b-bw1co3bb98] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.voice-order-discard-btn[b-bw1co3bb98] {
    background: var(--danger-background, #fef2f2);
    color: var(--danger-text, #dc2626);
    border: 1px solid var(--danger-border, #fecaca);
}

    .voice-order-discard-btn:hover[b-bw1co3bb98] {
        background: var(--danger-hover, #fee2e2);
        transform: translateY(-1px);
    }

.voice-order-change-btn[b-bw1co3bb98] {
    background: var(--warning-background, #fffbeb);
    color: var(--warning-text, #d97706);
    border: 1px solid var(--warning-border, #fed7aa);
}

    .voice-order-change-btn:hover[b-bw1co3bb98] {
        background: var(--warning-hover, #fef3c7);
        transform: translateY(-1px);
    }

.voice-order-place-btn[b-bw1co3bb98] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

    .voice-order-place-btn:hover[b-bw1co3bb98] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

.voice-order-close-btn[b-bw1co3bb98] {
    background: var(--secondary-background, #f3f4f6);
    color: var(--secondary-text, #6b7280);
    border: 1px solid var(--secondary-border, #d1d5db);
}

    .voice-order-close-btn:hover[b-bw1co3bb98] {
        background: var(--secondary-hover, #e5e7eb);
    }

@media (max-width: 640px) {
    .voice-order-popup[b-bw1co3bb98] {
        margin: 10px;
        max-height: 90vh;
    }

    .voice-order-popup-header[b-bw1co3bb98] {
        padding: 16px 20px;
    }

    .voice-order-popup-title[b-bw1co3bb98] {
        font-size: 18px;
    }

    .voice-order-popup-content[b-bw1co3bb98] {
        padding: 20px;
    }

    .voice-order-item[b-bw1co3bb98] {
        flex-direction: column;
        align-items: stretch;
    }

    .voice-order-item-info[b-bw1co3bb98] {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .voice-order-item-price[b-bw1co3bb98] {
        text-align: left;
    }

    .voice-order-popup-actions[b-bw1co3bb98] {
        flex-direction: column;
        gap: 8px;
    }

    .voice-order-btn[b-bw1co3bb98] {
        width: 100%;
    }
}

@keyframes slideInUp-b-bw1co3bb98 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.voice-order-section[b-bw1co3bb98] {
    margin-bottom: 24px;
}

.voice-order-section-title[b-bw1co3bb98] {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color, #1f2937);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color, #3b82f6);
}

.voice-order-promotions[b-bw1co3bb98] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voice-order-promotion[b-bw1co3bb98] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--promotion-border, #f59e0b);
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

    .voice-order-promotion:hover[b-bw1co3bb98] {
        background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
        border-color: var(--promotion-hover-border, #d97706);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
    }

.voice-order-promotion-info[b-bw1co3bb98] {
    flex: 1;
    margin-right: 16px;
}

.voice-order-promotion-header[b-bw1co3bb98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
}

.voice-order-promotion-name[b-bw1co3bb98] {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--promotion-text, #92400e);
    line-height: 1.4;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
}

.voice-order-promotion-count[b-bw1co3bb98] {
    background: var(--promotion-count-bg, #f59e0b);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.voice-order-promotion-comment[b-bw1co3bb98] {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 3px solid var(--promotion-comment-border, #d97706);
    border-radius: 0 6px 6px 0;
}

.voice-order-promotion-price[b-bw1co3bb98] {
    text-align: right;
    flex-shrink: 0;
}

.voice-order-promotion .voice-order-price[b-bw1co3bb98] {
    color: var(--promotion-price, #92400e);
    font-weight: 800;
}

.voice-order-promotion .voice-order-price-euro[b-bw1co3bb98] {
    color: var(--promotion-price-muted, #a16207);
}

.cart-list .stepper[b-bw1co3bb98] {
    --f7-stepper-border-width: 0px;
    border: 1px solid #c4c4c4;
    height: 36px;
    border-radius: 20px;
    overflow: hidden;
}

.cart-list .stepper .stepper-button-minus[b-bw1co3bb98], .cart-list .stepper .stepper-button-plus[b-bw1co3bb98], .cart-list .stepper .stepper-input-wrap[b-bw1co3bb98] {
        border: none !important;
}

.cart-list .stepper .stepper-button-minus[b-bw1co3bb98], .cart-list .stepper .stepper-button-plus[b-bw1co3bb98] {
        width: 36px;
        line-height: 34px;
}

.cart-list .stepper input[b-bw1co3bb98] {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-color);
        width: 36px;
}
/* /Pages/Client/CategoryMenuItems.razor.rz.scp.css */
.item-bx .btn-buy:hover[b-wver1auc93] {
    background-color: #fff !important;
    color: green !important;
}

.item-title a[b-wver1auc93] {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    display: inline-block;
}

.dz-media[b-wver1auc93] {
    height: 87px;
}

.item-bx .dz-media img[b-wver1auc93] {
    object-fit: cover;
    background-color: var(--f7-theme-color-light);
}

.item-bx.item-list .item-title[b-wver1auc93] {
    word-break: break-all;
}

.dz-meta ul li svg[b-wver1auc93] {
    margin-right: unset;
}

.header-swiper[b-wver1auc93] {
    pointer-events: none;
}

.header-swiper *[b-wver1auc93] {
    pointer-events: auto;
}

@media (min-width: 768px) {
    .grid.grid-gap[b-wver1auc93] {
        column-gap: 40px;
    }
}

.category-description[b-wver1auc93] {
    font-size: 0.9rem;
    padding: 0px 5px 10px 5px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 300;
}
/* /Pages/Client/ClientMenu.razor.rz.scp.css */
.item-bx .btn-buy:hover[b-wrfzxzl2q0] {
    background-color: #fff !important;
    color: green !important;
}

.hide-scrollbar[b-wrfzxzl2q0]::-webkit-scrollbar {
    display: none;
}

.item-bx.item-list[b-wrfzxzl2q0] {
    height: fit-content;
}

.item-bx .dz-media img[b-wrfzxzl2q0] {
    object-fit: contain;
    background-color: var(--f7-theme-color-light);
}

.card-overlay.style-1 .title a[b-wrfzxzl2q0] {
    word-break: break-all;
}

/* Category card styles moved to CategoriesCarousel.razor.css */

.card-overlay.style-1[b-wrfzxzl2q0] {
    border-radius: 0px 0px 0 0;
    padding: 10px;
    margin-top: 70px;
}

.card-overlay.style-1 .dz-media img[b-wrfzxzl2q0] {
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-overlay.style-1 .title a[b-wrfzxzl2q0] {
    margin: 0;
}


.dz-meta ul li svg[b-wrfzxzl2q0] {
    margin-right: 0 !important;
}

.page-home.hide-scrollbar[b-wrfzxzl2q0] {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
/* /Pages/Client/PaymentMethods.razor.rz.scp.css */
.disabled-link[b-eb60226gpw] {
    pointer-events: none;
    opacity: 0.6;
    background-color: #A5CFFF !important;
    color: #ffffff !important;
    cursor: not-allowed;
}

.dz-accordion .accordion-item .item-link.item-content .item-title[b-eb60226gpw] {
    font-size: 17px;
}

.item-inner[b-eb60226gpw]:before {
    content: none !important;
}

.item-title[b-eb60226gpw]::before {
    content: none !important;
}

.item-title[b-eb60226gpw]::after {
    content: none !important;
}

.item-title[b-eb60226gpw] {
    padding-left: 0 !important;
    font-weight: 600 !important;
}

.payment-radio[b-eb60226gpw] {
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 1rem 0 1rem;
    vertical-align: middle;
    accent-color: var(--menu-color, #04764E);
}
/* /Pages/ScanQRCode.razor.rz.scp.css */
.qr-instruction[b-o7wwozz3n7] {
    text-align: center;
    margin: 60px 2px 60px 2px;
    padding: 10px;
    background-color: transparent;
}
