/* ============================================
   COMMERCE STYLES
   Cart, Checkout, Confirmation, Orders, Payouts
   Extends dashboard.css — uses same :root variables
   ============================================ */

/* ── Cart Page ──────────────────────────── */

.cart-page {
    padding: 32px 0;
    min-height: 60vh;
}

.cart-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.cart-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.cart-empty {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cart-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cart-empty h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.cart-empty p {
    color: #64748b;
    margin-bottom: 24px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    transition: box-shadow 0.2s;
}

.cart-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

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

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #94a3b8;
}

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

.cart-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.cart-item-artist {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 2px;
}

.cart-item-medium {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    color: #ff6464;
    background: rgba(255, 100, 100, 0.08);
}

/* Cart Summary */
.cart-summary {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    position: sticky;
    top: 24px;
}

.cart-summary h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #64748b;
    font-size: 14px;
}

.cart-summary-total {
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 16px;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 18px;
}

.cart-summary-amount {
    font-weight: 600;
}

.cart-login-note {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── Light commerce pages ───────────────────
   Cart, checkout, and confirmation render inside the public layout, which is
   dark for show pages. Buying should feel light and open, so these three pages
   opt out. Only the page surface changes — the white cards already suit it. */
body:has(.cart-page),
body:has(.checkout-page),
body:has(.confirmation-page) {
    background: #f5f7fa !important;
    color: #1a1a2e !important;
}

/* Clearance under the FIXED public header (~64px tall) plus breathing room —
   40px alone left page titles hidden underneath it (Kasey caught it on /cart). */
.cart-page,
.checkout-page,
.confirmation-page {
    padding: 116px 20px 64px !important;
}
@media (max-width: 640px) {
    .cart-page,
    .checkout-page,
    .confirmation-page {
        padding-top: 96px !important;
    }
}

/* Headings on the light surface */
body:has(.cart-page) .cart-title,
body:has(.checkout-page) .page-title,
body:has(.confirmation-page) .confirmation-header h1 {
    color: #0f172a !important;
}

body:has(.confirmation-page) .confirmation-message,
body:has(.confirmation-page) .confirmation-number {
    color: #64748b !important;
}

/* Cards get a definition border + soft lift rather than relying on contrast
   against a dark page. */
body:has(.cart-page) .cart-item,
body:has(.cart-page) .cart-summary,
body:has(.checkout-page) .checkout-section,
body:has(.checkout-page) .order-summary,
body:has(.confirmation-page) .confirmation-card,
body:has(.confirmation-page) .order-summary {
    border: 1px solid #e6ebf1 !important;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.05) !important;
    border-radius: 14px !important;
}

/* ═══════════════════════════════════════════
   CART + CHECKOUT POLISH
   Buying should feel calm and certain. Roomier type, softer surfaces, one
   obvious next action, and a layout that collapses cleanly on a phone with
   the total always in reach.
   ═══════════════════════════════════════════ */

.cart-page, .checkout-page, .confirmation-page { max-width: 1100px !important; margin: 0 auto !important; }

/* Page titles */
.cart-title, .checkout-page .page-title {
    font-size: 1.9rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 22px !important;
}

/* ── Cart items: give the art room to be seen ── */
.cart-item {
    padding: 18px !important;
    gap: 18px !important;
    border-radius: 14px !important;
    margin-bottom: 14px !important;
    transition: box-shadow 0.18s ease, transform 0.18s ease !important;
}
.cart-item:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 10px rgba(15,23,42,0.06), 0 12px 30px rgba(15,23,42,0.07) !important; }
.cart-item img, .cart-item .cart-item-image img {
    width: 92px !important; height: 92px !important;
    object-fit: cover !important; border-radius: 10px !important; flex-shrink: 0 !important;
}

/* ── Summary panels ── */
.cart-summary, .order-summary {
    padding: 24px !important;
    border-radius: 14px !important;
    top: 92px !important;
}
.cart-summary-row, .summary-row { font-size: 0.95rem !important; padding: 7px 0 !important; }
.cart-summary-total, .summary-total { font-size: 1.25rem !important; font-weight: 800 !important; letter-spacing: -0.01em !important; }

