/* ============================================================
   Four Café Catering Builder — catering.css
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
    --fc-green:    #4a7c59;
    --fc-green-dk: #3a6347;
    --fc-cream:    #f9f5f0;
    --fc-dark:     #2c2c2c;
    --fc-gold:     #e8c96a;
    --fc-gold-lt:  #f5e4a8;
    --fc-border:   #e2dbd2;
    --fc-white:    #ffffff;
    --fc-muted:    #666;
    --fc-radius:   8px;
    --fc-shadow:   0 2px 10px rgba(0,0,0,.08);

    --fc-spring: #7cb87c;
    --fc-summer: #e8b84b;
    --fc-fall:   #d4763b;
    --fc-winter: #6b9dba;
}

/* ── App wrapper ─────────────────────────────────────────── */
.fc-catering-app {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--fc-dark);
    background: var(--fc-cream);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 48px;
}

.fc-catering-app *,
.fc-catering-app *::before,
.fc-catering-app *::after {
    box-sizing: border-box;
}

/* ── Main tab switcher ───────────────────────────────────── */
.fc-main-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 3px solid var(--fc-border);
    padding-top: 24px;
}

.fc-main-tab {
    background: none;
    border: none;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-muted);
    padding: 12px 24px;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color .2s, border-color .2s;
    border-radius: var(--fc-radius) var(--fc-radius) 0 0;
}

.fc-main-tab:hover {
    color: var(--fc-green);
}

.fc-main-tab.active {
    color: var(--fc-green);
    border-bottom-color: var(--fc-green);
    background: rgba(74,124,89,.06);
}

/* ── Layout: menu + cart ─────────────────────────────────── */
.fc-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 860px) {
    .fc-layout {
        grid-template-columns: 1fr;
    }
    .fc-cart-sidebar {
        order: -1; /* show cart at top on mobile */
    }
}

/* ── Tab panels ──────────────────────────────────────────── */
.fc-tab-panel {
    display: none;
}
.fc-tab-panel.active {
    display: block;
}

/* ── Category sub-tabs ───────────────────────────────────── */
.fc-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.fc-cat-tab {
    background: var(--fc-white);
    border: 2px solid var(--fc-border);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-muted);
    padding: 6px 18px;
    transition: all .2s;
}

.fc-cat-tab:hover {
    border-color: var(--fc-green);
    color: var(--fc-green);
}

.fc-cat-tab.active {
    background: var(--fc-green);
    border-color: var(--fc-green);
    color: var(--fc-white);
}

/* ── Category panels ─────────────────────────────────────── */
.fc-cat-panel {
    display: none;
}
.fc-cat-panel.active {
    display: block;
}

.fc-size-note {
    font-size: 13px;
    color: var(--fc-muted);
    background: var(--fc-white);
    border-left: 3px solid var(--fc-gold);
    padding: 8px 12px;
    margin-bottom: 16px;
    border-radius: 0 var(--fc-radius) var(--fc-radius) 0;
}

/* ── Item card grid ──────────────────────────────────────── */
.fc-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* ── Single item card ────────────────────────────────────── */
.fc-item-card {
    background: var(--fc-white);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    padding: 16px;
    box-shadow: var(--fc-shadow);
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc-item-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

.fc-item-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-item-name {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--fc-dark);
    margin: 0;
    line-height: 1.3;
}

.fc-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.fc-item-desc {
    font-size: 13px;
    color: var(--fc-muted);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

/* ── Seasonal badges ─────────────────────────────────────── */
.fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    color: var(--fc-white);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.fc-badge--spring { background: var(--fc-spring); }
.fc-badge--summer { background: var(--fc-summer); }
.fc-badge--fall   { background: var(--fc-fall);   }
.fc-badge--winter { background: var(--fc-winter); }

/* ── Dietary tags ────────────────────────────────────────── */
.fc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.fc-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--fc-green);
    border: 1px solid var(--fc-green);
    border-radius: 10px;
    padding: 1px 7px;
}

/* ── Item notice (72hr etc.) ─────────────────────────────── */
.fc-notice {
    font-size: 11px;
    color: #b55c00;
    background: #fff3e0;
    border-radius: 10px;
    padding: 2px 8px;
    border: 1px solid #f5c07a;
}

/* ── Size selector ───────────────────────────────────────── */
.fc-sizes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-size-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 10px;
    border: 1px solid var(--fc-border);
    border-radius: 6px;
    transition: background .15s, border-color .15s;
    font-size: 13px;
}

.fc-size-row label:hover {
    background: var(--fc-cream);
    border-color: var(--fc-green);
}

