:root {
    --account-primary: #51611e;
    --account-primary-dark: #3f4c17;
    --account-primary-soft: #eef3e6;
    --account-card-radius: 16px;
    --account-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.account-dashboard-section {
    background: #f6f8f2;
}

.account-profile-card,
.account-content-card,
.account-panel,
.account-order-card,
.account-address-card,
.account-wishlist-card,
.account-stat-card {
    background: #fff;
    border-radius: var(--account-card-radius);
    box-shadow: var(--account-shadow);
}

.account-profile-card {
    padding: 1.5rem;
    height: 100%;
}

.account-greeting {
    color: var(--account-primary);
    font-weight: 600;
}

.account-profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.account-profile-meta {
    color: #64748b;
    font-size: 0.92rem;
}

.account-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--account-primary), var(--account-primary-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    overflow: hidden;
    flex-shrink: 0;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-avatar--lg {
    width: 120px;
    height: 120px;
    font-size: 2rem;
}

.account-stat-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    min-height: 92px;
}

.account-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.account-stat-card--orders .account-stat-icon {
    background: #e8f0ff;
    color: #2563eb;
}

.account-stat-card--pending .account-stat-icon {
    background: #fff4e5;
    color: #d97706;
}

.account-stat-card--wishlist .account-stat-icon {
    background: #fde8ef;
    color: #db2777;
}

.account-stat-card--addresses .account-stat-icon {
    background: var(--account-primary-soft);
    color: var(--account-primary);
}

.account-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.account-stat-label {
    color: #64748b;
    font-size: 0.82rem;
}

.account-sidebar {
    position: sticky;
    top: 100px;
}

.account-sidebar-nav {
    background: #fff;
    border-radius: var(--account-card-radius);
    box-shadow: var(--account-shadow);
    padding: 0.75rem;
}

.account-sidebar-link {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: #334155;
    text-align: left;
    transition: all 0.2s ease;
}

.account-sidebar-link:hover,
.account-sidebar-link.is-active {
    background: var(--account-primary-soft);
    color: var(--account-primary);
}

.account-sidebar-link.is-active {
    border-left: 4px solid var(--account-primary);
    padding-left: calc(1rem - 4px);
}

.account-sidebar-link--logout {
    color: #dc3545;
}

.account-mobile-accordion .accordion-item,
.account-mobile-accordion .accordion-button {
    border-radius: var(--account-card-radius);
}

.account-content-card {
    padding: 1.5rem;
}

.account-content-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.account-content-subtitle {
    color: #64748b;
}

.account-panel {
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.account-panel-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.account-table thead th {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #64748b;
    border-bottom-color: #e2e8f0;
}

.account-table tbody td {
    vertical-align: middle;
    border-bottom-color: #f1f5f9;
}

.account-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e2e8f0;
    color: #475569;
}

.account-status-badge--pending {
    background: #fff4e5;
    color: #b45309;
}

.account-status-badge--confirmed,
.account-status-badge--processing,
.account-status-badge--paid {
    background: #e0f2fe;
    color: #0369a1;
}

.account-status-badge--shipped {
    background: #ede9fe;
    color: #6d28d9;
}

.account-status-badge--delivered,
.account-status-badge--completed {
    background: #dcfce7;
    color: #15803d;
}

.account-status-badge--cancelled,
.account-status-badge--failed {
    background: #fee2e2;
    color: #b91c1c;
}

.btn-account-primary {
    background: var(--account-primary);
    border-color: var(--account-primary);
    color: #fff;
}

.btn-account-primary:hover,
.btn-account-primary:focus {
    background: var(--account-primary-dark);
    border-color: var(--account-primary-dark);
    color: #fff;
}

.btn-account-outline {
    border-color: #cbd5e1;
    color: #334155;
    background: #fff;
}

.btn-account-outline:hover,
.btn-account-outline:focus {
    border-color: var(--account-primary);
    color: var(--account-primary);
    background: var(--account-primary-soft);
}

.account-link-btn {
    color: var(--account-primary);
    text-decoration: none;
}

