/* === PREMIUM SELLER PAYOUT DETAIL - ULTRA MODERN DESIGN === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Root Variables */
:root {
    --mpdddd-orange-fire: #ff7a00;
    --mpdddd-orange-glow: #ff9533;
    --mpdddd-orange-ember: #e66a00;
    --mpdddd-white-pure: #ffffff;
    --mpdddd-cream-soft: #f5e7da;
    --mpdddd-dark-void: #0d0d0d;
    --mpdddd-dark-space: #1a1a1a;
    --mpdddd-dark-carbon: #222222;
    --mpdddd-dark-obsidian: #181818;
    --mpdddd-gradient-blaze: linear-gradient(135deg, #ff7a00, #ff9533);
    --mpdddd-gradient-shadow: linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(34, 34, 34, 0.92));
    --mpdddd-gradient-glass: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 149, 51, 0.05));
    --mpdddd-shadow-epic: 0 30px 90px rgba(255, 122, 0, 0.4);
    --mpdddd-shadow-depth: 0 25px 70px rgba(0, 0, 0, 0.5);
    --mpdddd-blur-premium: blur(30px);
    --mpdddd-radius-smooth: 25px;
    --mpdddd-transition-silk: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Global Container */
.container-fluid {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0f0f0f);
    color: var(--mpdddd-white-pure);
    font-family: 'Outfit', sans-serif;
    padding: clamp(40px, 6vw, 80px) clamp(15px, 3vw, 30px);
    overflow-x: hidden;
}

/* Animated Background Effects */
.container-fluid::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 122, 0, 0.12), transparent),
        radial-gradient(circle at 70% 80%, rgba(245, 231, 218, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
    animation: mpddddPulseWave 10s ease-in-out infinite;
}

.container-fluid::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.02) 2px, transparent 2px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: mpddddFloatDrift 80s linear infinite;
}

@keyframes mpddddPulseWave {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes mpddddFloatDrift {
    from { transform: rotate(0deg) translateX(0) translateY(0); }
    to { transform: rotate(360deg) translateX(30px) translateY(30px); }
}

/* Header Section */
.mpdddd-header-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 30px);
    margin-bottom: clamp(40px, 6vw, 60px);
    padding: clamp(30px, 5vw, 40px);
    background: var(--mpdddd-gradient-shadow);
    backdrop-filter: var(--mpdddd-blur-premium);
    border-radius: var(--mpdddd-radius-smooth);
    border: 1px solid rgba(255, 122, 0, 0.2);
    box-shadow: var(--mpdddd-shadow-depth);
}

.mpdddd-header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 122, 0, 0.08), transparent);
    border-radius: var(--mpdddd-radius-smooth);
    pointer-events: none;
}

.mpdddd-title-section h2 {
    font-size: clamp(1.8rem, 4vw + 0.5rem, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--mpdddd-white-pure);
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.mpdddd-title-section h2 code {
    background: var(--mpdddd-gradient-blaze);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    padding: 0 8px;
}

.mpdddd-subtitle-text {
    font-size: clamp(0.9rem, 2vw + 0.3rem, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.mpdddd-btn-back {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(12px, 2vw + 5px, 16px) clamp(25px, 4vw, 32px);
    background: rgba(34, 34, 34, 0.8);
    color: var(--mpdddd-white-pure);
    border: 2px solid rgba(255, 122, 0, 0.3);
    border-radius: 15px;
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1rem);
    font-weight: 700;
    cursor: pointer;
    transition: var(--mpdddd-transition-silk);
    text-decoration: none;
    overflow: hidden;
}

.mpdddd-btn-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mpdddd-gradient-blaze);
    transition: left 0.6s;
    z-index: -1;
}

.mpdddd-btn-back:hover::before {
    left: 0;
}

.mpdddd-btn-back:hover {
    border-color: var(--mpdddd-orange-fire);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.4);
}

/* Alert Messages */
.mpdddd-alert {
    position: relative;
    z-index: 10;
    padding: clamp(25px, 4vw, 35px);
    border-radius: var(--mpdddd-radius-smooth);
    margin-bottom: clamp(30px, 5vw, 40px);
    backdrop-filter: var(--mpdddd-blur-premium);
    border: 2px solid;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(0.95rem, 2vw + 0.3rem, 1.1rem);
    font-weight: 600;
    transition: var(--mpdddd-transition-silk);
}

