.order-hero {
    padding: 4rem 0 2.5rem;
    margin-bottom: 2rem;
    background:
        radial-gradient(circle at top right, rgba(196, 68, 40, 0.12), transparent 34%),
        linear-gradient(135deg, #f7f4f1 0%, #eef2f4 100%);
}

.order-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 1.6rem;
    align-items: center;
}

.order-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.95rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(196, 68, 40, 0.12);
    color: #b44128;
    font-size: 0.9rem;
    font-weight: 700;
}

.order-hero-copy h1 {
    margin-bottom: 0.9rem;
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
}

.order-summary {
    margin-bottom: 1.1rem;
    color: #56626a;
    font-size: 1.08rem;
    line-height: 1.85;
}

.order-status-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.order-status-text {
    color: #60717a;
    font-weight: 600;
}

.order-hero-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.order-hero-highlights li {
    position: relative;
    padding-left: 1.3rem;
    color: #4f5c64;
    line-height: 1.8;
}

.order-hero-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background-color: #c44428;
}

.order-hero-visual-card {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 1.2rem;
    background-color: #fff;
    box-shadow: 0 14px 30px rgba(38, 50, 56, 0.08);
}

.order-hero-visual-card img {
    width: 100%;
    max-height: 18rem;
    object-fit: contain;
}

.order-hero-visual-copy {
    display: grid;
    gap: 0.25rem;
    text-align: center;
}

.order-hero-visual-copy strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.order-hero-visual-copy span {
    color: #64747d;
    line-height: 1.75;
}

.order-panel,
.order-summary-panel {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.order-panel + .order-panel {
    margin-top: 1.5rem;
}

.order-panel-head {
    margin-bottom: 1.1rem;
}

.order-panel-head h2 {
    margin-bottom: 0.35rem;
    color: var(--primary-color);
    font-size: 1.45rem;
    font-weight: 700;
}

.order-panel-head p {
    margin: 0;
    color: #62737b;
    line-height: 1.75;
}

.order-choice-grid {
    display: grid;
    gap: 0.95rem;
}

.order-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-choice-card {
    display: block;
    margin: 0;
    cursor: pointer;
}

.order-choice-card.is-featured .order-choice-body {
    border-color: rgba(196, 68, 40, 0.16);
    background:
        linear-gradient(135deg, rgba(196, 68, 40, 0.05), rgba(196, 68, 40, 0.015));
}

.order-choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.order-choice-body {
    display: grid;
    gap: 0.65rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(55, 71, 79, 0.14);
    border-radius: 0.9rem;
    background-color: #f7f9fa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.order-choice-card:hover .order-choice-body {
    transform: translateY(-0.1rem);
    border-color: rgba(196, 68, 40, 0.28);
}

.order-choice-input:checked + .order-choice-body {
    border-color: #c44428;
    background:
        linear-gradient(135deg, rgba(196, 68, 40, 0.13), rgba(196, 68, 40, 0.05));
    box-shadow:
        0 0 0 3px rgba(196, 68, 40, 0.12),
        0 12px 24px rgba(196, 68, 40, 0.16);
}

.order-choice-input:checked + .order-choice-body .order-choice-head strong,
.order-choice-input:checked + .order-choice-body .order-choice-price-tag strong,
.order-choice-input:checked + .order-choice-body .order-choice-meta span {
    color: #9f381f;
}

.order-choice-head,
.order-choice-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
}

.order-choice-head strong {
    color: var(--primary-color);
    font-size: 1.08rem;
}

.order-choice-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.order-choice-price-tag del {
    color: #96a3aa;
    font-size: 0.9rem;
    text-decoration-thickness: 1.5px;
}

.order-choice-price-tag strong {
    color: #b44128;
    font-size: 1rem;
    font-weight: 700;
}

.order-choice-description {
    color: #687882;
    line-height: 1.7;
}

.order-choice-card.is-featured .order-choice-head small {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    background-color: rgba(196, 68, 40, 0.14);
    color: #b44128;
    font-weight: 700;
}

.order-choice-input:checked + .order-choice-body .order-choice-head small {
    background-color: #b44128;
    color: #fff;
}

.order-choice-meta span {
    color: #4b5962;
    font-weight: 600;
}

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

.order-note-list {
    margin: 0;
    padding-left: 1.15rem;
}

.order-note-list li {
    margin-bottom: 0.8rem;
    color: #56626a;
    line-height: 1.8;
}

.order-note-list li:last-child {
    margin-bottom: 0;
}

.order-summary-panel {
    position: sticky;
    top: 5.8rem;
}

.order-summary-list {
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.15rem;
}

.order-summary-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(55, 71, 79, 0.08);
}

.order-summary-list div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.order-summary-list dt {
    margin: 0;
    color: #6b7a82;
    font-weight: 600;
}

.order-summary-list dd {
    margin: 0;
    color: var(--dark-color);
    font-weight: 700;
    text-align: right;
}

.order-summary-list .is-emphasis dd {
    color: #c44428;
    font-size: 1.55rem;
}

.order-summary-note {
    margin-bottom: 1.15rem;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background-color: rgba(55, 71, 79, 0.06);
}

.order-summary-note p {
    margin: 0;
    color: #5b6a72;
    line-height: 1.8;
}

.order-summary-actions {
    display: grid;
    gap: 0.85rem;
}

.order-pay-hint {
    margin: -0.1rem 0 0;
    color: #74838b;
    font-size: 0.93rem;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .order-hero-grid,
    .order-spec-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-panel {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .order-hero {
        padding: 3rem 0 2rem;
    }

    .order-hero-copy h1 {
        font-size: 2.05rem;
    }

    .order-summary {
        font-size: 1rem;
    }

    .order-panel,
    .order-summary-panel {
        padding: 1.2rem;
    }

    .order-choice-head,
    .order-choice-meta,
    .order-summary-list div {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-summary-list dd {
        text-align: left;
    }
}
