/* /Components/CartModal.razor.rz.scp.css */
/* ── Backdrop ─────────────────────────────────────── */
.cart-backdrop[b-uvn3qlv8jg] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cart-backdrop.open[b-uvn3qlv8jg] {
    opacity: 1;
    pointer-events: auto;
}

/* ── Drawer ───────────────────────────────────────── */
.cart-drawer[b-uvn3qlv8jg] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 100vw);
    background: #ffffff;
    z-index: 1101;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.18);
}

.cart-drawer.open[b-uvn3qlv8jg] {
    transform: translateX(0);
}

/* ── Header ───────────────────────────────────────── */
.cart-drawer-header[b-uvn3qlv8jg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.cart-drawer-title[b-uvn3qlv8jg] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

.cart-close-btn[b-uvn3qlv8jg] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    line-height: 1;
    transition: color 0.15s, background-color 0.15s;
}

.cart-close-btn:hover[b-uvn3qlv8jg] {
    color: #1e3a5f;
    background-color: #f3f4f6;
}

/* ── Empty state ──────────────────────────────────── */
.cart-empty[b-uvn3qlv8jg] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #6b7280;
}

.cart-empty-icon[b-uvn3qlv8jg] {
    font-size: 3rem;
    opacity: 0.5;
}

.cart-empty p[b-uvn3qlv8jg] {
    font-size: 1rem;
    margin: 0;
}

/* ── Item list ────────────────────────────────────── */
.cart-items[b-uvn3qlv8jg] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.cart-item[b-uvn3qlv8jg] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.cart-item:last-child[b-uvn3qlv8jg] {
    border-bottom: none;
}

.cart-item-image[b-uvn3qlv8jg] {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f2f5;
}

.cart-item-image img[b-uvn3qlv8jg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-img-placeholder[b-uvn3qlv8jg] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0.4;
}

.cart-item-details[b-uvn3qlv8jg] {
    flex: 1;
    min-width: 0;
}