.mpdddd-alert:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mpdddd-alert i {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.mpdddd-alert-warning {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 165, 0, 0.08));
    border-color: rgba(255, 165, 0, 0.4);
    color: #ffa500;
}

.mpdddd-alert-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.08));
    border-color: rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}

.mpdddd-alert-success {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.08));
    border-color: rgba(0, 212, 170, 0.4);
    color: #00d4aa;
}

.mpdddd-alert-danger {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 71, 87, 0.08));
    border-color: rgba(255, 71, 87, 0.4);
    color: #ff4757;
}

/* Main Content Grid */
.mpdddd-content-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(25px, 4vw, 35px);
}

@media screen and (min-width: 992px) {
    .mpdddd-content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Card Styles */
.mpdddd-card {
    position: relative;
    background: var(--mpdddd-gradient-shadow);
    backdrop-filter: var(--mpdddd-blur-premium);
    border-radius: var(--mpdddd-radius-smooth);
    border: 1px solid rgba(255, 122, 0, 0.15);
    box-shadow: var(--mpdddd-shadow-depth);
    overflow: hidden;
    transition: var(--mpdddd-transition-silk);
    margin-bottom: 30px;
}

.mpdddd-card:hover {
    transform: translateY(-8px);
}

.mpdddd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--mpdddd-gradient-blaze);
}

.mpdddd-card-header {
    padding: clamp(25px, 4vw, 35px);
    border-bottom: 1px solid rgba(255, 122, 0, 0.15);
}

.mpdddd-card-header h5 {
    font-size: clamp(1.2rem, 2.5vw + 0.3rem, 1.6rem);
    font-weight: 800;
    color: var(--mpdddd-white-pure);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mpdddd-card-header h5 i {
    color: var(--mpdddd-orange-fire);
    font-size: clamp(1.3rem, 2.8vw, 1.7rem);
}

.mpdddd-card-body {
    padding: clamp(12px, 4vw, 10px);
}

/* Summary Stats */
.mpdddd-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: clamp(25px, 4vw, 35px);
}

.mpdddd-stat-box {
    position: relative;
    padding: clamp(20px, 3vw, 28px);
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    text-align: center;
    border: 2px solid rgba(255, 122, 0, 0.2);
    transition: var(--mpdddd-transition-silk);
    overflow: hidden;
}

.mpdddd-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 122, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.6s;
}

.mpdddd-stat-box:hover::before {
    opacity: 1;
}

.mpdddd-stat-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 70px rgba(255, 122, 0, 0.3);
}

.mpdddd-stat-label {
    display: block;
    font-size: clamp(0.8rem, 1.4vw + 0.3rem, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mpdddd-stat-value {
    font-size: clamp(1.6rem, 3vw + 0.5rem, 2.2rem);
    font-weight: 900;
    margin: 0;
}

.mpdddd-stat-box:nth-child(1) .mpdddd-stat-value {
    color: var(--mpdddd-orange-fire);
}

.mpdddd-stat-box:nth-child(2) .mpdddd-stat-value {
    color: #ff4757;
}

.mpdddd-stat-box:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.1));
    border-color: rgba(0, 212, 170, 0.4);
}

.mpdddd-stat-box:nth-child(3) .mpdddd-stat-value {
    color: #00d4aa;
}

/* Info Table */
.mpdddd-info-table {
    width: 100%;
}

.mpdddd-info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--mpdddd-transition-silk);
}

.mpdddd-info-table tr:hover {
    background: rgba(255, 122, 0, 0.05);
}

.mpdddd-info-table th {
    padding: clamp(12px, 2vw, 16px) 0;
    font-size: clamp(0.9rem, 1.6vw + 0.3rem, 1rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    width: 40%;
}

.mpdddd-info-table td {
    padding: clamp(12px, 2vw, 16px) 0;
    font-size: clamp(0.9rem, 1.6vw + 0.3rem, 1rem);
    font-weight: 600;
    color: var(--mpdddd-white-pure);
}

.mpdddd-info-table code {
    padding: 6px 12px;
    background: rgba(255, 122, 0, 0.15);
    color: var(--mpdddd-orange-fire);
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.95rem);
}

