/* Navid orders — Figma 183:10830 (list + cancel) / 3:4617 (details modal) */

.navid-orders-page {
    width: 100%;
    max-width: var(--navid-profile-content-w, 900px);
    font-family: var(--navid-font);
}

.navid-orders-page__title {
    margin: 0 0 48px;
    min-height: var(--navid-profile-item-h, 56px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--navid-secondary);
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-orders-page__alert {
    margin: 0 0 24px;
    padding: 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.navid-orders-page__alert--success {
    background: rgba(0, 146, 148, 0.1);
    color: var(--navid-green);
}

.navid-orders-page__alert--error {
    background: rgba(245, 72, 72, 0.1);
    color: var(--navid-error);
}

.navid-orders-page__toolbar {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 48px;
    direction: rtl;
}

.navid-orders-page__search {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    flex: 1 1 auto;
    max-width: 289px;
    min-height: 56px;
    padding: 13px 16px 14px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    box-sizing: border-box;
}

.navid-orders-page__search-icon {
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--navid-gray);
}

.navid-orders-page__search-input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 12px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--navid-gray);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    direction: rtl;
}

.navid-orders-page__search-input::placeholder {
    color: var(--navid-gray-2);
    opacity: 1;
}

.navid-orders-page__filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    direction: ltr;
}

.navid-orders-page__filter-select {
    position: relative;
    width: 289px;
    max-width: 289px;
    flex-shrink: 0;
}

.navid-orders-page__filter-select .navid-field {
    margin: 0;
}

.navid-orders-page__filter-select .navid-field__box {
    min-height: 56px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
}

.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select
    .navid-select__trigger {
    height: 56px;
    min-height: 56px;
    padding: 12px 16px;
    gap: 24px;
}

.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select
    .navid-select__value {
    color: var(--navid-gray-2);
    font-size: 15px;
    font-weight: 400;
}

.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select.navid-field--active
    .navid-select__value,
.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select.navid-field--focus
    .navid-select__value,
.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select:has(.navid-select.is-open)
    .navid-select__value {
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 500;
}

.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select
    .navid-field__label {
    color: var(--navid-gray-2);
    font-size: 15px;
    font-weight: 400;
}

.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select.navid-field--active
    .navid-field__label,
.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select.navid-field--focus
    .navid-field__label {
    display: none;
}

.navid-orders-page__filter-select
    .navid-orders-page__filter-field.navid-field--select
    .navid-select__caret {
    position: static;
    margin-top: 0;
}

.navid-orders-page__filter-label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 48px;
    padding: 12px 0;
    color: var(--navid-gray);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    user-select: none;
}

.navid-orders-page__filter-label-text {
    display: block;
}

.navid-orders-page__filter-label-icon {
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--navid-gray);
}

.navid-orders-page__filter-label-icon path {
    stroke: currentColor;
}

.navid-orders-page__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.navid-orders-page__filter-empty {
    margin: 0;
    padding: 24px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    direction: rtl;
}

.navid-orders-page__filter-empty[hidden] {
    display: none !important;
}

.navid-order-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    direction: rtl;
}

.navid-order-card.is-hidden {
    display: none;
}

.navid-order-card__desktop {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.navid-order-card__mobile {
    display: none;
}

.navid-order-summary-rows {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
}

.navid-order-summary-rows__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 32px;
}

.navid-order-summary-rows__label {
    flex-shrink: 0;
    color: var(--navid-gray-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    white-space: nowrap;
}

.navid-order-summary-rows__value {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--navid-gray);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    white-space: nowrap;
}

.navid-order-summary-rows__status {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--navid-blue);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.navid-order-summary-rows__status--info {
    color: var(--navid-blue);
}

.navid-order-summary-rows__status--warning {
    color: var(--navid-yellow);
}

.navid-order-summary-rows__status--success {
    color: var(--navid-green);
}

.navid-order-summary-rows__status--muted {
    color: var(--navid-gray);
}

.navid-order-summary-rows__status-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.navid-order-summary-rows__status-icon path {
    stroke: currentColor;
}

.navid-order-summary-rows__status-icon circle {
    fill: currentColor;
}

.navid-order-card__status--success {
    color: var(--navid-green);
}

.navid-order-card__top {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--navid-tertiary);
}

