/**
 * ============================================================================
 * Brccfaka Order Styles for Riniba 01 Theme
 * ============================================================================
 * Template: Toy Store
 * Colors: #FBC270 (Primary/Accent), #67D4E0 (Secondary/Background)
 * Font: Nunito, Lato, Inter
 * Style: Playful, rounded corners, soft shadows
 * ============================================================================
 */

/* ============================================================================
   Order Page Layout
   ============================================================================ */

.order-page {
    padding: 40px 0;
    min-height: 60vh;
    background: linear-gradient(180deg, #67D4E0 0%, #f8f9fa 30%);
}

.order-page-header {
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.order-page-title {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #333;
}

.order-page-title i {
    color: #FBC270;
    margin-right: 15px;
}

.order-breadcrumb {
    margin-top: 10px;
}

.order-breadcrumb a {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.order-breadcrumb a:hover {
    color: #67D4E0;
}

.order-breadcrumb span {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.order-breadcrumb i {
    margin: 0 10px;
    color: #ccc;
    font-size: 10px;
}

/* ============================================================================
   Order Status Steps
   ============================================================================ */

.order-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 30px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.order-step {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.order-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 3px;
    background: #eee;
}

.order-step.completed:not(:last-child)::after {
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
}

.order-step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 3px solid #eee;
    border-radius: 50%;
    font-size: 20px;
    color: #aaa;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.order-step.completed .order-step-icon {
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
    border-color: #67D4E0;
    color: #fff;
}

.order-step.current .order-step-icon {
    background: linear-gradient(135deg, #FBC270 0%, #E8A94D 100%);
    border-color: #FBC270;
    color: #fff;
    animation: orderStepPulse 2s ease-in-out infinite;
}

@keyframes orderStepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 194, 112, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(251, 194, 112, 0); }
}

.order-step-label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #aaa;
    text-align: center;
}

.order-step.completed .order-step-label,
.order-step.current .order-step-label {
    color: #333;
}

.order-step-time {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* ============================================================================
   Order List
   ============================================================================ */

.order-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.order-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.order-card-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.order-id {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.order-id span {
    color: #67D4E0;
}

.order-date {
    font-size: 14px;
    color: #888;
}

.order-date i {
    margin-right: 6px;
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.order-status.pending {
    background: rgba(251, 194, 112, 0.15);
    color: #e8a94d;
}

.order-status.processing {
    background: rgba(103, 212, 224, 0.15);
    color: #4fc3d0;
}

.order-status.completed {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.order-status.cancelled {
    background: rgba(255, 82, 82, 0.15);
    color: #ff5252;
}

.order-status.refunded {
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
}

.order-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.order-card-body {
    padding: 25px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.order-item:hover {
    background: #f5f5f5;
}

.order-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    margin: 0 0 6px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.order-item-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.order-item-name a:hover {
    color: #67D4E0;
}

.order-item-variant {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.order-item-quantity {
    font-size: 13px;
    color: #666;
}

.order-item-price {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FBC270;
    text-align: right;
}

.order-item-price .currency {
    font-size: 13px;
}

/* Order Summary */
.order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dashed #ddd;
}

.order-summary-label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.order-total {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #FBC270;
}

.order-total .currency {
    font-size: 14px;
}

/* Order Card Footer */
.order-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.order-actions {
    display: flex;
    gap: 12px;
}

.order-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-action-btn.primary {
    background: linear-gradient(135deg, #FBC270 0%, #E8A94D 100%);
    border: none;
    color: #fff;
    box-shadow: 0 5px 15px rgba(251, 194, 112, 0.4);
}

.order-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 194, 112, 0.5);
}

.order-action-btn.secondary {
    background: #fff;
    border: 2px solid #67D4E0;
    color: #67D4E0;
}

.order-action-btn.secondary:hover {
    background: #67D4E0;
    color: #fff;
}

.order-action-btn.outline {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
}

.order-action-btn.outline:hover {
    border-color: #67D4E0;
    color: #67D4E0;
}

.order-action-btn.danger {
    background: #fff;
    border: 2px solid #ff5252;
    color: #ff5252;
}

.order-action-btn.danger:hover {
    background: #ff5252;
    color: #fff;
}

/* ============================================================================
   Order Detail Page
   ============================================================================ */

.order-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.order-detail-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-section {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.order-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
}

.order-section-title {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.order-section-title i {
    margin-right: 10px;
}

.order-section-body {
    padding: 25px;
}

/* Order Info Grid */
.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-info-label {
    font-size: 13px;
    color: #888;
}

.order-info-value {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Order Timeline */
.order-timeline {
    position: relative;
    padding-left: 30px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #eee;
}

.order-timeline-item {
    position: relative;
    padding-bottom: 25px;
}

.order-timeline-item:last-child {
    padding-bottom: 0;
}

.order-timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #ddd;
    border-radius: 50%;
    z-index: 1;
}

.order-timeline-item.completed::before {
    background: #67D4E0;
    border-color: #67D4E0;
}

.order-timeline-item.current::before {
    background: #FBC270;
    border-color: #FBC270;
    animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 194, 112, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(251, 194, 112, 0); }
}

.order-timeline-time {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.order-timeline-title {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.order-timeline-desc {
    font-size: 13px;
    color: #666;
}

/* Order Pay  Info */
.order-Pay -info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
}

.order-Pay -icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-Pay -icon img {
    max-width: 40px;
    max-height: 40px;
}

.order-Pay -icon i {
    font-size: 28px;
    color: #67D4E0;
}

.order-Pay -details {
    flex: 1;
}

.order-Pay -method {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.order-Pay -status {
    font-size: 13px;
    color: #4caf50;
}

.order-Pay -status.pending {
    color: #e8a94d;
}

/* Order Pricing Summary */
.order-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-pricing-label {
    font-size: 14px;
    color: #666;
}

.order-pricing-value {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.order-pricing-row.discount .order-pricing-value {
    color: #4caf50;
}

.order-pricing-row.total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid #eee;
}

.order-pricing-row.total .order-pricing-label {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.order-pricing-row.total .order-pricing-value {
    font-size: 26px;
    font-weight: 800;
    color: #FBC270;
}

/* Order Card Data Display */
.order-card-data {
    margin-top: 20px;
}

.order-card-data-title {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.order-card-data-content {
    position: relative;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #eee;
}

.order-card-data-text {
    font-family: monospace;
    font-size: 14px;
    color: #333;
    word-break: break-all;
    white-space: pre-wrap;
    line-height: 1.6;
}

.order-card-copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
    border: none;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-card-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(103, 212, 224, 0.4);
}

.order-card-copy-btn.copied {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

/* ============================================================================
   Order Query Form
   ============================================================================ */

.order-query-section {
    padding: 60px 0;
}

.order-query-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.order-query-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-query-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(103, 212, 224, 0.4);
}

.order-query-icon i {
    font-size: 36px;
    color: #fff;
}

.order-query-title {
    margin: 0 0 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #333;
}

.order-query-subtitle {
    font-size: 15px;
    color: #888;
}

.order-query-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.order-query-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-query-label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.order-query-input {
    height: 56px;
    padding: 0 25px;
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.order-query-input:focus {
    outline: none;
    border-color: #67D4E0;
    background: #fff;
}

.order-query-input::placeholder {
    color: #aaa;
}

.order-query-btn {
    height: 56px;
    background: linear-gradient(135deg, #FBC270 0%, #E8A94D 100%);
    border: none;
    border-radius: 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 194, 112, 0.4);
}

.order-query-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 194, 112, 0.5);
}

.order-query-btn i {
    margin-right: 10px;
}

.order-query-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
    font-size: 13px;
}

.order-query-divider::before,
.order-query-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.order-query-alt {
    text-align: center;
}

.order-query-alt-link {
    color: #67D4E0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.order-query-alt-link:hover {
    color: #4fc3d0;
}

/* ============================================================================
   Order Empty State
   ============================================================================ */

.order-empty {
    padding: 80px 40px;
    text-align: center;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.order-empty-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(103, 212, 224, 0.4);
}

.order-empty-icon i {
    font-size: 50px;
    color: #fff;
}

.order-empty-title {
    margin: 0 0 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #333;
}

.order-empty-text {
    margin: 0 0 30px;
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

.order-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FBC270 0%, #E8A94D 100%);
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 194, 112, 0.4);
}

.order-empty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 194, 112, 0.5);
}

/* ============================================================================
   Order Filters
   ============================================================================ */

.order-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.order-filter-tabs {
    display: flex;
    gap: 5px;
}

.order-filter-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-filter-tab:hover {
    color: #333;
}

.order-filter-tab.active {
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
    color: #fff;
}

.order-filter-tab .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 11px;
}

.order-filter-tab.active .count {
    background: rgba(255, 255, 255, 0.3);
}

.order-search-form {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.order-search-input {
    width: 250px;
    height: 42px;
    padding: 0 20px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 21px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.order-search-input:focus {
    outline: none;
    background: #fff;
    border-color: #67D4E0;
}

.order-search-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-search-btn:hover {
    transform: scale(1.1);
}

/* ============================================================================
   Order Pagination
   ============================================================================ */

.order-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.order-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 21px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-pagination-btn:hover:not(.disabled) {
    border-color: #67D4E0;
    color: #67D4E0;
}

.order-pagination-btn.active {
    background: linear-gradient(135deg, #67D4E0 0%, #4FC3D0 100%);
    border-color: #67D4E0;
    color: #fff;
}

.order-pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.order-pagination-dots {
    color: #aaa;
    padding: 0 5px;
}

/* ============================================================================
   Order Confirmation / Success Page
   ============================================================================ */

.order-success {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
}

.order-success-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    border-radius: 50%;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.order-success-icon i {
    font-size: 60px;
    color: #fff;
}

.order-success-title {
    margin: 0 0 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #333;
}

.order-success-text {
    margin: 0 0 25px;
    font-size: 16px;
    color: #888;
    line-height: 1.6;
}

.order-success-id {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(103, 212, 224, 0.1);
    border: 2px dashed #67D4E0;
    border-radius: 15px;
    margin-bottom: 30px;
}

.order-success-id-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.order-success-id-value {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #67D4E0;
}

.order-success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.order-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 27px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-success-btn.primary {
    background: linear-gradient(135deg, #FBC270 0%, #E8A94D 100%);
    border: none;
    color: #fff;
    box-shadow: 0 6px 20px rgba(251, 194, 112, 0.4);
}

.order-success-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 194, 112, 0.5);
}

.order-success-btn.secondary {
    background: #fff;
    border: 2px solid #67D4E0;
    color: #67D4E0;
}

.order-success-btn.secondary:hover {
    background: #67D4E0;
    color: #fff;
}

/* ============================================================================
   Responsive Styles
   ============================================================================ */

@media (max-width: 1200px) {
    .order-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .order-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .order-step:not(:last-child)::after {
        display: none;
    }
    
    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-card-info {
        flex-wrap: wrap;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .order-page {
        padding: 20px 0;
    }
    
    .order-page-header {
        padding: 20px;
    }
    
    .order-page-title {
        font-size: 22px;
    }
    
    .order-card-body {
        padding: 20px;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item-price {
        text-align: center;
        margin-top: 10px;
    }
    
    .order-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .order-filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .order-search-form {
        margin-left: 0;
        width: 100%;
    }
    
    .order-search-input {
        width: 100%;
        flex: 1;
    }
    
    .order-card-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .order-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .order-action-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .order-query-container {
        padding: 30px 20px;
    }
    
    .order-success {
        padding: 40px 25px;
    }
    
    .order-success-title {
        font-size: 24px;
    }
    
    .order-success-actions {
        flex-direction: column;
    }
    
    .order-success-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .order-step {
        max-width: 100%;
    }
    
    .order-step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .order-item-image {
        width: 60px;
        height: 60px;
    }
    
    .order-total {
        font-size: 20px;
    }
    
    .order-pagination {
        flex-wrap: wrap;
    }
}

/* ============================================================================
   Order Loading States
   ============================================================================ */

.order-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 20px;
}

.order-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top-color: #67D4E0;
    border-radius: 50%;
    animation: orderSpin 0.8s linear infinite;
}

@keyframes orderSpin {
    to { transform: rotate(360deg); }
}

.order-skeleton {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.order-skeleton .skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 8px;
}

.order-skeleton .skeleton-header {
    height: 60px;
    margin-bottom: 20px;
}

.order-skeleton .skeleton-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
}

.order-skeleton .skeleton-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.order-skeleton .skeleton-text {
    flex: 1;
    height: 16px;
}

.order-skeleton .skeleton-text.short {
    width: 40%;
}

@keyframes skeletonShimmer {
    to { background-position: -200% 0; }
}

/* ============================================================================
   Order Print Styles
   ============================================================================ */

@media print {
    .order-page {
        background: none;
        padding: 0;
    }
    
    .order-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .order-actions,
    .order-filters,
    .order-pagination {
        display: none !important;
    }
    
    .order-card-copy-btn {
        display: none !important;
    }
}