.account-order-card,
.account-address-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.account-order-number,
.account-wishlist-name {
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.account-order-meta {
    color: #64748b;
    font-size: 0.88rem;
}

.account-order-amount,
.account-wishlist-price {
    font-size: 1.15rem;
    font-weight: 800;
}

.account-address-label {
    display: inline-flex;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: var(--account-primary-soft);
    color: var(--account-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
}

.account-default-badge {
    display: inline-flex;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 700;
}

.account-wishlist-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.account-wishlist-img {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8fafc;
}

.account-wishlist-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.account-empty-state {
    background: #fafaf8;
    border: 1px dashed #d8dee9;
    border-radius: var(--account-card-radius);
}

.account-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--account-primary-soft);
    color: var(--account-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.account-empty-title {
    font-weight: 700;
}

.account-empty-text {
    color: #64748b;
    max-width: 420px;
    margin: 0 auto 1rem;
}

.account-alert {
    border-radius: var(--account-card-radius);
    border: 0;
}

.account-mini-product {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 0.85rem;
    height: 100%;
}

.account-mini-product-img {
    display: block;
    height: 140px;
    margin-bottom: 0.75rem;
}

.account-mini-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.account-mini-product-name {
    display: block;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    margin-bottom: 0.35rem;
}

.account-mini-product-price {
    font-weight: 800;
    color: var(--account-primary);
}

.account-product-swiper {
    padding: 0 2.5rem;
    position: relative;
}

.account-product-swiper .swiper-button-prev,
.account-product-swiper .swiper-button-next {
    color: var(--account-primary);
}

.account-timeline {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .account-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

.account-timeline-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    opacity: 0.45;
}

.account-timeline-step.is-completed,
.account-timeline-step.is-current {
    opacity: 1;
}

.account-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.account-timeline-step.is-completed .account-timeline-dot,
.account-timeline-step.is-current .account-timeline-dot {
    background: var(--account-primary);
    box-shadow: 0 0 0 4px rgba(81, 97, 30, 0.15);
}

.account-modal .modal-content {
    border: 0;
    border-radius: var(--account-card-radius);
}

.account-password-progress {
    height: 6px;
    background: #e2e8f0;
}

.account-password-progress .progress-bar {
    width: 0;
    transition: width 0.2s ease;
}

.account-password-strength-label {
    color: #64748b;
}

@media print {
    .breadcumb-wrapper,
    .footer-layout1,
    .header-layout1,
    .floating-wpp,
    .account-dashboard-section .btn,
    .account-sidebar,
    .account-mobile-accordion {
        display: none !important;
    }

    .account-dashboard-section {
        background: #fff;
        padding: 0;
    }
}

@media (max-width: 991.98px) {
    .account-sidebar {
        position: static;
    }

    .account-content-card {
        padding: 1rem;
    }
}

/* ============================================
   Premium Customer Order Details
   ============================================ */

.order-detail-page .breadcumb-wrapper {
    min-height: 110px !important;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.order-detail-page .breadcumb-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
}

.order-detail-page .breadcumb-menu {
    font-size: 0.85rem;
}

.order-detail-section {
    background: #f5f7f1;
}

.order-detail-crumb .breadcrumb {
    background: transparent;
    padding: 0;
}

.order-detail-crumb .breadcrumb-item a {
    color: var(--account-primary);
    text-decoration: none;
}

.order-detail-crumb .breadcrumb-item.active {
    color: #64748b;
}

.order-detail-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(81, 97, 30, 0.06);
    padding: 1.35rem 1.5rem;
}

.order-detail-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #84a03a;
    font-weight: 700;
    margin: 0;
}

.order-detail-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.02em;
}

.order-detail-meta {
    color: #64748b;
    font-size: 0.92rem;
}

.order-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
}