.cart-item-name[b-uvn3qlv8jg] {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.cart-item-options[b-uvn3qlv8jg] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.cart-option-tag[b-uvn3qlv8jg] {
    font-size: 0.72rem;
    background: #eef2f7;
    color: #1e3a5f;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-weight: 500;
}

.cart-item-unit-price[b-uvn3qlv8jg] {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0 0 0.6rem;
}

.cart-item-controls[b-uvn3qlv8jg] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Quantity stepper */
.qty-stepper[b-uvn3qlv8jg] {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.qty-stepper button[b-uvn3qlv8jg] {
    background: #f9fafb;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    color: #374151;
    transition: background-color 0.12s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-stepper button:hover[b-uvn3qlv8jg] {
    background-color: #e5e7eb;
}

.qty-value[b-uvn3qlv8jg] {
    min-width: 32px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1f2937;
    padding: 0 0.25rem;
}

.cart-item-remove[b-uvn3qlv8jg] {
    background: none;
    border: none;
    font-size: 0.78rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.cart-item-remove:hover[b-uvn3qlv8jg] {
    color: #dc2626;
}

.cart-item-line-total[b-uvn3qlv8jg] {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e3a5f;
    padding-top: 0.1rem;
}

/* ── Footer ───────────────────────────────────────── */
.cart-drawer-footer[b-uvn3qlv8jg] {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-subtotal[b-uvn3qlv8jg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.cart-subtotal-amount[b-uvn3qlv8jg] {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e3a5f;
}

.cart-tax-note[b-uvn3qlv8jg] {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0;
}

.btn-checkout[b-uvn3qlv8jg] {
    display: block;
    width: 100%;
    background-color: #D1AC60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s;
    text-align: center;
}

.btn-checkout:hover[b-uvn3qlv8jg] {
    background-color: #b8943f;
}

.btn-continue-shopping[b-uvn3qlv8jg] {
    display: block;
    width: 100%;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.65rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.15s;
    text-align: center;
}

.btn-continue-shopping:hover[b-uvn3qlv8jg] {
    background-color: #f9fafb;
}
/* /Components/OptionSelectModal.razor.rz.scp.css */
.option-modal-backdrop[b-pk1rjhuq28] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1200;
}

.option-modal[b-pk1rjhuq28] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 1201;
    width: min(440px, 92vw);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.option-modal-header[b-pk1rjhuq28] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f2f5;
}

.option-modal-title[b-pk1rjhuq28] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

.option-modal-close[b-pk1rjhuq28] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

    .option-modal-close:hover[b-pk1rjhuq28] {
        color: #1e3a5f;
    }

.option-modal-body[b-pk1rjhuq28] {
    padding: 1rem 1.25rem;
    overflow-y: auto;
    flex: 1;
}

.option-modal-subtitle[b-pk1rjhuq28] {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 1rem;
}

.option-group[b-pk1rjhuq28] {
    margin-bottom: 1.25rem;
}

    .option-group:last-child[b-pk1rjhuq28] {
        margin-bottom: 0;
    }

.option-group-label[b-pk1rjhuq28] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.option-required-mark[b-pk1rjhuq28] {
    color: #dc2626;
    margin-left: 0.15rem;
}

.option-optional-mark[b-pk1rjhuq28] {
    font-weight: 400;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-left: 0.3rem;
}

.option-choices[b-pk1rjhuq28] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.option-choice[b-pk1rjhuq28] {
    padding: 0.4rem 0.85rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 0.85rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.15s;
    font-weight: 500;
}

    .option-choice:hover[b-pk1rjhuq28] {
        border-color: #1e3a5f;
        background: #f8fafc;
    }

    .option-choice.selected[b-pk1rjhuq28] {
        border-color: #1e3a5f;
        background: #1e3a5f;
        color: #fff;
    }

.option-text-input[b-pk1rjhuq28] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #374151;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

    .option-text-input:focus[b-pk1rjhuq28] {
        border-color: #1e3a5f;
    }

.option-error[b-pk1rjhuq28] {
    display: block;
    font-size: 0.78rem;
    color: #dc2626;
    margin-top: 0.35rem;
}

.option-modal-footer[b-pk1rjhuq28] {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid #f0f2f5;
}

.option-btn-cancel[b-pk1rjhuq28] {
    padding: 0.5rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
    font-weight: 500;
}

    .option-btn-cancel:hover[b-pk1rjhuq28] {
        background: #f9fafb;
    }

.option-btn-confirm[b-pk1rjhuq28] {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 8px;
    background: #D1AC60;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .option-btn-confirm:hover[b-pk1rjhuq28] {
        background: #b8943f;
    }
/* /Components/ProductCard.razor.rz.scp.css */
.product-card[b-jbjg8n8ayi] {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

    .product-card:hover[b-jbjg8n8ayi] {
        box-shadow: 0 6px 20px rgba(30, 58, 95, 0.15);
        transform: translateY(-2px);
    }

/* Image area */
.product-image-wrap[b-jbjg8n8ayi] {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f0f2f5;
    flex-shrink: 0;
}

.product-img[b-jbjg8n8ayi] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img[b-jbjg8n8ayi] {
    transform: scale(1.04);
}

.product-img-placeholder[b-jbjg8n8ayi] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef0f3;
}

.placeholder-icon[b-jbjg8n8ayi] {
    font-size: 3rem;
    opacity: 0.4;
}

/* Body */
.product-body[b-jbjg8n8ayi] {
    padding: 0.9rem 1rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-name[b-jbjg8n8ayi] {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description[b-jbjg8n8ayi] {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.45;
}

.product-option-tags[b-jbjg8n8ayi] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.35rem;
}

.option-tag[b-jbjg8n8ayi] {
    font-size: 0.72rem;
    background: #eef2f7;
    color: #1e3a5f;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.option-tag-required[b-jbjg8n8ayi] {
    background: #fef3c7;
    color: #92400e;
    font-weight: 600;
}

.product-meta[b-jbjg8n8ayi] {
    margin-top: auto;
    padding-top: 0.3rem;
}

.product-sku[b-jbjg8n8ayi] {
    font-size: 0.72rem;
    color: #9ca3af;
    font-family: monospace;
}

/* Footer */
.product-footer[b-jbjg8n8ayi] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-top: 1px solid #f0f2f5;
    flex-shrink: 0;
}

.product-price[b-jbjg8n8ayi] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a5f;
}

.btn-add-cart[b-jbjg8n8ayi] {
    background-color: #D1AC60;
    color: #ffffff;
    border: none;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s;
}

    .btn-add-cart:hover:not(:disabled)[b-jbjg8n8ayi] {
        background-color: #b8943f;
    }

    .btn-add-cart:disabled[b-jbjg8n8ayi] {
        background-color: #d1d5db;
        cursor: not-allowed;
    }

    .btn-add-cart.added[b-jbjg8n8ayi] {
        background-color: #16a34a;
    }

/* Friday Special card */
.product-card-friday[b-jbjg8n8ayi] {
    border: 1.5px solid #fbbf24;
}

.product-friday-countdown[b-jbjg8n8ayi] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5480 100%);
    color: #fff;
    padding: 0.45rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    flex-wrap: wrap;
}

.product-friday-today[b-jbjg8n8ayi] {
    background: linear-gradient(135deg, #92400e 0%, #b45309 100%);
}

.pfc-star[b-jbjg8n8ayi] { font-size: 0.8rem; flex-shrink: 0; }

.pfc-label[b-jbjg8n8ayi] {
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}

.pfc-timer[b-jbjg8n8ayi] {
    font-family: monospace;
    font-weight: 700;
    color: #fde68a;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
/* /Layout/BusinessLayout.razor.rz.scp.css */
.biz-shell[b-btxkgelkz8] {
    display: flex;
    min-height: 100vh;
    background: #f5f6f8;
}

/* ── Sidebar ──────────────────────────────────────── */
.biz-sidebar[b-btxkgelkz8] {
    width: 220px;
    flex-shrink: 0;
    background: #1e3a5f;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.biz-sidebar-brand[b-btxkgelkz8] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
    font-weight: 700;
    color: #D1AC60;
}

.biz-brand-link[b-btxkgelkz8] {
    font-size: 1.5rem;
    text-decoration: none;
    line-height: 1;
}

.biz-nav-icon[b-btxkgelkz8] {
    font-size: 1rem;
    width: 1.2rem;
    text-align: center;
}

/* Footer */
.biz-sidebar-footer[b-btxkgelkz8] {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.biz-user-name[b-btxkgelkz8] {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.biz-logout-btn[b-btxkgelkz8] {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    border-radius: 6px;
    padding: 0.45rem;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

.biz-logout-btn:hover[b-btxkgelkz8] {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

/* ── Main ─────────────────────────────────────────── */
.biz-main[b-btxkgelkz8] {
    margin-left: 220px;
    flex: 1;
    min-width: 0;
}

.biz-content[b-btxkgelkz8] {
    padding: 2rem 2rem 4rem;
    max-width: 1200px;
}

/* ── Responsive ───────────────────────────────────── */
@@media (max-width: 768px) {
    .biz-sidebar[b-btxkgelkz8] {
        width: 100%;
        position: static;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.5rem;
        height: auto;
    }

    .biz-sidebar-brand[b-btxkgelkz8] { border-bottom: none; padding: 0.5rem; }
    .biz-nav[b-btxkgelkz8] { flex-direction: row; flex: 1; padding: 0.25rem; gap: 0.25rem; }
    .biz-sidebar-footer[b-btxkgelkz8] { padding: 0.5rem; }
    .biz-user-name[b-btxkgelkz8] { display: none; }
    .biz-shell[b-btxkgelkz8] { flex-direction: column; }
    .biz-main[b-btxkgelkz8] { margin-left: 0; }
    .biz-content[b-btxkgelkz8] { padding: 1rem 1rem 3rem; }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.main-content[b-ml3qw9akfb] {
    padding-top: 100px;
    min-height: 100vh;
}
/* /Layout/NavBar.razor.rz.scp.css */
.wcs-navbar[b-oosw6ox0c8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000000;
    height: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wcs-navbar-inner[b-oosw6ox0c8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Brand */
.wcs-brand[b-oosw6ox0c8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.wcs-brand-logo[b-oosw6ox0c8] {
    height: 90px;
    width: auto;
    border-radius: 4px;
}

.wcs-brand-name[b-oosw6ox0c8] {
    color: #D1AC60;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Nav links */
.wcs-nav-links[b-oosw6ox0c8] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.wcs-nav-link[b-oosw6ox0c8] {
    color: #d0d8e4;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s, background-color 0.15s;
}

    .wcs-nav-link:hover[b-oosw6ox0c8],
    .wcs-nav-link.active[b-oosw6ox0c8] {
        color: #ffffff;
        background-color: rgba(209, 172, 96, 0.2);
    }

    .wcs-nav-link.active[b-oosw6ox0c8] {
        color: #D1AC60;
    }

/* Business link */
.wcs-business-link[b-oosw6ox0c8] {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cart button */
.wcs-cart-btn[b-oosw6ox0c8] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.5rem;
    padding: 0.4rem 1rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.15s;
    line-height: 1;
}

    .wcs-cart-btn:hover[b-oosw6ox0c8] {
        background-color: #e5e5e5;
        color: #000000;
    }

.cart-icon[b-oosw6ox0c8] {
    font-size: 1rem;
}

.cart-badge[b-oosw6ox0c8] {
    background-color: #000000;
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    min-width: 20px;
    text-align: center;
}

/* Hamburger toggler — visibility controlled globally in app.css */
.wcs-nav-toggler[b-oosw6ox0c8] {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.toggler-bar[b-oosw6ox0c8] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #d0d8e4;
    border-radius: 2px;
    transition: background-color 0.15s;
}

.wcs-nav-toggler:hover .toggler-bar[b-oosw6ox0c8] {
    background-color: #ffffff;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-v7wsw8rdxw] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-v7wsw8rdxw] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-v7wsw8rdxw] {
    font-size: 1.1rem;
}

.bi[b-v7wsw8rdxw] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-v7wsw8rdxw] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-v7wsw8rdxw] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-v7wsw8rdxw] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-v7wsw8rdxw] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-v7wsw8rdxw] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-v7wsw8rdxw] {
        padding-bottom: 1rem;
    }

    .nav-item[b-v7wsw8rdxw]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-v7wsw8rdxw]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-v7wsw8rdxw]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-v7wsw8rdxw] {
        display: none;
    }

    .collapse[b-v7wsw8rdxw] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-v7wsw8rdxw] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/About.razor.rz.scp.css */
.about-page[b-p84blwyiqr] {
    max-width: 720px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.about-logo[b-p84blwyiqr] {
    width: 160px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.about-page h1[b-p84blwyiqr] {
    color: var(--wcs-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-page p[b-p84blwyiqr] {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: left;
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .about-page[b-p84blwyiqr] {
        padding: 1.5rem 1rem;
    }

    .about-logo[b-p84blwyiqr] {
        width: 120px;
    }

    .about-page h1[b-p84blwyiqr] {
        font-size: 1.4rem;
    }
}
/* /Pages/Business/Login.razor.rz.scp.css */
.biz-login-page[b-lvyr5pquhg] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
    padding: 1rem;
}

.biz-login-card[b-lvyr5pquhg] {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.biz-login-header[b-lvyr5pquhg] {
    text-align: center;
    margin-bottom: 1.75rem;
}

.biz-login-logo[b-lvyr5pquhg] {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.biz-login-header h1[b-lvyr5pquhg] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a5f;
    margin: 0 0 0.25rem;
}

.biz-login-header p[b-lvyr5pquhg] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.biz-login-error[b-lvyr5pquhg] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.biz-login-form[b-lvyr5pquhg] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-lvyr5pquhg] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label[b-lvyr5pquhg] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.form-group input[b-lvyr5pquhg] {
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1f2937;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus[b-lvyr5pquhg] {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}

.form-group input:disabled[b-lvyr5pquhg] {
    background: #f9fafb;
    color: #9ca3af;
}

.biz-login-btn[b-lvyr5pquhg] {
    width: 100%;
    background: #D1AC60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.15s;
}

.biz-login-btn:hover:not(:disabled)[b-lvyr5pquhg] {
    background: #b8943f;
}

.biz-login-btn:disabled[b-lvyr5pquhg] {
    opacity: 0.6;
    cursor: not-allowed;
}

.biz-login-back[b-lvyr5pquhg] {
    text-align: center;
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
}

.biz-login-back a[b-lvyr5pquhg] {
    color: #6b7280;
    text-decoration: none;
}

.biz-login-back a:hover[b-lvyr5pquhg] {
    color: #1e3a5f;
}
/* /Pages/Checkout.razor.rz.scp.css */
/* ── Page layout ──────────────────────────────────── */
.checkout-page[b-82d4op0dte] {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
    align-items: start;
}

.checkout-empty[b-82d4op0dte] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    gap: 1rem;
    color: #6b7280;
}

.btn-back-to-shop[b-82d4op0dte] {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background-color: #1e3a5f;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ── Headings ─────────────────────────────────────── */
.checkout-heading[b-82d4op0dte] {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a5f;
    margin: 0 0 1.75rem;
}

.checkout-section[b-82d4op0dte] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-section:last-of-type[b-82d4op0dte] {
    border-bottom: none;
}

.section-title[b-82d4op0dte] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 1rem;
}

/* ── Fulfillment toggle ───────────────────────────── */
.fulfillment-toggle[b-82d4op0dte] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fulfillment-btn[b-82d4op0dte] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.25rem 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
    text-align: center;
}

.fulfillment-btn.active[b-82d4op0dte] {
    border-color: #1e3a5f;
    background-color: #eef2f8;
}

.fulfillment-btn:hover:not(.active)[b-82d4op0dte] {
    border-color: #93a7be;
    background-color: #f3f4f6;
}

.fulfillment-icon[b-82d4op0dte] {
    font-size: 1.75rem;
    line-height: 1;
}

.fulfillment-label[b-82d4op0dte] {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
}

.fulfillment-sublabel[b-82d4op0dte] {
    font-size: 0.78rem;
    color: #6b7280;
}

/* ── Form fields ──────────────────────────────────── */
.form-row[b-82d4op0dte] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3[b-82d4op0dte] {
    grid-template-columns: 2fr 1fr 1.5fr;
}

.form-group[b-82d4op0dte] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.form-group label[b-82d4op0dte] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.optional[b-82d4op0dte] {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.8rem;
}

.form-group input[b-82d4op0dte],
.form-group textarea[b-82d4op0dte] {
    padding: 0.6rem 0.85rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1f2937;
    background: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    resize: vertical;
}

.form-group input:focus[b-82d4op0dte],
.form-group textarea:focus[b-82d4op0dte] {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
}

.form-group input.input-error[b-82d4op0dte],
.form-group textarea.input-error[b-82d4op0dte] {
    border-color: #dc2626;
}

.field-error[b-82d4op0dte] {
    font-size: 0.78rem;
    color: #dc2626;
}

/* ── Proceed button ───────────────────────────────── */
.btn-proceed[b-82d4op0dte] {
    display: block;
    width: 100%;
    background-color: #D1AC60;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s;
    margin-top: 1.5rem;
}

.btn-proceed:hover[b-82d4op0dte] {
    background-color: #b8943f;
}

/* ── Order summary sidebar ────────────────────────── */
.checkout-summary[b-82d4op0dte] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    position: sticky;
    top: 84px;
}

.summary-heading[b-82d4op0dte] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 1rem;
}

.summary-items[b-82d4op0dte] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.summary-item[b-82d4op0dte] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.summary-item-info[b-82d4op0dte] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}

.summary-item-name[b-82d4op0dte] {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-item-options[b-82d4op0dte] {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 400;
}

.summary-item-qty[b-82d4op0dte] {
    font-size: 0.78rem;
    color: #9ca3af;
}

.summary-item-total[b-82d4op0dte] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a5f;
    white-space: nowrap;
}

.summary-divider[b-82d4op0dte] {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.75rem 0;
}

.summary-row[b-82d4op0dte] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #374151;
    padding: 0.3rem 0;
}