/* ── The one obvious action ── */
.cart-summary .btn-primary,
.checkout-page .btn-primary,
.btn-checkout, .btn-place-order {
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 11px !important;
    background: #12294a !important;
    color: #fff !important;
    border: 0 !important;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s !important;
}
.cart-summary .btn-primary:hover,
.checkout-page .btn-primary:hover,
.btn-checkout:hover, .btn-place-order:hover {
    background: #1b3a66 !important; transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(18,41,74,0.25) !important;
}

/* Secondary actions stay quiet */
.cart-summary .btn-secondary, .checkout-page .btn-secondary {
    width: 100% !important; margin-top: 10px !important; padding: 12px !important;
    background: transparent !important; border: 1px solid #dbe3ec !important;
    color: #475569 !important; border-radius: 11px !important; font-weight: 600 !important;
}

/* ── Checkout form fields: match the app's elevated inputs ── */
.checkout-page input[type="text"],
.checkout-page input[type="email"],
.checkout-page input[type="tel"],
.checkout-page select {
    padding: 12px 14px !important;
    border: 1px solid #dbe3ec !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    background: #fff !important;
    box-shadow: inset 0 1px 2px rgba(15,23,42,0.03) !important;
    transition: border-color 0.16s, box-shadow 0.16s !important;
}
.checkout-page input:focus, .checkout-page select:focus {
    outline: none !important;
    border-color: var(--cyan, #15b7ff) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan, #15b7ff) 18%, transparent) !important;
}
.checkout-section { padding: 26px !important; margin-bottom: 20px !important; }
.checkout-section h2 { font-size: 1.15rem !important; margin-bottom: 16px !important; letter-spacing: -0.01em !important; }

/* ── Mobile: stack, and keep the total reachable ── */
@media (max-width: 900px) {
    .cart-layout, .checkout-layout { grid-template-columns: 1fr !important; gap: 20px !important; }
    /* Summary first on checkout so the total is visible before the form */
    .checkout-layout .order-summary { order: -1 !important; position: static !important; }
    .cart-summary { position: static !important; }
}

@media (max-width: 560px) {
    .cart-page, .checkout-page, .confirmation-page { padding: 24px 14px 48px !important; }
    .cart-title, .checkout-page .page-title { font-size: 1.5rem !important; }
    .checkout-section { padding: 18px !important; border-radius: 12px !important; }
    .cart-item { padding: 14px !important; gap: 14px !important; }
    .cart-item img, .cart-item .cart-item-image img { width: 72px !important; height: 72px !important; }
    /* 16px keeps iOS from zooming the viewport on focus */
    .checkout-page input, .checkout-page select { font-size: 16px !important; }
    .cart-summary, .order-summary { padding: 18px !important; }
}

/* ── Checkout Page ──────────────────────── */

.checkout-page {
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.checkout-section {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-bottom: 20px;
}

.checkout-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.checkout-form .form-row {
    margin-bottom: 16px;
}

.checkout-form .form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-form .form-row-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.checkout-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.checkout-form .form-group input,
.checkout-form .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-ui);
    transition: border-color 0.2s;
}

.checkout-form .form-group input:focus {
    outline: none;
    border-color: var(--cyan, #15b7ff);
    box-shadow: 0 0 0 3px rgba(21, 183, 255, 0.1);
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 24px;
}

.order-summary {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
}

.order-summary h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.order-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.order-summary-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.order-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-summary-details {
    flex: 1;
    min-width: 0;
}

.order-summary-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-summary-artist {
    display: block;
    font-size: 11px;
    color: #94a3b8;
}

.order-summary-price {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}

.order-summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 12px 0;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #64748b;
}

.order-summary-total {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    padding-top: 12px;
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
}

/* ── Checkout Account Section ─────────── */

.checkout-account-section {
    background: rgba(21, 183, 255, 0.03);
    border-color: rgba(21, 183, 255, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--cyan, #15b7ff);
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

#create-account-fields .form-group {
    max-width: 360px;
}

/* ── Confirmation Page ──────────────────── */

.confirmation-page {
    max-width: 900px;
    margin: 0 auto;
}

.confirmation-header {
    text-align: center;
    padding: 40px 24px 32px;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #12294a;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.confirmation-number {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.confirmation-message {
    font-size: 14px;
    color: #64748b;
}

.confirmation-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    margin-bottom: 32px;
}

.confirmation-section {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-bottom: 16px;
}

.confirmation-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.confirmation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

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

.confirmation-item-details {
    flex: 1;
}

.confirmation-item-title {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
}

