/* ===== ORDER FOOTER ===== */
.order-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #FEF0E5;
    padding: 12px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.07);
    z-index: 1000;
    gap: 16px;
}

/* ── Back Button (secondary / neutral) ── */
.order-back-btn {
    background: #F3F4F6;
    color: #374151;
    border: none;
    padding: 12px 0;
    width: 140px;
    border-radius: 40px;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
}

.order-back-btn:hover {
    background: #E5E7EB;
    color: #374151;
    text-decoration: none;
}

/* ── Center Progress Section ── */
.order-progress-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.order-progress {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 18px;
    color: #1F2937;
    letter-spacing: -0.01em;
}

/* Progress Bar — orange accent (small, tasteful) */
.progress-bar {
    width: 200px;
    height: 5px;
    background: #F3F4F6;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #FB6E36;
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Clear All pill */
.clear-cart {
    cursor: pointer;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #dc2626;
    background: #FEF2F2;
    padding: 3px 11px;
    border-radius: 20px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.clear-cart:hover {
    background: #FEE2E2;
    color: #991B1B;
}

.clear-x {
    font-size: 12px;
    line-height: 1;
}

/* ── Right: Price + Continue ── */
.order-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.order-price {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 34px;
    font-weight: 400;
    color: #1F2937;
    letter-spacing: -0.02em;
}

/* Continue button — dark, authoritative */
.order-continue-btn {
    background: #1F2937;
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 140px;
    border-radius: 40px;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.order-continue-btn:hover {
    background: #374151;
    color: #fff;
    text-decoration: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .order-footer {
        padding: 16px 20px 60px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .order-progress-section {
        width: 100%;
        align-items: flex-start;
        order: -1;
    }

    .order-progress {
        font-size: 20px;
    }

    .progress-bar {
        width: 100%;
    }

    .order-right {
        position: absolute;
        top: 18px;
        right: 20px;
    }

    .order-price {
        font-size: 28px;
    }

    .order-back-btn,
    .order-continue-btn {
        position: fixed;
        bottom: 14px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        padding: 0;
        font-size: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .order-back-btn {
        left: 20px;
    }

    .order-continue-btn {
        right: 20px;
    }

    .order-back-btn::after {
        content: '‹';
        font-size: 26px;
        font-weight: bold;
        color: #374151;
        display: block;
        margin-bottom: 3px;
    }

    .order-continue-btn::after {
        content: '›';
        font-size: 26px;
        font-weight: bold;
        color: #fff;
        display: block;
        margin-bottom: 3px;
    }

    .clear-cart {
        position: absolute;
        top: -18px;
        left: 20px;
        z-index: 101;
    }
}
