/* Public digital menu — standalone (use when example.html has no <style> block) */
:root {
    --mp-bg: #f8f9fa;
    --mp-surface: #ffffff;
    --mp-text: #111827;
    --mp-muted: #6b7280;
    --mp-light: #9ca3af;
    --mp-primary: #f97316;
    --mp-primary-d: #ea580c;
    --mp-primary-soft: #ffedd5;
    --mp-border: #f3f4f6;
    --mp-radius: 16px;
    --mp-radius-sm: 12px;
    --mp-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    --mp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --mp-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* Item card add / qty — same footprint, no layout jump */
    --item-ctrl-w: 96px;
    --item-ctrl-h: 32px;
    --item-ctrl-radius: 10px;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--mp-font);
    font-weight: 400;
    color: var(--mp-text);
    background: var(--mp-bg);
    line-height: 1.5;
}

strong,
b {
    font-weight: 600;
}

#app {
    min-height: 100vh;
    padding-bottom: 100px;
}

/* Icon sizes (inline SVG) */
.w-4 {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.w-5 {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.w-6 {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.w-12 {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.max-w-container {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* --- Header --- */
header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--mp-surface);
    box-shadow: var(--mp-shadow);
    padding-bottom: 0;
    padding-top: env(safe-area-inset-top, 0px);
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--mp-radius-sm);
    background: var(--mp-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.brand-icon.has-custom-logo {
    background: var(--mp-border);
    padding: 0;
}

.brand-icon .brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-text {
    min-width: 0;
}

.brand-text h1 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--mp-text);
}

.brand-text p {
    margin: 2px 0 0;
    font-size: 0.8125rem;
    color: var(--mp-muted);
    font-weight: 500;
}

/* Cart + search — same size / same chrome */
.header-cart-btn,
.header-action-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--mp-bg);
    color: var(--mp-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
    padding: 0;
    box-sizing: border-box;
}

.header-cart-btn:hover,
.header-action-btn:hover {
    background: var(--mp-primary-soft);
    color: var(--mp-primary-d);
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--mp-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search */
.search-container {
    margin-bottom: 8px;
    display: none;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--mp-bg);
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-border);
}

.search-box svg {
    color: var(--mp-light);
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--mp-text);
    font-family: inherit;
    min-width: 0;
    outline: none;
}

.search-box input::placeholder {
    color: var(--mp-light);
}

.search-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--mp-surface);
    color: var(--mp-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.search-close-btn:hover {
    color: var(--mp-text);
    background: var(--mp-bg);
}

/* Tabs — full viewport width scroll, underline header ki bottom edge par */
.tabs-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--mp-border);
    background: var(--mp-surface);
    position: relative;
    z-index: 0;
}

/* Sliding underline — header ki bottom edge (gray line) par align */
.tab-underline {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2.5px;
    width: 0;
    background: var(--mp-primary-d);
    border-radius: 2px 2px 0 0;
    transform: translate3d(0, 0, 0);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition:
        transform 0.26s cubic-bezier(0.25, 0.8, 0.3, 1),
        width 0.26s cubic-bezier(0.25, 0.8, 0.3, 1),
        opacity 0.18s ease;
}

.tab-underline.is-visible {
    opacity: 1;
}

.tab-underline.is-tracking {
    transition:
        transform 0.1s linear,
        width 0.1s linear,
        opacity 0.12s ease;
}

@media (prefers-reduced-motion: reduce) {
    .tab-underline {
        transition: none;
    }
}

.tabs-container {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    overflow-x: auto;
    /* Neeche underline clip na ho (pehle load / overflow-y hidden se line patli lagti thi) */
    overflow-y: visible;
    width: 100%;
    padding: 2px clamp(16px, 3.5vw, 28px) 3px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-inline: 16px;
}

@media (min-width: 521px) {
    .tabs-container {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .tabs-container {
        max-width: 1200px;
        gap: 18px;
        padding-left: 24px;
        padding-right: 24px;
    }
}
.tabs-container::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 6px 4px 6px;
    min-height: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--mp-muted);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: color 0.22s ease;
    position: relative;
}

