/* ── Root ── */
.postOrderHomeRoot {
    max-width: 720px;
    margin: 0 auto;
    padding: 12px 12px 88px;
}

/* ── Sections ── */
.postOrderSection {
    margin-top: 14px;
}

/* ── Hero card ── */
.postOrderHeroCard {
    padding: 14px;
}

.postOrderHeroTopRow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.postOrderHeroMeta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.postOrderHeroStatus {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #1B5E20;
    background: #E8F5E9;
    border-radius: 999px;
    padding: 4px 10px;
    width: auto;
    margin-bottom: 10px;
}

.postOrderHeroTitle {
    margin-bottom: 4px;
}

.postOrderHeroSubtitle {
    color: #667085;
}

.postOrderHeroAmount {
    text-align: right;
    white-space: nowrap;
    font-size: 13px;
    color: #475467;
    font-weight: 600;
}

.postOrderHeroActions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

/* ── Buttons / links ── */
.postOrderSecondaryButton {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #D0D5DD;
    background: #FFFFFF;
    color: #344054;
    font-weight: 600;
    text-decoration: none;
}

.postOrderInlineLink {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1B5E20;
    text-decoration: none;
}

/* ── Timeline ── */
.postOrderTimelineCard {
    padding: 14px;
}

.postOrderTimelineList {
    margin-top: 8px;
}

.postOrderTimelineItem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.postOrderTimelineDot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: #D0D5DD;
    margin-top: 5px;
}

.postOrderTimelineDotActive {
    background: #1B5E20;
}

.postOrderTimelineTextWrap {
    min-width: 0;
}

.postOrderTimelineTitle {
    color: #101828;
    font-weight: 600;
    font-size: 14px;
}

.postOrderTimelineSub {
    color: #667085;
    font-size: 12px;
    margin-top: 2px;
}

/* ── Section title ── */
.postOrderSectionTitle {
    margin-bottom: 8px;
}

/* ── Guide card ── */
.postOrderGuideCard {
    padding: 12px;
}

.postOrderGuideRow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
}

.postOrderGuideRow + .postOrderGuideRow {
    border-top: 1px solid #F2F4F7;
}

.postOrderGuideIconWrap {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #F2F4F7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postOrderGuideTextWrap {
    flex: 1;
    min-width: 0;
}

.postOrderGuideTitle {
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}

.postOrderGuideSub {
    font-size: 12px;
    color: #667085;
    margin-top: 2px;
}

/* ── Delivery details ── */
.postOrderDetailsCard {
    padding: 14px;
}

.postOrderDetailRow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
}

.postOrderDetailIcon {
    color: #667085;
}

.postOrderDetailText {
    color: #344054;
}

/* ── Chips ── */
.postOrderChipsWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.postOrderChipLink {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #D0D5DD;
    background: #FFFFFF;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* ── Subtle card ── */
.postOrderSubtleCard {
    padding: 14px;
}

.postOrderMutedText {
    color: #667085;
}

/* ── Responsive ── */
@media only screen and (max-width: 600px) {
    .postOrderHomeRoot {
        padding: 10px 10px 84px;
    }

    .postOrderHeroTopRow {
        flex-direction: column;
        align-items: flex-start;
    }

    .postOrderHeroAmount {
        text-align: left;
    }

    .postOrderHeroActions {
        flex-direction: column;
        gap: 8px;
    }

    .postOrderSecondaryButton {
        width: 100%;
    }
}

.postOrderTimelineDot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: #D0D5DD;
    margin-top: 5px;
    transition: background 0.3s ease;
}

.postOrderTimelineDotActive {
    background: #1B5E20;
}