.fc-size-row input[type="radio"] {
    accent-color: var(--fc-green);
    flex-shrink: 0;
}

.fc-size-row input[type="radio"]:checked + .fc-size-name {
    color: var(--fc-green);
    font-weight: 600;
}

.fc-size-name {
    font-weight: 600;
    flex-shrink: 0;
}

.fc-size-detail {
    color: var(--fc-muted);
    flex: 1;
    font-size: 12px;
}

.fc-size-price {
    font-weight: 700;
    color: var(--fc-green);
    margin-left: auto;
    flex-shrink: 0;
}

/* ── Qty controls ────────────────────────────────────────── */
.fc-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.fc-qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--fc-border);
    border-radius: 50%;
    background: var(--fc-white);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-dark);
    transition: all .15s;
    flex-shrink: 0;
    padding: 0;
}

.fc-qty-btn:hover {
    border-color: var(--fc-green);
    color: var(--fc-green);
    background: rgba(74,124,89,.06);
}

.fc-qty-display {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.fc-add-btn {
    margin-left: auto;
    background: var(--fc-green);
    color: var(--fc-white);
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.fc-add-btn:hover {
    background: var(--fc-green-dk);
    transform: scale(1.03);
}

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

/* ── Per-person (Tab 2) ──────────────────────────────────── */
.fc-pp-intro {
    background: var(--fc-white);
    border-left: 3px solid var(--fc-gold);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--fc-muted);
    border-radius: 0 var(--fc-radius) var(--fc-radius) 0;
    margin-bottom: 20px;
}

.fc-pp-section {
    margin-bottom: 28px;
}

.fc-pp-section-title {
    font-family: Georgia, serif;
    font-size: 18px;
    color: var(--fc-green);
    border-bottom: 2px solid var(--fc-gold-lt);
    padding-bottom: 8px;
    margin: 0 0 12px;
}

.fc-pp-row {
    background: var(--fc-white);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: var(--fc-shadow);
    transition: box-shadow .2s;
}

.fc-pp-row:hover {
    box-shadow: 0 3px 14px rgba(0,0,0,.1);
}

.fc-pp-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.fc-pp-name {
    font-weight: 700;
    font-size: 14px;
}

.fc-pp-desc {
    font-size: 12px;
    color: var(--fc-muted);
    display: block;
    line-height: 1.4;
}

.fc-pp-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.fc-pp-price {
    font-weight: 700;
    color: var(--fc-green);
    font-size: 14px;
    min-width: 44px;
    text-align: right;
}

/* ── Cart sidebar ────────────────────────────────────────── */
.fc-cart-sidebar {
    position: sticky;
    top: 24px;
}

.fc-cart-inner {
    background: var(--fc-white);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow);
    overflow: hidden;
}

.fc-cart-title {
    font-family: Georgia, serif;
    font-size: 18px;
    color: var(--fc-white);
    background: var(--fc-green);
    margin: 0;
    padding: 14px 18px;
}

.fc-cart-items {
    min-height: 100px;
    max-height: 360px;
    overflow-y: auto;
    padding: 12px 14px;
}

.fc-cart-empty {
    color: var(--fc-muted);
    font-size: 13px;
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

/* Individual cart line ──────── */
.fc-cart-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--fc-border);
    font-size: 13px;
}

.fc-cart-line:last-child {
    border-bottom: none;
}

.fc-cart-line-info {
    flex: 1;
    min-width: 0;
}

.fc-cart-line-name {
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-cart-line-sub {
    color: var(--fc-muted);
    font-size: 12px;
    display: block;
}

.fc-cart-line-price {
    font-weight: 700;
    color: var(--fc-green);
    flex-shrink: 0;
    margin-top: 1px;
}

.fc-cart-line-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #c0392b;
    font-size: 16px;
    line-height: 1;
    padding: 0 2px;
    flex-shrink: 0;
    opacity: .6;
    transition: opacity .15s;
}

.fc-cart-line-remove:hover {
    opacity: 1;
}

/* Cart total ───────────────── */
.fc-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--fc-cream);
    border-top: 2px solid var(--fc-gold-lt);
    font-size: 14px;
    font-weight: 600;
}

.fc-cart-total strong {
    font-size: 18px;
    color: var(--fc-green);
}

/* Checkout button ──────────── */
.fc-checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--fc-green);
    color: var(--fc-white);
    border: none;
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    letter-spacing: .4px;
}

.fc-checkout-btn:hover:not(:disabled) {
    background: var(--fc-green-dk);
}