.tab-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tab-btn:hover {
    color: var(--mp-text);
}

.tab-btn.active {
    background: transparent;
    color: var(--mp-primary-d);
}

body.search-mode .header-top .brand,
body.search-mode .header-top .header-cart-btn,
body.search-mode .header-top .header-search-toggle,
body.search-mode .tabs-wrapper {
    display: none;
}

body.search-mode .search-container {
    display: block;
    margin-bottom: 0;
}

body.search-mode .header-top {
    display: none;
}

/* Search mode: sirf search bar — normal header jaisa sticky + upar chipke rahe */
body.search-mode header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: max(10px, env(safe-area-inset-top, 0px));
    padding-bottom: 12px;
    box-shadow: var(--mp-shadow);
    background: var(--mp-surface);
    width: 100%;
}

body.search-mode .header-main {
    padding-bottom: 0;
}

body.search-mode .search-container {
    padding-top: 2px;
}

/* Menu sections */
#menu-container {
    padding-top: 8px;
}

.category-section {
    margin-bottom: 28px;
}

.category-section:first-of-type {
    margin-top: 18px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--mp-text);
}

.category-title .icon-wrap {
    display: flex;
    color: var(--mp-primary-d);
}

.category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.category-head .category-title {
    margin: 0;
}

.category-view-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--mp-border);
    border-radius: 999px;
    background: var(--mp-bg);
    padding: 2px;
    flex-shrink: 0;
}

.view-toggle-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--mp-muted);
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.view-toggle-btn.active {
    background: #fff;
    color: var(--mp-primary-d);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-grid.mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

/* Item card */
.item-card {
    display: flex;
    gap: 12px;
    background: var(--mp-surface);
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-border);
    padding: 10px;
    box-shadow: var(--mp-shadow);
    overflow: hidden;
}

.menu-grid.mode-grid .item-card {
    flex-direction: column;
    gap: 10px;
    padding: 8px;
}

.menu-grid.mode-grid .item-img-wrap {
    width: calc(100% + 16px);
    height: 132px;
    border-radius: 0;
    margin-top: -8px;
    margin-right: -8px;
    margin-left: -8px;
    margin-bottom: 2px;
}

.menu-grid.mode-grid .item-desc {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.item-img-wrap {
    position: relative;
    width: 135px;
    height: 108px;
    flex: 0 0 135px;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    background: var(--mp-border);
    margin-top: -10px;
    margin-bottom: -10px;
    margin-left: -10px;
}

/* List: image column card jitni lambi (content se), image cover — height image intrinsic se na aaye */
.menu-grid.mode-list .item-img-wrap {
    height: auto;
    align-self: stretch;
    min-height: 0;
    max-height: none;
}

.menu-grid.mode-list .item-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.badge-save {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--mp-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-grid.mode-grid .item-details {
    padding: 2px 2px 2px;
}

.item-name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--mp-text);
}

.item-desc {
    margin: 0;
    font-size: 0.75rem;
    color: var(--mp-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
}

.item-price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--mp-primary-d);
}