.summary-subtotal[b-82d4op0dte] {
    font-weight: 700;
    font-size: 1rem;
    color: #1e3a5f;
}

.summary-muted[b-82d4op0dte] {
    color: #9ca3af;
    font-size: 0.82rem;
}

/* Responsive styles moved to app.css for reliable application */
/* /Pages/Contact.razor.rz.scp.css */
.contact-page[b-6v4wlw0m4i] {
    max-width: 720px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.contact-page h1[b-6v4wlw0m4i] {
    color: var(--wcs-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-page p[b-6v4wlw0m4i] {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-page a[b-6v4wlw0m4i] {
    color: var(--wcs-primary);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-page[b-6v4wlw0m4i] {
        padding: 1.5rem 1rem;
    }

    .contact-page h1[b-6v4wlw0m4i] {
        font-size: 1.4rem;
    }
}
/* /Pages/Payment.razor.rz.scp.css */
/* ── Page layout ──────────────────────────────────── */
.payment-page[b-8as0kndi8l] {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
    align-items: start;
}

.payment-redirect[b-8as0kndi8l] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    color: #6b7280;
}

/* ── Breadcrumb ───────────────────────────────────── */
.payment-breadcrumb[b-8as0kndi8l] {
    margin-bottom: 1.25rem;
}

.breadcrumb-link[b-8as0kndi8l] {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb-link:hover[b-8as0kndi8l] {
    color: #1e3a5f;
}

/* ── Heading ──────────────────────────────────────── */
.payment-heading[b-8as0kndi8l] {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a5f;
    margin: 0 0 1.5rem;
}

/* ── Fulfillment banner ───────────────────────────── */
.fulfillment-banner[b-8as0kndi8l] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background-color: #eef2f8;
    border-radius: 10px;
    border-left: 4px solid #1e3a5f;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.fulfillment-badge[b-8as0kndi8l] {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}

.fulfillment-badge.pickup[b-8as0kndi8l] {
    background-color: #1e3a5f;
    color: #ffffff;
}

.fulfillment-badge.delivery[b-8as0kndi8l] {
    background-color: #D1AC60;
    color: #ffffff;
}

.fulfillment-detail[b-8as0kndi8l] {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

/* ── Payment section ──────────────────────────────── */
.payment-section[b-8as0kndi8l] {
    margin-bottom: 1.5rem;
}

.payment-section-title[b-8as0kndi8l] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 1rem;
}

/* ── Square placeholder ───────────────────────────── */
.square-placeholder[b-8as0kndi8l] {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fafafa;
}

.square-placeholder-icon[b-8as0kndi8l] {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.square-placeholder-title[b-8as0kndi8l] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 0.5rem;
}

.square-placeholder-body[b-8as0kndi8l] {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* Mock form fields */
.square-form-mock[b-8as0kndi8l] {
    text-align: left;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.mock-field[b-8as0kndi8l] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mock-field:last-child[b-8as0kndi8l] {
    margin-bottom: 0;
}

.mock-field label[b-8as0kndi8l] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-input[b-8as0kndi8l] {
    padding: 0.6rem 0.85rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #9ca3af;
    background: #f9fafb;
    letter-spacing: 0.1em;
}

.mock-row[b-8as0kndi8l] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.square-coming-soon[b-8as0kndi8l] {
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0;
}

/* ── Place order button ───────────────────────────── */
.btn-place-order[b-8as0kndi8l] {
    display: block;
    width: 100%;
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.15s;
}

.btn-place-order:hover:not(:disabled)[b-8as0kndi8l] {
    background-color: #162d4a;
}

.btn-place-order:disabled[b-8as0kndi8l] {
    cursor: not-allowed;
    opacity: 0.55;
}

.payment-disclaimer[b-8as0kndi8l] {
    font-size: 0.78rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 0.75rem;
}

/* ── Summary sidebar ──────────────────────────────── */
.payment-summary[b-8as0kndi8l] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    position: sticky;
    top: 84px;
}

.summary-heading[b-8as0kndi8l] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 1rem;
}

.summary-contact[b-8as0kndi8l] {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.7;
}

.summary-contact p[b-8as0kndi8l] {
    margin: 0;
}

.summary-divider[b-8as0kndi8l] {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.85rem 0;
}

.summary-items[b-8as0kndi8l] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.summary-item[b-8as0kndi8l] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.summary-item-info[b-8as0kndi8l] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.summary-item-name[b-8as0kndi8l] {
    font-size: 0.82rem;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-item-options[b-8as0kndi8l] {
    display: block;
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 400;
}

.summary-item-qty[b-8as0kndi8l] {
    font-size: 0.75rem;
    color: #9ca3af;
}

.summary-item-total[b-8as0kndi8l] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a5f;
    white-space: nowrap;
}

.summary-row[b-8as0kndi8l] {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #374151;
    padding: 0.25rem 0;
}

.summary-amount[b-8as0kndi8l] {
    font-weight: 700;
    color: #1e3a5f;
}

.summary-muted[b-8as0kndi8l] {
    color: #9ca3af;
    font-size: 0.82rem;
}

.summary-notes-label[b-8as0kndi8l] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.25rem;
}

.summary-notes[b-8as0kndi8l] {
    font-size: 0.82rem;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

/* Responsive styles moved to app.css for reliable application */