.confirmation-item-artist {
    display: block;
    font-size: 13px;
    color: #64748b;
}

.confirmation-item-price {
    font-weight: 700;
    color: #1a1a2e;
}

.confirmation-summary {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    height: fit-content;
}

.confirmation-summary h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.confirmation-status {
    margin-top: 16px;
    text-align: center;
}

.confirmation-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ── Order Admin ────────────────────────── */

.order-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}

.order-item-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

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

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

.order-item-title {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.order-item-artist {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
}

.order-item-pricing {
    display: flex;
    gap: 16px;
    font-size: 13px;
}

.order-item-actions {
    flex-shrink: 0;
}

.inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.select-small {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--font-ui);
}

.input-small {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    width: 120px;
    font-family: var(--font-ui);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #64748b;
}

.summary-total {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 16px;
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 12px;
}

/* ── Connect Banner ─────────────────────── */

.connect-banner {
    border-radius: 12px;
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.connect-not_connected {
    background: linear-gradient(135deg, rgba(21, 183, 255, 0.05), rgba(252, 156, 255, 0.05));
    border-color: rgba(21, 183, 255, 0.2);
}

.connect-pending {
    background: rgba(255, 228, 115, 0.05);
    border-color: rgba(255, 228, 115, 0.3);
}

.connect-restricted {
    background: rgba(255, 100, 100, 0.05);
    border-color: rgba(255, 100, 100, 0.2);
}

.connect-active {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.connect-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.connect-banner-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.connect-banner-text {
    flex: 1;
}

.connect-banner-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1a1a2e;
}

.connect-banner-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ── Artwork Cell (table) ───────────────── */

.artwork-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.artwork-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

/* ── Cart Badge ─────────────────────────── */

.cart-badge-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    font-size: 20px;
}

.cart-badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #12294a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Cart Icon (Public Header) ─────────── */

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}

.cart-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cart-icon .cart-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #12294a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* ── Add to Cart Button (Show Page) ────── */

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #12294a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-ui);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.add-to-cart-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.add-to-cart-btn.added {
    background: #22c55e;
    pointer-events: none;
}

/* ── Status Badges ──────────────────────── */

.status-paid { background: rgba(34, 197, 94, 0.1); color: #15803d; }
.status-pending { background: rgba(255, 228, 115, 0.15); color: #b45309; }
.status-failed { background: rgba(255, 100, 100, 0.1); color: #dc2626; }
.status-refunded { background: rgba(148, 163, 184, 0.15); color: #64748b; }
.status-partial_refund { background: rgba(255, 228, 115, 0.1); color: #b45309; }

.status-order-pending { background: rgba(255, 228, 115, 0.15); color: #b45309; }
.status-order-confirmed { background: rgba(21, 183, 255, 0.1); color: #0284c7; }
.status-order-processing { background: rgba(252, 156, 255, 0.1); color: #7e22ce; }
.status-order-shipped { background: rgba(34, 197, 94, 0.1); color: #15803d; }
.status-order-delivered { background: rgba(34, 197, 94, 0.15); color: #15803d; }
.status-order-canceled { background: rgba(255, 100, 100, 0.1); color: #dc2626; }

/* ── Buttons ────────────────────────────── */

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.btn-danger {
    background: #ff6464;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-ui);
    transition: background 0.2s;
}

.btn-danger:hover {
    background: #e5574f;
}

/* ── Stats Grid ─────────────────────────── */

.stats-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

/* ── Responsive ─────────────────────────── */

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }

    .checkout-form .form-row-2col,
    .checkout-form .form-row-3col {
        grid-template-columns: 1fr;
    }

    .confirmation-layout {
        grid-template-columns: 1fr;
    }

    .order-detail-layout {
        grid-template-columns: 1fr;
    }

    .order-item-actions {
        width: 100%;
    }

    .inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid-3 {
        grid-template-columns: 1fr;
    }

    .connect-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-price {
        width: 100%;
        text-align: right;
    }

    .confirmation-actions {
        flex-direction: column;
    }
}

/* Orders list: per-item "Title — Artist · Show" lines (owner reference at a glance) */
.order-item-line { line-height: 1.45; white-space: nowrap; }
.order-item-title { font-weight: 600; color: var(--gray-900, #0f172a); }
.order-item-artist { color: #475569; }
.order-item-show { color: #64748b; font-size: 0.85em; }