/* Badge in Table */
.mpdddd-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1.3vw + 0.3rem, 0.85rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mpdddd-status-success {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.25), rgba(0, 212, 170, 0.15));
    color: #00d4aa;
    border: 2px solid rgba(0, 212, 170, 0.4);
}

.mpdddd-status-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 212, 255, 0.15));
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.mpdddd-status-danger {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.25), rgba(255, 71, 87, 0.15));
    color: #ff4757;
    border: 2px solid rgba(255, 71, 87, 0.4);
}

.mpdddd-status-warning {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25), rgba(255, 165, 0, 0.15));
    color: #ffa500;
    border: 2px solid rgba(255, 165, 0, 0.4);
}

/* Orders Table */
.mpdddd-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}

.mpdddd-orders-table thead th {
    padding: clamp(15px, 2.5vw, 20px);
    background: rgba(255, 122, 0, 0.12);
    color: var(--mpdddd-orange-fire);
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 122, 0, 0.3);
}

.mpdddd-orders-table tbody tr {
    transition: var(--mpdddd-transition-silk);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mpdddd-orders-table tbody tr:hover {
    background: rgba(255, 122, 0, 0.08);
    transform: translateX(5px);
}

.mpdddd-orders-table tbody td {
    padding: clamp(15px, 2.5vw, 20px);
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.95rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.mpdddd-orders-table tbody td a {
    color: var(--mpdddd-orange-fire);
    text-decoration: none;
    font-weight: 700;
    transition: var(--mpdddd-transition-silk);
}

.mpdddd-orders-table tbody td a:hover {
    color: var(--mpdddd-orange-glow);
    text-shadow: 0 0 15px rgba(255, 122, 0, 0.6);
}

.mpdddd-orders-table tfoot th {
    padding: clamp(15px, 2.5vw, 20px);
    background: rgba(255, 122, 0, 0.08);
    color: var(--mpdddd-white-pure);
    font-size: clamp(0.95rem, 1.8vw + 0.3rem, 1.1rem);
    font-weight: 800;
    text-align: right;
    border-top: 2px solid rgba(255, 122, 0, 0.3);
}

/* Continue to Part 4... */
/* Payment Method Section */
.mpdddd-payment-section {
    position: relative;
}

.mpdddd-payment-icon-wrapper {
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 28px);
    padding: clamp(25px, 4vw, 35px);
    background: var(--mpdddd-gradient-glass);
    border-radius: 20px;
    border: 2px solid rgba(255, 122, 0, 0.2);
}

.mpdddd-payment-icon-wrapper i {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--mpdddd-orange-fire);
    margin-bottom: 15px;
    display: block;
    animation: mpddddPulseIcon 3s ease-in-out infinite;
}

@keyframes mpddddPulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.mpdddd-payment-icon-wrapper h6 {
    font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
    font-weight: 800;
    color: var(--mpdddd-white-pure);
    margin: 0;
}

.mpdddd-payment-details-table {
    width: 100%;
}

.mpdddd-payment-details-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mpdddd-payment-details-table th {
    padding: clamp(12px, 2vw, 15px) 0;
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.95rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    width: 45%;
}

.mpdddd-payment-details-table td {
    padding: clamp(12px, 2vw, 15px) 0;
    font-size: clamp(0.9rem, 1.6vw + 0.3rem, 1rem);
    font-weight: 600;
    color: var(--mpdddd-white-pure);
    text-align: right;
}

.mpdddd-payment-details-table td code {
    padding: 5px 10px;
    background: rgba(255, 122, 0, 0.12);
    color: var(--mpdddd-orange-fire);
    border-radius: 6px;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.9rem);
}

/* Timeline Section */
.mpdddd-timeline-wrapper {
    position: relative;
    padding: clamp(20px, 3vw, 30px) 0;
}

.mpdddd-timeline-list {
    list-style: none;
    padding-left: 0;
    position: relative;
}

.mpdddd-timeline-list::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.6), rgba(255, 122, 0, 0.2));
    border-radius: 3px;
}