.btn-order-primary {
    background: var(--account-primary);
    border-color: var(--account-primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.45rem 1rem;
}

.btn-order-primary:hover,
.btn-order-primary:focus {
    background: var(--account-primary-dark);
    border-color: var(--account-primary-dark);
    color: #fff;
}

.btn-order-outline {
    background: #fff;
    border: 1px solid #d7e0c8;
    color: var(--account-primary);
    border-radius: 999px;
    font-weight: 600;
    padding: 0.45rem 1rem;
}

.btn-order-outline:hover,
.btn-order-outline:focus {
    background: var(--account-primary-soft);
    border-color: var(--account-primary);
    color: var(--account-primary-dark);
}

.order-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.order-badge--payment-paid,
.order-badge--status-confirmed,
.order-badge--status-delivered {
    background: #e9f8ef;
    color: #15803d;
}

.order-badge--status-processing {
    background: #e0f2fe;
    color: #0369a1;
}

.order-badge--payment-pending,
.order-badge--status-pending {
    background: #e8f1ff;
    color: #1d4ed8;
}

.order-badge--payment-failed,
.order-badge--status-payment_failed,
.order-badge--status-cancelled {
    background: #feeceb;
    color: #b91c1c;
}

.order-badge--payment-refunded {
    background: #eef2ff;
    color: #4338ca;
}

.order-badge--status-shipped {
    background: #e8f1ff;
    color: #1d4ed8;
}

.order-badge--status-out_for_delivery {
    background: #fff7ed;
    color: #c2410c;
}

.order-badge--status-return_initiated,
.order-badge--status-returned {
    background: #f1f5f9;
    color: #475569;
}

/* Progress tracker */
.order-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.order-progress-step {
    flex: 1 1 0;
    min-width: 84px;
    text-align: center;
    opacity: 0.4;
}

.order-progress-step.is-completed,
.order-progress-step.is-current {
    opacity: 1;
}

.order-progress-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.55rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2e6;
    color: #94a3b8;
    font-size: 1.1rem;
}

.order-progress-step.is-completed .order-progress-icon,
.order-progress-step.is-current .order-progress-icon {
    background: var(--account-primary);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(81, 97, 30, 0.12);
}

.order-progress-label {
    font-size: 0.84rem;
    font-weight: 700;
    color: #1f2937;
}

.order-progress-date {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.order-progress-connector {
    flex: 0 0 28px;
    height: 3px;
    background: #e2e8f0;
    margin-top: 20px;
    border-radius: 99px;
}

.order-progress-connector.is-completed {
    background: var(--account-primary);
}

.order-progress--premium .order-progress-step:not(.is-completed):not(.is-current) {
    opacity: 0.38;
}

.order-progress--premium .order-progress-step:not(.is-completed):not(.is-current) .order-progress-icon {
    background: #f1f5f9;
    color: #94a3b8;
    box-shadow: none;
}

.order-progress--premium .order-progress-step.is-completed .order-progress-icon {
    background: #16a34a;
    box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
}

.order-progress--premium .order-progress-step.is-current .order-progress-icon {
    background: var(--account-primary);
    box-shadow: 0 0 0 5px rgba(81, 97, 30, 0.14);
}

.order-progress--premium .order-progress-connector.is-completed {
    background: linear-gradient(90deg, #16a34a, var(--account-primary));
}

/* Customer shipment tracking */
.ct-shipment-card {
    border: 1px solid #e8edd9;
}

.ct-shipment-empty {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem 1.25rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7faf0 0%, #f1f5f9 100%);
    border: 1px solid #e5ebd8;
}

.ct-shipment-empty--soft {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.ct-shipment-empty__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--account-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.ct-shipment-status {
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    color: #0f172a;
    border: 1px solid transparent;
}

.ct-shipment-status__label {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.ct-shipment-status--info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.ct-shipment-status--transit,
.ct-shipment-status--warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
}

.ct-shipment-status--ofd {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c;
}

.ct-shipment-status--success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.ct-shipment-status--danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.ct-shipment-status--returned,
.ct-shipment-status--secondary {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #475569;
}

.ct-shipment-meta {
    display: grid;
    gap: 0.65rem;
}

.ct-shipment-meta__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    padding-bottom: 0.65rem;
    border-bottom: 1px dashed #e8edd9;
    font-size: 0.9rem;
}

.ct-shipment-meta__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ct-shipment-meta__row > span {
    color: #64748b;
    flex-shrink: 0;
}

.ct-shipment-meta__row > strong {
    text-align: right;
    color: #0f172a;
    font-weight: 700;
    word-break: break-word;
}

.ct-tracking-panel {
    height: 100%;
    border-radius: 14px;
    background: #fbfdf6;
    border: 1px solid #e8edd9;
    padding: 1.15rem 1.2rem;
}

.ct-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.ct-timeline__item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.85rem;
    position: relative;
    padding-bottom: 1.15rem;
}

.ct-timeline__item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: #d7e0c8;
}

