/*
 * Kukburi — shared across Cart, Checkout, Confirmation. Ported ~verbatim
 * from the prototypes (identical rules were copy-pasted into all three
 * prototype files — kept as one file here instead, see HANDOFF.md Section 2).
 *
 * Note: the `.payment-option` styling from kukburi_checkout.html was NOT
 * ported — there's no matching markup for it anywhere in the actual pages.
 * It's leftover CSS (and a matching leftover JS handler) from before the
 * cash/card selector was deliberately removed for Site A (HANDOFF.md
 * Section 7) — don't reintroduce it.
 */

.section-head-tight{ margin-bottom: 36px; }

.summary-row{ display: flex; justify-content: space-between; padding: 10px 0; font-size: .92rem; }
.summary-row.total{ border-top: 1px solid var(--line); margin-top: 10px; padding-top: 18px; font-weight: 700; font-size: 1.1rem; }

.mini-line{ display: flex; justify-content: space-between; font-size: .86rem; padding: 8px 0; border-bottom: 1px solid var(--line); }
.mini-line .qty{ opacity: .55; }

.placeholder-note{
	background: rgba(116,93,74,0.12); border: 1px solid var(--brown); border-radius: 4px;
	padding: 12px 16px; font-size: .8rem; color: var(--brown); margin-bottom: 16px; line-height: 1.5;
}

/* Empty/no-order states — same visual treatment, different wrapper class per
   page (.empty-cart on Cart, .empty-notice on Checkout, .no-order on
   Confirmation) matching each prototype's own naming. */
.empty-cart, .empty-notice, .no-order{ text-align: center; padding: 80px 20px; }
@media (max-width: 780px){
	.empty-cart, .empty-notice, .no-order{ padding: 30px 20px; }
}
.empty-cart .emoji{ font-size: 3rem; margin-bottom: 20px; opacity: .5; }