.mpdddd-timeline-item {
    position: relative;
    padding-left: 45px;
    padding-bottom: clamp(25px, 4vw, 35px);
    transition: var(--mpdddd-transition-silk);
}

.mpdddd-timeline-item::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(100, 100, 100, 0.5);
    border: 3px solid var(--mpdddd-dark-space);
    transition: var(--mpdddd-transition-silk);
    z-index: 2;
}

.mpdddd-timeline-item.mpdddd-timeline-completed::before {
    background: linear-gradient(135deg, #00d4aa, #01a085);
    box-shadow: 0 0 25px rgba(0, 212, 170, 0.6);
    animation: mpddddPulseGlow 2s ease-in-out infinite;
}

.mpdddd-timeline-item.mpdddd-timeline-failed::before {
    background: linear-gradient(135deg, #ff4757, #e74c3c);
    box-shadow: 0 0 25px rgba(255, 71, 87, 0.6);
}

@keyframes mpddddPulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 170, 0.4); }
    50% { box-shadow: 0 0 35px rgba(0, 212, 170, 0.8); }
}

.mpdddd-timeline-item strong {
    display: block;
    font-size: clamp(1rem, 2vw + 0.3rem, 1.15rem);
    font-weight: 800;
    color: var(--mpdddd-white-pure);
    margin-bottom: 8px;
}

.mpdddd-timeline-item small {
    display: block;
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.95rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Timeline Info Alert */
.mpdddd-timeline-alert {
    position: relative;
    padding: clamp(12px, 3vw, 14px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0.06));
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    margin-top: clamp(20px, 3vw, 30px);
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.95rem);
    color: #00d4ff;
    font-weight: 600;
    margin-left: 15px;
    margin-right: 15px;
}