.ct-timeline__item:last-child {
    padding-bottom: 0;
}

.ct-timeline__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    color: #16a34a;
    font-size: 0.85rem;
    z-index: 1;
}

.ct-timeline__item.is-latest .ct-timeline__dot {
    background: var(--account-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(81, 97, 30, 0.12);
}

.ct-timeline__body {
    min-width: 0;
    padding-top: 0.1rem;
}

.ct-timeline__time {
    font-size: 0.78rem;
    color: #94a3b8;
    white-space: nowrap;
}

.ct-timeline__location {
    font-size: 0.84rem;
    color: #64748b;
    margin-top: 0.2rem;
}

.ct-timeline__message {
    font-size: 0.9rem;
    color: #334155;
    margin-top: 0.25rem;
}

.ct-timeline__remarks {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 0.2rem;
    font-style: italic;
}

/* Summary list */
.order-summary-list {
    display: grid;
    gap: 0.95rem;
}

.order-summary-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.order-summary-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--account-primary-soft);
    color: var(--account-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-summary-icon--danger {
    background: #feeceb;
    color: #b91c1c;
}

.order-summary-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.order-summary-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
}

.order-summary-value--total {
    color: var(--account-primary);
    font-size: 1.15rem;
}

/* Address cards */
.order-address-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--account-primary-soft);
    color: var(--account-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.order-address-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
}

.order-address-line {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
}

.order-same-tag {
    display: inline-block;
    font-size: 0.72rem;
    color: #84a03a;
    font-weight: 600;
}

/* Product rows */
.order-product-list {
    display: grid;
    gap: 0.85rem;
}

.order-product-row {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 0.85rem;
    border: 1px solid #eef2e6;
    border-radius: 14px;
    background: #fcfdf9;
}

.order-product-media {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f0;
}

.order-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.4rem;
}

.order-product-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95rem;
}

.order-product-sku,
.order-product-qty {
    color: #94a3b8;
    font-size: 0.8rem;
}

.order-product-price {
    text-align: right;
}

.order-product-unit {
    color: #64748b;
    font-size: 0.8rem;
}

.order-product-line {
    font-weight: 800;
    color: #1f2937;
}

@media (min-width: 768px) {
    .order-product-row {
        grid-template-columns: 72px 1fr 70px 110px;
    }
}

/* Price summary */
.order-price-rows {
    display: grid;
    gap: 0.75rem;
}

.order-price-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #475569;
    font-size: 0.92rem;
}

.order-price-row--total {
    margin-top: 0.35rem;
    padding-top: 0.9rem;
    border-top: 1px dashed #d7e0c8;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--account-primary);
}

.order-back-link {
    color: var(--account-primary) !important;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .ct-tracking-panel {
        margin-top: 0.25rem;
    }

    .ct-timeline {
        max-height: none;
    }
}

@media (max-width: 767.98px) {
    .order-detail-card {
        padding: 1.1rem;
        border-radius: 14px;
    }

    .order-detail-title {
        font-size: 1.35rem;
    }

    .order-progress-connector {
        flex-basis: 16px;
    }

    .order-progress-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .order-progress--premium {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .order-progress--premium .order-progress-step {
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto;
        column-gap: 0.85rem;
        min-width: 0;
        text-align: left;
        align-items: center;
        padding: 0.35rem 0;
    }

    .order-progress--premium .order-progress-icon {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .order-progress--premium .order-progress-label {
        grid-column: 2;
    }

    .order-progress--premium .order-progress-date {
        grid-column: 2;
    }

    .order-progress--premium .order-progress-connector {
        flex: none;
        width: 3px;
        height: 18px;
        margin: 0 0 0 20px;
    }

    .ct-shipment-status__label {
        font-size: 1.2rem;
    }

    .ct-shipment-meta__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .ct-shipment-meta__row > strong {
        text-align: left;
    }
}

@media print {
    .order-detail-page .breadcumb-wrapper,
    .order-detail-crumb,
    .order-detail-page .btn,
    .order-back-link {
        display: none !important;
    }

    .order-detail-section {
        background: #fff !important;
    }

    .order-detail-card {
        box-shadow: none !important;
        border: 1px solid #e5e7eb !important;
        break-inside: avoid;
    }
}