.fc-checkout-btn:disabled {
    background: var(--fc-border);
    color: var(--fc-muted);
    cursor: not-allowed;
}

/* ── Checkout form ───────────────────────────────────────── */
.fc-checkout-section {
    background: var(--fc-white);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    padding: 28px 32px;
    margin-top: 28px;
    box-shadow: var(--fc-shadow);
}

.fc-checkout-title {
    font-family: Georgia, serif;
    font-size: 22px;
    color: var(--fc-green);
    margin: 0 0 20px;
    border-bottom: 2px solid var(--fc-gold-lt);
    padding-bottom: 10px;
}

/* Form grid ────────────────── */
.fc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .fc-form-grid {
        grid-template-columns: 1fr;
    }
}

.fc-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fc-field--full {
    grid-column: 1 / -1;
}

.fc-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fc-dark);
}

.fc-required {
    color: #c0392b;
}

.fc-field input,
.fc-field select,
.fc-field textarea {
    border: 1px solid var(--fc-border);
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 14px;
    font-family: system-ui, sans-serif;
    color: var(--fc-dark);
    background: var(--fc-white);
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}

.fc-field input:focus,
.fc-field select:focus,
.fc-field textarea:focus {
    outline: none;
    border-color: var(--fc-green);
    box-shadow: 0 0 0 3px rgba(74,124,89,.15);
}

.fc-field input.fc-invalid,
.fc-field select.fc-invalid,
.fc-field textarea.fc-invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}

.fc-date-notice {
    font-size: 13px;
    color: #b55c00;
    background: #fff3e0;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 0 0 6px;
    border: 1px solid #f5c07a;
}

/* Form messages ────────────── */
.fc-form-messages {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

.fc-form-messages.fc-msg-error {
    background: #fde8e6;
    color: #922b21;
    border: 1px solid #f5b7b1;
    display: block;
}

.fc-form-messages.fc-msg-success {
    background: #eafaf1;
    color: #1e8449;
    border: 1px solid #a9dfbf;
    display: block;
}

/* Order review inside form ─── */
.fc-order-review {
    background: var(--fc-cream);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    padding: 16px 20px;
    margin: 20px 0;
}

.fc-order-review h3 {
    font-family: Georgia, serif;
    font-size: 15px;
    color: var(--fc-green);
    margin: 0 0 12px;
}

.fc-form-order-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid var(--fc-border);
}

.fc-form-order-line:last-child {
    border-bottom: none;
}

.fc-form-order-line-name {
    flex: 1;
    color: var(--fc-dark);
}

.fc-form-order-line-sub {
    color: var(--fc-muted);
    font-size: 12px;
    margin-left: 4px;
}

.fc-form-order-line-price {
    font-weight: 700;
    color: var(--fc-green);
    margin-left: 12px;
    flex-shrink: 0;
}

.fc-form-total {
    margin-top: 10px;
    font-weight: 700;
    font-size: 15px;
    text-align: right;
    color: var(--fc-dark);
}

.fc-form-disclaimer {
    font-size: 11px;
    color: var(--fc-muted);
    margin: 6px 0 0;
}

/* Submit button ────────────── */
.fc-submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--fc-green);
    color: var(--fc-white);
    border: none;
    border-radius: var(--fc-radius);
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: background .2s, transform .1s;
}

.fc-submit-btn:hover {
    background: var(--fc-green-dk);
}

.fc-submit-btn:active {
    transform: scale(.98);
}

.fc-submit-btn:disabled {
    background: var(--fc-border);
    color: var(--fc-muted);
    cursor: not-allowed;
}

/* Loading state */
.fc-submit-btn.fc-loading::after {
    content: ' ⏳';
}

/* ── Success message ─────────────────────────────────────── */
.fc-success-message {
    background: var(--fc-white);
    border: 2px solid var(--fc-green);
    border-radius: var(--fc-radius);
    margin-top: 32px;
    text-align: center;
    padding: 48px 32px;
    box-shadow: var(--fc-shadow);
}

.fc-success-icon {
    width: 64px;
    height: 64px;
    background: var(--fc-green);
    color: var(--fc-white);
    border-radius: 50%;
    font-size: 32px;
    line-height: 64px;
    margin: 0 auto 16px;
}

.fc-success-message h2 {
    font-family: Georgia, serif;
    color: var(--fc-green);
    font-size: 28px;
    margin: 0 0 12px;
}