.mpdddd-timeline-alert i {
    margin-right: 10px;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

/* Responsive Table Wrapper */
.mpdddd-table-responsive {
    overflow-x: auto;
    margin: clamp(8px, 3vw, 10px) 0;
}

.mpdddd-table-responsive::-webkit-scrollbar {
    height: 8px;
}

.mpdddd-table-responsive::-webkit-scrollbar-track {
    background: rgba(24, 24, 24, 0.5);
    border-radius: 10px;
}

.mpdddd-table-responsive::-webkit-scrollbar-thumb {
    background: var(--mpdddd-gradient-blaze);
    border-radius: 10px;
}

.mpdddd-table-responsive::-webkit-scrollbar-thumb:hover {
    background: var(--mpdddd-orange-glow);
}

/* Empty State for Orders */
.mpdddd-empty-orders {
    text-align: center;
    padding: clamp(40px, 6vw, 60px) clamp(15px, 3vw, 20px);
}

.mpdddd-empty-orders i {
    font-size: clamp(3rem, 6vw, 4rem);
    color: rgba(255, 122, 0, 0.3);
    margin-bottom: 20px;
}

.mpdddd-empty-text {
    font-size: clamp(1rem, 2vw + 0.3rem, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Floating Action Button (Optional) */
.mpdddd-fab-print {
    position: fixed;
    bottom: clamp(30px, 5vw, 40px);
    right: clamp(30px, 5vw, 40px);
    width: clamp(55px, 8vw, 65px);
    height: clamp(55px, 8vw, 65px);
    background: var(--mpdddd-gradient-blaze);
    color: var(--mpdddd-white-pure);
    border: none;
    border-radius: 50%;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(255, 122, 0, 0.4);
    transition: var(--mpdddd-transition-silk);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpdddd-fab-print:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 25px 80px rgba(255, 122, 0, 0.6);
}

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
    .mpdddd-content-grid {
        gap: 25px;
    }
    
    .mpdddd-summary-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media screen and (max-width: 992px) {
    .mpdddd-content-grid {
        grid-template-columns: 1fr;
    }
    
    .mpdddd-header-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .mpdddd-btn-back {
        width: 100%;
        justify-content: center;
    }
    
    .mpdddd-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .container-fluid {
        padding: 30px 15px;
    }
    
    .mpdddd-card-header {
        padding: 20px;
    }
    
    .mpdddd-card-body {
        padding: 20px;
    }
    
    .mpdddd-summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mpdddd-info-table th,
    .mpdddd-info-table td {
        display: block;
        width: 100%;
        text-align: left !important;
        padding: 8px 0;
    }
    
    .mpdddd-info-table th {
        font-weight: 700;
        color: var(--mpdddd-orange-fire);
        margin-top: 12px;
    }
    
    .mpdddd-payment-details-table th,
    .mpdddd-payment-details-table td {
        display: block;
        width: 100%;
        text-align: left !important;
    }
    
    .mpdddd-orders-table {
        display: block;
        overflow-x: auto;
    }
    
    .mpdddd-orders-table thead {
        display: none;
    }
    
    .mpdddd-orders-table tbody,
    .mpdddd-orders-table tr,
    .mpdddd-orders-table td {
        display: block;
        width: 100%;
    }
    
    .mpdddd-orders-table tr {
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(34, 34, 34, 0.6);
        border-radius: 12px;
        border: 1px solid rgba(255, 122, 0, 0.15);
    }
    
    .mpdddd-orders-table td {
        position: relative;
        padding-left: 50%;
        text-align: right !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    .mpdddd-orders-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 15px;
        font-weight: 700;
        color: var(--mpdddd-orange-fire);
        text-align: left;
    }
    
    .mpdddd-orders-table td:last-child {
        border-bottom: none;
    }
    
    .mpdddd-orders-table tfoot {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .mpdddd-header-wrapper {
        padding: 20px 15px;
    }
    
    .mpdddd-alert {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .mpdddd-stat-box {
        padding: 18px 15px;
    }
    
    .mpdddd-timeline-item {
        padding-left: 35px;
    }
    
    .mpdddd-timeline-list::before {
        left: 9px;
    }
    
    .mpdddd-timeline-item::before {
        left: 2px;
        width: 16px;
        height: 16px;
    }
    
    .mpdddd-fab-print {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* AOS Animation Enhancements */
[data-aos="fade-up"].mpdddd-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"].mpdddd-animate.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"].mpdddd-animate {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-left"].mpdddd-animate.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"].mpdddd-animate {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-right"].mpdddd-animate.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"].mpdddd-animate {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="zoom-in"].mpdddd-animate.aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Loading State */
.mpdddd-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mpddddFadeIn 0.3s ease;
}

@keyframes mpddddFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mpdddd-spinner-ring {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 122, 0, 0.2);
    border-top-color: var(--mpdddd-orange-fire);
    border-radius: 50%;
    animation: mpddddSpinRotate 1s linear infinite;
}

@keyframes mpddddSpinRotate {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .mpdddd-btn-back,
    .mpdddd-fab-print {
        display: none !important;
    }
    
    .container-fluid::before,
    .container-fluid::after {
        display: none !important;
    }
    
    .mpdddd-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    body {
        background: white !important;
    }
}

/* Selection Styles */
::selection {
    background: var(--mpdddd-orange-fire);
    color: var(--mpdddd-white-pure);
}

::-moz-selection {
    background: var(--mpdddd-orange-fire);
    color: var(--mpdddd-white-pure);
}

/* Focus Styles for Accessibility */
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--mpdddd-orange-fire);
    outline-offset: 3px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Ultra-wide Screen Optimization */
@media screen and (min-width: 1920px) {
    .container-fluid {
        max-width: 1800px;
        margin: 0 auto;
    }
}

.mpdddd-card:hover::after {
    opacity: 0.3;
}

/* Stagger Animation Delays for Multiple Cards */
.mpdddd-card:nth-child(1) { animation-delay: 0.1s; }
.mpdddd-card:nth-child(2) { animation-delay: 0.2s; }
.mpdddd-card:nth-child(3) { animation-delay: 0.3s; }
.mpdddd-card:nth-child(4) { animation-delay: 0.4s; }

/* Final Touch - Micro Interactions */
.mpdddd-card-header:hover h5 i {
    animation: mpddddBounce 0.6s ease;
}

@keyframes mpddddBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Success Confetti Effect (Optional) */
@keyframes mpddddConfetti {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.mpdddd-confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--mpdddd-orange-fire);
    top: -10px;
    animation: mpddddConfetti 3s ease-out forwards;
    z-index: 99999;
}