/* Fixed slot: collapsed + expanded same width/height — card layout stable */
.item-ctrl-slot {
    width: var(--item-ctrl-w);
    height: var(--item-ctrl-h);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn-add {
    width: var(--item-ctrl-h);
    height: var(--item-ctrl-h);
    border: none;
    border-radius: var(--item-ctrl-radius);
    background: var(--mp-text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

.btn-add:hover {
    opacity: 0.92;
}

.btn-add:active {
    transform: scale(0.96);
}

.qty-ctrl {
    width: 100%;
    height: var(--item-ctrl-h);
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--mp-border);
    border-radius: var(--item-ctrl-radius);
    overflow: hidden;
    background: var(--mp-surface);
    box-sizing: border-box;
}

.qty-btn {
    flex: 0 0 28px;
    width: 28px;
    min-width: 28px;
    border: none;
    background: var(--mp-bg);
    color: var(--mp-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease;
}

.qty-btn:hover {
    background: #eceff2;
}

.qty-btn svg {
    width: 13px;
    height: 13px;
}

.qty-val {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

@keyframes itemCtrlReveal {
    from {
        opacity: 0.55;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.item-ctrl-slot .btn-add,
.item-ctrl-slot .qty-ctrl {
    transform-origin: center;
    animation: itemCtrlReveal 0.24s ease-out;
}

/* Floating cart */
.floating-cart {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 12px 16px 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.25s,
        transform 0.25s;
}

.floating-cart.visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.float-btn {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: none;
    border-radius: 999px;
    background: var(--mp-text);
    color: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--mp-shadow-lg);
}

.float-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

#float-items-count {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

#float-total {
    font-size: 1rem;
    font-weight: 600;
}

.float-checkout {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s,
        visibility 0.25s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    background: var(--mp-surface);
    border-radius: var(--mp-radius) var(--mp-radius) 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

@media (min-width: 520px) {
    .modal-overlay {
        align-items: center;
        padding: 24px;
    }
    .modal-content {
        border-radius: var(--mp-radius);
        max-height: 85vh;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--mp-border);
    flex-shrink: 0;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--mp-bg);
    color: var(--mp-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-header-right {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mp-muted);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    color: var(--mp-muted);
}

.empty-cart .icon-lg {
    color: var(--mp-border);
    margin-bottom: 16px;
}

.empty-cart h3 {
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--mp-text);
}

.empty-cart p {
    margin: 0 0 20px;
    font-size: 0.875rem;
}

.btn-browse {
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: var(--mp-primary);
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

/* Cart list */
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--mp-border);
}

.cart-item img {
    width: 56px;
    height: 56px;
    border-radius: var(--mp-radius-sm);
    object-fit: cover;
    background: var(--mp-border);
}

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

.cart-item-details h4 {
    margin: 0 0 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.cart-item-details span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mp-primary-d);
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-qty-ctrl button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--mp-border);
    border-radius: 10px;
    background: var(--mp-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mp-text);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 8px;
    margin-top: 8px;
    border-top: 1px solid var(--mp-border);
    font-size: 1rem;
    font-weight: 600;
}

.checkout-form {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--mp-border);
}

.form-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mp-text);
    margin-bottom: 12px;
}

.input-group {
    position: relative;
    margin-bottom: 12px;
}

.input-group .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mp-light);
    pointer-events: none;
}

.input-group textarea.input-field {
    min-height: 72px;
    padding-left: 44px;
    padding-top: 14px;
    resize: vertical;
}

.input-field {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-sm);
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    background: var(--mp-bg);
    outline: none;
}

.input-field:focus {
    border-color: #fdba74;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
}

.modal-footer {
    padding: 16px;
    border-top: 1px solid var(--mp-border);
    flex-shrink: 0;
    background: var(--mp-surface);
}

.btn-whatsapp {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: none;
    border-radius: var(--mp-radius);
    background: #25d366;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-whatsapp:hover {
    filter: brightness(1.05);
}

.footer-note {
    margin: 10px 0 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--mp-muted);
}

.customize-modal-content {
    max-height: min(88vh, 640px);
    display: flex;
    flex-direction: column;
}

.customize-modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 12px 16px 20px;
}

.customize-desc {
    font-size: 0.875rem;
    color: var(--mp-muted);
    margin: 0 0 16px;
    line-height: 1.45;
}

.customize-block {
    margin-bottom: 18px;
}

.customize-block-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mp-muted);
    margin-bottom: 10px;
}

.customize-radio-row,
.customize-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-border);
    background: var(--mp-bg);
    cursor: pointer;
    font-size: 0.9375rem;
}

.customize-radio-row input,
.customize-check-row input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--mp-primary, #f97316);
}

.customize-radio-label,
.customize-check-row span:first-of-type {
    flex: 1;
}

.customize-radio-price,
.customize-addon-price {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mp-primary, #f97316);
}

.customize-modal-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.customize-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--mp-muted);
    margin: 4px 0 6px;
    line-height: 1.35;
}

.item-ctrl-customize {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.item-cart-hint {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--mp-muted);
    text-align: right;
}

.btn-add-customize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-add-customize-text {
    font-size: 0.8125rem;
    font-weight: 600;
}