.fc-success-message p {
    color: var(--fc-muted);
    font-size: 15px;
    margin: 0 0 8px;
}

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 520px) {
    .fc-main-tab {
        font-size: 13px;
        padding: 10px 14px;
    }

    .fc-checkout-section {
        padding: 18px 16px;
    }

    .fc-items-grid {
        grid-template-columns: 1fr;
    }

    .fc-pp-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .fc-pp-controls {
        align-self: flex-end;
    }
}

/* ── Catering Hero (matches reference tst-small-banner style) ───────── */
.catering-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catering-hero-img {
    position: absolute;
    inset: 0;
    background-image: url('../images/catering-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.catering-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 15, 0.72);
    z-index: 1;
}

.catering-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 60px 24px 50px;
    max-width: 760px;
    margin: 0 auto;
}

.catering-suptitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

.catering-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.catering-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0 0 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.catering-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.catering-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.catering-breadcrumb a:hover {
    color: #90b93e;
}

.catering-breadcrumb .sep {
    color: rgba(255,255,255,0.4);
}

/* ── App font override to match reference ───────────────────────────── */
.fc-catering-app {
    font-family: 'Josefin Sans', system-ui, sans-serif;
    background: var(--fc-cream);
    padding-top: 32px;
}

.fc-main-tab {
    font-family: 'Josefin Sans', Georgia, serif;
}

.fc-item-name,
.fc-cart-title,
.fc-checkout-title,
.fc-pp-section-title {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ── Hero refinements ────────────────────────────────────────────────── */
.catering-hero {
    min-height: 520px;
}

/* ── Arch divider between hero and app ──────────────────────────────── */
.catering-arch {
    background: linear-gradient(180deg, #0a140f 0%, #0a140f 50%, var(--fc-cream) 50%);
    position: relative;
    line-height: 0;
    z-index: 2;
}

.catering-arch svg {
    width: 100%;
    height: 80px;
    display: block;
}

.catering-arch-dot {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--fc-cream);
    border: 2px solid var(--fc-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--fc-green);
    z-index: 4;
}

/* Breadcrumb as two separate pill buttons matching reference */
.catering-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
}

.catering-breadcrumb li {
    display: flex;
    align-items: center;
}

.catering-breadcrumb li a {
    background: rgba(255,255,255,0.15);
    border: none;
    color: rgba(255,255,255,0.85);
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.catering-breadcrumb li:last-child {
    background: #90b93e;
    border: none;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
}

.catering-breadcrumb li a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.catering-breadcrumb .sep {
    background: none;
    border: none;
    padding: 0 6px;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* ── Card/grid spacing — match reference density ─────────────────────── */
.fc-items-grid {
    gap: 16px;
}

.fc-item-card {
    padding: 16px;
    gap: 10px;
}

.fc-item-name {
    font-size: 14.5px;
    font-weight: 700;
}

.fc-item-desc {
    font-size: 13px;
    line-height: 1.5;
}

.fc-size-price {
    font-weight: 800;
}

.fc-add-btn {
    padding: 7px 16px;
    font-size: 13px;
}

/* ── Main tab sizing ─────────────────────────────────────────────────── */
.fc-main-tabs {
    padding-top: 32px;
    margin-bottom: 28px;
}

.fc-main-tab {
    font-size: 17px;
    padding: 14px 28px;
    font-weight: 700;
}

/* ── Category sub-tabs ───────────────────────────────────────────────── */
.fc-cat-tabs {
    gap: 8px;
    margin-bottom: 24px;
}

.fc-cat-tab {
    padding: 7px 22px;
    font-size: 14.5px;
    border-radius: 24px;
}

/* ── App padding ─────────────────────────────────────────────────────── */
.fc-catering-app {
    padding-top: 20px;
    padding-bottom: 64px;
}

/* ── Size note indent ────────────────────────────────────────────────── */
.fc-size-note {
    margin-bottom: 20px;
    font-size: 13.5px;
}

/* ── Cart sidebar ────────────────────────────────────────────────────── */
.fc-cart-title {
    padding: 16px 20px;
    font-size: 20px;
}

.fc-cart-total {
    font-size: 15px;
}

/* ── Tighten size rows and qty row to match reference density ─────── */
.fc-size-row label {
    padding: 5px 8px;
    font-size: 12.5px;
}

.fc-size-name {
    font-size: 12.5px;
}

.fc-size-detail {
    font-size: 11px;
}

.fc-size-price {
    font-size: 13px;
}

.fc-qty-btn {
    width: 26px;
    height: 26px;
    font-size: 16px;
}

.fc-qty-display {
    font-size: 14px;
}

/* ── Arch dot smaller ────────────────────────────────────────────── */
.catering-arch-dot {
    width: 32px;
    height: 32px;
    font-size: 9px;
}
