.velari-ost-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 40px 80px;
}

.velari-ost-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 32px;
}

.velari-ost-form-wrap--collapsed {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.velari-ost-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.velari-ost-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.velari-ost-field label {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.velari-ost-field input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #111;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.velari-ost-field input:focus {
    border-color: #111;
    background: #fff;
}

.velari-ost-submit {
    align-self: center;
    padding: 13px 48px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.velari-ost-submit:hover {
    background: #222 !important;
}

.velari-ost-error {
    margin-top: 16px;
    padding: 12px 18px;
    background: #fef2f2;
    color: #c62828;
    font-size: 16px;
    border-radius: 10px;
}

.velari-ost-result {
    animation: velari-ost-fadein 0.3s ease;
}

@keyframes velari-ost-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.velari-ost-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.velari-ost-ref {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
}

.velari-ost-date {
    font-size: 14px;
    color: #999;
}

.velari-ost-status {
    display: inline-block;
    padding: 6px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: capitalize;
    white-space: nowrap;
}

.velari-ost-status--completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.velari-ost-status--processing,
.velari-ost-status--shipped,
.velari-ost-status--partially-shipped {
    background: #e3f2fd;
    color: #1565c0;
}

.velari-ost-status--on-hold,
.velari-ost-status--pending {
    background: #fff8e1;
    color: #f57f17;
}

.velari-ost-status--cancelled,
.velari-ost-status--refunded,
.velari-ost-status--failed {
    background: #fce4ec;
    color: #c62828;
}

.velari-ost-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 40px;
    padding: 28px 0;
}

.velari-ost-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.velari-ost-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #bbb;
    transition: all 0.3s;
}

.velari-ost-step--completed .velari-ost-step-icon,
.velari-ost-step--active .velari-ost-step-icon {
    background: #111;
    color: #fff;
}

.velari-ost-step--active .velari-ost-step-icon {
    box-shadow: 0 0 0 4px rgba(17,17,17,0.12);
}

.velari-ost-step--exception .velari-ost-step-icon {
    background: #c62828;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(198,40,40,0.12);
}

.velari-ost-step-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #bbb;
    text-align: center;
    max-width: 90px;
}

.velari-ost-step--completed .velari-ost-step-label,
.velari-ost-step--active .velari-ost-step-label {
    color: #111;
}

.velari-ost-step--exception .velari-ost-step-label {
    color: #c62828;
}

.velari-ost-step-line {
    flex: 1;
    height: 2px;
    background: #e8e8e8;
    margin: 22px 12px 0;
    min-width: 40px;
}

.velari-ost-step-line--done {
    background: #111;
}

.velari-ost-step-line--exception {
    background: #c62828;
}

.velari-ost-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.velari-ost-card-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

.velari-ost-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.velari-ost-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.velari-ost-item-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    background: #f5f5f5;
    flex-shrink: 0;
}

.velari-ost-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.velari-ost-item-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.velari-ost-item-qty {
    font-size: 14px;
    color: #999;
}

.velari-ost-item-total {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    flex-shrink: 0;
}

.velari-ost-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #f5f5f5;
}

.velari-ost-summary-total {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid #eee;
    border-bottom: none;
}

.velari-ost-address {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.velari-ost-another {
    text-align: center;
    margin-top: 32px;
}

.velari-ost-another a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 600px) {
    .velari-ost-section {
        padding: 40px 20px 60px;
    }

    .velari-ost-fields {
        grid-template-columns: 1fr;
    }

    .velari-ost-header {
        flex-direction: column;
        gap: 12px;
    }

    .velari-ost-ref {
        font-size: 20px;
    }

    .velari-ost-progress {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 18px;
    }

    .velari-ost-step-icon {
        width: 36px;
        height: 36px;
    }

    .velari-ost-step-label {
        font-size: 12px;
        max-width: 70px;
    }

    .velari-ost-step-line {
        margin: 18px 6px 0;
        min-width: 34px;
    }

    .velari-ost-card {
        padding: 18px;
    }

    .velari-ost-submit {
        width: 100%;
    }
}