.navid-order-card__actions {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.navid-order-card__details-btn {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 197px;
    height: 56px;
    padding: 9px 16px;
    border: 2px solid var(--navid-primary);
    border-radius: 4px;
    background: var(--navid-white);
    color: var(--navid-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.navid-order-card__details-btn:hover {
    background: rgba(243, 112, 58, 0.08);
}

.navid-order-card__details-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.navid-order-card__details-icon path {
    stroke: currentColor;
}

.navid-order-card__cancel {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--navid-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}

.navid-order-card__cancel:hover {
    opacity: 0.85;
}

.navid-order-card__cancel-icon {
    display: block;
    width: 20px;
    height: 20px;
}

.navid-order-card__cancel-icon path {
    stroke: currentColor;
}

.navid-order-card__meta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.navid-order-card__meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.navid-order-card__meta-label {
    color: var(--navid-gray-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
}

.navid-order-card__meta-value {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-card__status {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 32px;
    color: var(--navid-blue);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.navid-order-card__status--info {
    color: var(--navid-blue);
}

.navid-order-card__status--warning {
    color: var(--navid-yellow);
}

.navid-order-card__status--muted {
    color: var(--navid-gray);
}

.navid-order-card__status-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.navid-order-card__status-icon path {
    stroke: currentColor;
}

.navid-order-card__status-icon circle {
    fill: currentColor;
}

.navid-order-card__stats {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    direction: ltr;
}

.navid-order-card__stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
    min-height: 32px;
}

.navid-order-card__stat--start {
    justify-content: flex-start;
}

.navid-order-card__stat--center {
    justify-content: center;
}

.navid-order-card__stat--end {
    justify-content: flex-end;
}

.navid-order-card__stat-label {
    color: var(--navid-gray-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    white-space: nowrap;
    direction: rtl;
}

.navid-order-card__stat-value {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
    white-space: nowrap;
    direction: rtl;
}

.navid-orders-page__empty {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    padding: 24px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    direction: rtl;
}

.navid-orders-page__empty-text {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
}

.navid-orders-page__empty-link {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--navid-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    white-space: nowrap;
}

.navid-orders-page__empty-link:hover {
    color: var(--navid-primary-hover);
}

.navid-orders-page__empty-link-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.navid-orders-page__empty-link-icon path {
    stroke: currentColor;
}

.navid-orders-page__pagination {
    margin-top: 40px;
}

/* Details modal — Figma 3:4617 / 3:5879 */
.navid-order-details-modal .navid-modal__dialog {
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-width: 1032px;
    width: 100%;
    max-height: calc(100vh - 48px);
    padding: 64px 124px;
    overflow-x: hidden;
    overflow-y: auto;
}

.navid-order-details-modal__close {
    position: absolute;
    top: 23px;
    left: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: var(--navid-tertiary);
    color: var(--navid-gray);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.navid-order-details-modal__close:hover {
    opacity: 1;
}

.navid-order-details-modal__close-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.navid-order-details-modal__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--navid-tertiary);
    direction: ltr;
}

.navid-order-details-modal__invoice-btn {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 167px;
    height: 56px;
    padding: 9px 16px;
    border: 2px solid var(--navid-primary);
    border-radius: 4px;
    background: var(--navid-white);
    color: var(--navid-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    cursor: pointer;
}

.navid-order-details-modal__invoice-icon {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.navid-order-details-modal__invoice-icon path {
    stroke: currentColor;
}

.navid-order-details-modal__invoice-btn:hover {
    background: rgba(243, 112, 58, 0.08);
    color: var(--navid-primary);
}

.navid-order-details-modal__meta {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 56px;
    flex-wrap: wrap;
    justify-content: flex-start;
    direction: rtl;
}

.navid-order-details-modal__meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.navid-order-details-modal__meta-label {
    color: var(--navid-gray-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.navid-order-details-modal__meta-value {
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.navid-order-details-modal__status {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 32px;
    color: var(--navid-blue);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.navid-order-details-modal__status--info {
    color: var(--navid-blue);
}

.navid-order-details-modal__status--warning {
    color: var(--navid-yellow);
}

.navid-order-details-modal__status--success {
    color: var(--navid-green);
}

.navid-order-details-modal__status--muted {
    color: var(--navid-gray);
}

.navid-order-details-modal__status-icon,
.navid-order-details-modal__status-icon-slot .navid-order-details-modal__status-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.navid-order-details-modal__status-icon path,
.navid-order-details-modal__status-icon-slot .navid-order-details-modal__status-icon path {
    stroke: currentColor;
}

.navid-order-details-modal__status-icon circle,
.navid-order-details-modal__status-icon-slot .navid-order-details-modal__status-icon circle {
    fill: currentColor;
}

.navid-order-details-modal__status-icon-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.navid-order-details-modal__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    direction: rtl;
}

.navid-order-details-modal__section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 0;
}

.navid-order-details-modal__section:first-child {
    padding-top: 40px;
}

.navid-order-details-modal__title {
    margin: 0;
    color: var(--navid-secondary);
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-details-modal__invoice {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
}

.navid-order-details-modal__items {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.navid-order-details-modal__item {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    gap: 16px 32px;
    align-items: start;
    min-height: 56px;
    padding: 13px 16px;
    box-sizing: border-box;
    direction: rtl;
}

.navid-order-details-modal__item + .navid-order-details-modal__item {
    border-top: 1px solid var(--navid-tertiary);
}

.navid-order-details-modal__item-primary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
}

.navid-order-details-modal__item-secondary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    min-width: 0;
}

.navid-order-details-modal__pair {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.navid-order-details-modal__item .navid-order-details-modal__pair {
    flex-direction: row-reverse;
}

.navid-order-details-modal__item-primary .navid-order-details-modal__pair {
    width: 100%;
}

.navid-order-details-modal__item-secondary .navid-order-details-modal__pair {
    width: 100%;
}

.navid-order-details-modal__pair--grow {
    min-width: 0;
}

.navid-order-details-modal__pair--product {
    width: 100%;
}

.navid-order-details-modal__pair--weight {
    width: 100%;
}

.navid-order-details-modal__pair--product
    .navid-order-details-modal__pair-value {
    min-width: 0;
    flex: 1 1 auto;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: normal;
}

.navid-order-details-modal__pair--weight .navid-order-details-modal__pair-value,
.navid-order-details-modal__pair--variant
    .navid-order-details-modal__pair-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navid-order-details-modal__pair--price .navid-order-details-modal__pair-value {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.navid-order-details-modal__pair-label,
.navid-order-details-modal__item-label,
.navid-order-details-modal__summary-label {
    color: var(--navid-gray-2);
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    flex-shrink: 0;
}

.navid-order-details-modal__pair-value,
.navid-order-details-modal__item-value,
.navid-order-details-modal__summary-value {
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
    word-break: break-word;
}

.navid-order-details-modal__summary {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 16px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    box-sizing: border-box;
    direction: rtl;
}

.navid-order-details-modal__summary-item {
    display: flex;
    flex: 1 1 0;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    min-height: 40px;
}

.navid-order-details-modal__panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    box-sizing: border-box;
}

.navid-order-details-modal__panel--stack {
    gap: 8px;
}

.navid-order-details-modal__panel .navid-order-details-modal__pair {
    flex: 1 1 0;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    min-height: 40px;
}

.navid-order-details-modal__panel .navid-order-details-modal__pair-value {
    white-space: nowrap;
}

.navid-order-details-modal__panel
    .navid-order-details-modal__pair--address-full
    .navid-order-details-modal__pair-value {
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: right;
}

.navid-order-details-modal__info-row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
    width: 100%;
}

.navid-order-details-modal__info-row--single {
    justify-content: flex-end;
}

.navid-order-details-modal__info-row--single .navid-order-details-modal__pair {
    flex: 1 1 auto;
    width: 100%;
    justify-content: flex-end;
}

.navid-order-details-modal__info-row--single
    .navid-order-details-modal__pair-value {
    white-space: normal;
    text-align: right;
}

.navid-order-details-modal__info-row--address {
    align-items: center;
}

.navid-order-details-modal__pair-group {
    display: flex;
    flex: 0 0 33.333%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    max-width: 33.333%;
}

.navid-order-details-modal__pair-group .navid-order-details-modal__pair {
    flex: 1 1 0;
    min-width: 0;
}

.navid-order-details-modal__pair--address-full {
    flex: 1 1 0;
    min-width: 0;
}

.navid-order-details-modal__loading {
    margin: 0;
    padding: 32px 0;
    color: var(--navid-gray-2);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

/* Order show page — invoice layout matches details modal */
.navid-order-show {
    width: 100%;
    max-width: 1032px;
    font-family: var(--navid-font);
}

.navid-order-invoice {
    width: 100%;
    padding: 40px 32px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    box-sizing: border-box;
}

.navid-order-show__alerts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.navid-order-show__alert-action {
    margin: 12px 0 0;
}

.navid-order-show__extras {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.navid-order-show__extras-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 16px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    box-sizing: border-box;
}

.navid-order-show__extras-title {
    margin: 0;
    color: var(--navid-secondary);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-show__product-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.navid-order-show__product-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--navid-tertiary);
    direction: rtl;
}

.navid-order-show__product-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.navid-order-show__product-row-info {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.navid-order-show__product-row-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
}

.navid-order-show__product-row-title {
    color: var(--navid-gray);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
    word-break: break-word;
}

.navid-order-show__product-row-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media print {
    body.navid-profile-page-active .navid-profile-layout__sidebar,
    body.navid-profile-page-active .navid-profile-mobile-header,
    body.navid-profile-page-active .main-header,
    body.navid-profile-page-active .main-footer,
    body.navid-profile-page-active .no-print {
        display: none !important;
    }

    body.navid-profile-page-active .navid-profile-layout__content {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    body.navid-profile-page-active .navid-profile-layout__row {
        display: block;
    }

    body.navid-profile-page-active .main-content,
    body.navid-profile-page-active .main-container,
    body.navid-profile-page-active .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body.navid-invoice-print-active * {
        visibility: hidden;
    }

    body.navid-invoice-print-active .navid-order-invoice-print-target,
    body.navid-invoice-print-active .navid-order-invoice-print-target * {
        visibility: visible;
    }

    body.navid-invoice-print-active .navid-order-invoice-print-target {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: #fff;
    }

    body.navid-invoice-print-active .navid-order-details-modal.is-open {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
    }

    body.navid-invoice-print-active .navid-order-details-modal .navid-modal__backdrop,
    body.navid-invoice-print-active .navid-order-details-modal__close,
    body.navid-invoice-print-active .navid-order-details-modal__pay-section {
        display: none !important;
    }

    body.navid-invoice-print-active .navid-order-details-modal .navid-modal__dialog {
        position: static !important;
        max-width: none !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .navid-order-invoice {
        border: 0;
        padding: 0;
    }

    .navid-order-details-modal__invoice-btn,
    .navid-order-cart-details__invoice-btn {
        display: none !important;
    }
}

.navid-order-show__back {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--navid-gray);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none !important;
}

.navid-order-show__back:hover {
    color: var(--navid-primary);
}

.navid-order-show__back-icon {
    display: block;
    width: 20px;
    height: 20px;
}

.navid-order-show__back-icon path {
    stroke: currentColor;
}

.navid-order-show__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 40px;
}

.navid-order-show__title {
    margin: 0;
    color: var(--navid-secondary);
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-show__subtitle {
    margin: 0;
    color: var(--navid-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
}

.navid-orders-page__alert--warning {
    background: rgba(243, 112, 58, 0.1);
    color: var(--navid-primary);
}

.navid-orders-table__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.navid-orders-table__status--paid {
    background: rgba(0, 146, 148, 0.1);
    color: var(--navid-green);
}

.navid-orders-table__status--unpaid {
    background: rgba(230, 179, 76, 0.12);
    color: var(--navid-yellow);
}

.navid-orders-table__status--canceled {
    background: rgba(230, 179, 76, 0.12);
    color: var(--navid-yellow);
}

.navid-order-show__section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 40px;
}

.navid-order-show__section-title {
    margin: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    color: var(--navid-secondary);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-show__info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    padding: 24px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    direction: rtl;
}

.navid-order-show__info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.navid-order-show__info-label {
    color: var(--navid-gray-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.navid-order-show__info-value {
    color: var(--navid-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    word-break: break-word;
}

.navid-order-show__pay-form,
.navid-order-details-modal__pay-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 8px;
}

.navid-order-show__pay-actions,
.navid-order-details-modal__pay-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    direction: rtl;
}

.navid-order-details-modal__pay-section .navid-field--select .navid-select.is-open {
    z-index: 30;
}

.navid-order-details-modal__pay-section .navid-field--select .navid-select__list {
    z-index: 31;
}

.navid-order-show__steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--navid-tertiary);
    border-radius: 4px;
    background: var(--navid-white);
    direction: rtl;
}

.navid-order-show__step {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--navid-gray-2);
    text-align: center;
}

.navid-order-show__step.is-active {
    color: var(--navid-primary);
}

.navid-order-show__step-icon {
    display: block;
    width: 48px;
    height: 48px;
    opacity: 0.45;
}

.navid-order-show__step.is-active .navid-order-show__step-icon {
    opacity: 1;
}

.navid-order-show__step-label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.navid-order-show__tracking {
    margin: 0;
    padding: 16px;
    border-radius: 4px;
    background: rgba(0, 54, 99, 0.05);
    color: var(--navid-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.navid-order-show__items-table {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow-x: auto;
}

.navid-order-show__items-head,
.navid-order-show__items-row {
    display: grid;
    grid-template-columns:
        minmax(180px, 2fr) repeat(5, minmax(80px, 1fr))
        minmax(100px, 1fr);
    align-items: center;
    min-width: 760px;
    min-height: 56px;
    direction: rtl;
}

.navid-order-show__items-head {
    background: var(--navid-tertiary);
}

.navid-order-show__items-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: var(--navid-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    box-sizing: border-box;
}

.navid-order-show__items-head .navid-order-show__items-cell {
    font-size: 15px;
}

.navid-order-show__items-row {
    background: var(--navid-white);
    border-bottom: 1px solid var(--navid-tertiary);
}

.navid-order-show__items-cell--product {
    justify-content: flex-start;
    gap: 12px;
    text-align: right;
}

.navid-order-show__product-thumb {
    display: block;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
}

.navid-order-show__product-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.navid-order-show__product-title {
    margin: 0;
    color: var(--navid-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-show__product-attr {
    color: var(--navid-gray-2);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.navid-order-show__product-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    border-radius: 50%;
    vertical-align: middle;
}

.navid-order-show__item-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.navid-order-show__mini-table {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.navid-order-show__mini-head,
.navid-order-show__mini-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    min-height: 48px;
    direction: rtl;
}

.navid-order-show__mini-head {
    background: var(--navid-tertiary);
}

.navid-order-show__mini-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: var(--navid-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.navid-order-show__mini-row {
    border-bottom: 1px solid var(--navid-tertiary);
    background: var(--navid-white);
}

@media (max-width: 991px) {
    .navid-orders-page__title {
        display: none;
    }

    .navid-orders-page__toolbar {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
        gap: 0;
    }

    .navid-orders-page__filters {
        display: none;
    }

    .navid-orders-page__search,
    .navid-orders-page__filter-select {
        max-width: none;
        min-width: 0;
        width: 100%;
    }

    .navid-order-card {
        gap: 0;
        padding: 24px 16px;
    }

    .navid-order-card__desktop {
        display: none;
    }

    .navid-order-card__mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .navid-order-card__actions--mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .navid-order-card__actions--mobile .navid-order-card__details-btn {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        height: 56px;
        font-size: 16px;
    }

    .navid-order-card__actions--mobile:not(:has(.navid-order-card__cancel))
        .navid-order-card__details-btn {
        width: 100%;
    }

    .navid-order-card__actions--mobile .navid-order-card__cancel {
        flex-shrink: 0;
        height: 56px;
        padding: 0 16px;
    }

    .navid-order-cancel-modal .navid-logout-modal__actions {
        flex-direction: row;
        gap: 16px;
    }

    .navid-order-cancel-modal .navid-logout-modal__action {
        flex: 1 1 0;
    }

    .navid-order-cancel-modal .navid-logout-modal__btn {
        width: 100%;
        min-height: 56px;
    }

    .navid-order-cart-details {
        margin: 0 -16px;
    }

    .navid-order-invoice {
        padding: 24px 16px;
    }

    .navid-order-show__product-row {
        flex-direction: column;
        align-items: stretch;
    }

    .navid-order-show__product-row-actions {
        justify-content: flex-end;
        width: 100%;
    }

    .navid-order-details-modal .navid-modal__dialog {
        max-height: 100vh;
        padding: 48px 24px 32px;
    }

    .navid-order-details-modal__close {
        top: 16px;
        left: 16px;
    }

    .navid-order-details-modal__header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .navid-order-details-modal__meta {
        gap: 24px;
        justify-content: space-between;
    }

    .navid-order-details-modal__invoice-btn {
        width: 100%;
    }

    .navid-order-details-modal__section:first-child {
        padding-top: 24px;
    }

    .navid-order-details-modal__item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 8px;
    }

    .navid-order-details-modal__item-primary {
        gap: 8px;
    }

    .navid-order-details-modal__pair-label,
    .navid-order-details-modal__item-label,
    .navid-order-details-modal__summary-label {
        font-size: 12px;
    }

    .navid-order-details-modal__pair-value,
    .navid-order-details-modal__item-value,
    .navid-order-details-modal__summary-value {
        font-size: 13px;
    }

    .navid-order-details-modal__summary {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .navid-order-details-modal__summary-item {
        flex: none;
        width: 100%;
    }

    .navid-order-details-modal__info-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .navid-order-details-modal__info-row--address-meta
        .navid-order-details-modal__pair {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 120px;
    }

    .navid-order-details-modal__info-row--address {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .navid-order-details-modal__pair-group {
        flex: none;
        max-width: none;
        width: 100%;
    }

    .navid-order-details-modal__pair--address-full {
        width: 100%;
    }

    .navid-order-details-modal__panel .navid-order-details-modal__pair-value {
        white-space: normal;
    }

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

    .navid-order-show__steps {
        flex-direction: column;
    }
}

.navid-order-cart-details {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: var(--navid-profile-content-w, 900px);
    font-family: var(--navid-font);
}

.navid-order-cart-details__summary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 16px;
    border-bottom: 1px solid var(--navid-tertiary);
    background: var(--navid-white);
}

.navid-order-cart-details__invoice-btn {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 56px;
    padding: 9px 16px;
    border: 2px solid var(--navid-primary);
    border-radius: 4px;
    background: var(--navid-white);
    color: var(--navid-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    box-sizing: border-box;
    cursor: pointer;
}

.navid-order-cart-details__invoice-icon {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.navid-order-cart-details__invoice-icon path {
    stroke: currentColor;
}

.navid-order-cart-details__section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 16px;
    border-bottom: 1px solid var(--navid-tertiary);
    background: var(--navid-white);
}

.navid-order-cart-details__section:last-child {
    border-bottom: 0;
}

.navid-order-cart-details__section-title {
    margin: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--navid-secondary);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-cart-details__products {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

.navid-order-cart-details__products-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--navid-gray-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
}

.navid-order-cart-details__product-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.navid-order-cart-details__product-name {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--navid-gray);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: right;
}

.navid-order-cart-details__product-price {
    flex-shrink: 0;
    color: var(--navid-gray);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    white-space: nowrap;
}

.navid-order-cart-details__rows,
.navid-order-cart-details__totals {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
}

.navid-order-cart-details__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 32px;
}

.navid-order-cart-details__row--stack {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-height: 0;
}

.navid-order-cart-details__row--stack .navid-order-cart-details__row-label,
.navid-order-cart-details__row--stack .navid-order-cart-details__row-value {
    text-align: right;
    white-space: normal;
}

.navid-order-cart-details__row-label {
    flex-shrink: 0;
    color: var(--navid-gray-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    white-space: nowrap;
}

.navid-order-cart-details__row-value {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--navid-gray);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
}

.navid-order-cart-details__row-value--full {
    flex: none;
    width: 100%;
    text-align: right;
}

@media (max-width: 575px) {
    .navid-order-card__actions--mobile {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .navid-order-card__actions--mobile .navid-order-card__details-btn {
        width: auto;
    }

    .navid-orders-page__empty {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .navid-orders-page__empty-link {
        align-self: flex-start;
    }

    .navid-order-show__pay-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .navid-order-show__pay-actions .navid-btn {
        width: 100%;
    }
}
