/* === ULTRA-SUPREME PREMIUM ORDER DETAIL - COMPACT VERSION === */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* Root Variables */
:root {
    --mrdrdddddd-primary-orange: #ff7a00;
    --mrdrdddddd-orange-light: #ff9533;
    --mrdrdddddd-orange-dark: #e66a00;
    --mrdrdddddd-orange-glow: rgba(255, 122, 0, 0.6);
    --mrdrdddddd-white: #ffffff;
    --mrdrdddddd-cream: #f5e7da;
    --mrdrdddddd-dark: #0a0a0a;
    --mrdrdddddd-dark-light: #1a1a1a;
    --mrdrdddddd-dark-medium: #222222;
    --mrdrdddddd-dark-card: #141414;
    --mrdrdddddd-success: #00ffa3;
    --mrdrdddddd-warning: #ffd700;
    --mrdrdddddd-danger: #ff3366;
    --mrdrdddddd-info: #00d4ff;
    --mrdrdddddd-purple: #a855f7;
    --mrdrdddddd-pink: #ff3d9a;
    --mrdrdddddd-gradient-primary: linear-gradient(135deg, #ff7a00 0%, #ff9533 50%, #ffa94d 100%);
    --mrdrdddddd-gradient-glow: linear-gradient(135deg, rgba(255, 122, 0, 0.3), rgba(255, 149, 51, 0.1));
    --mrdrdddddd-gradient-card: linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.95));
    --mrdrdddddd-gradient-success: linear-gradient(135deg, #00ffa3, #00d4aa);
    --mrdrdddddd-gradient-danger: linear-gradient(135deg, #ff3366, #ff6b9d);
    --mrdrdddddd-gradient-info: linear-gradient(135deg, #00d4ff, #0099ff);
    --mrdrdddddd-shadow-mega: 0 30px 80px rgba(255, 122, 0, 0.4);
    --mrdrdddddd-shadow-card: 0 15px 50px rgba(0, 0, 0, 0.6);
    --mrdrdddddd-shadow-glow: 0 0 40px rgba(255, 122, 0, 0.3);
    --mrdrdddddd-border-radius: 20px;
    --mrdrdddddd-transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --mrdrdddddd-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Wrapper - COMPACT */
.mrdrdddddd-order-detail-wrapper {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(ellipse at top, #1a1a1a, #0a0a0a),
                radial-gradient(ellipse at bottom, #0d0d0d, #000000);
    color: var(--mrdrdddddd-white);
    font-family: "Inter", sans-serif;
    padding: clamp(20px, 3vw, 40px) 0;
    overflow-x: hidden;
}

/* Gradient Overlay with Animation */
.mrdrdddddd-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 163, 0.06), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: mrdrddddddGradientShift 15s ease infinite;
}

/* Container - COMPACT */
.mrdrdddddd-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(15px, 2.5vw, 35px);
}

/* ============= ULTRA PREMIUM PAGE HEADER - COMPACT ============= */
.mrdrdddddd-page-header {
    position: relative;
    margin-top: clamp(20px, 3vw, 35px);
    margin-bottom: clamp(20px, 3vw, 35px);
    padding: clamp(20px, 3vw, 35px);
    background: var(--mrdrdddddd-gradient-card);
    backdrop-filter: blur(30px);
    border-radius: var(--mrdrdddddd-border-radius);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        var(--mrdrdddddd-shadow-card),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 122, 0, 0.2);
    overflow: hidden;
    animation: mrdrddddddFadeInUp 0.8s ease-out;
}

.mrdrdddddd-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.1), transparent);
    animation: mrdrddddddShine 3s infinite;
}

.mrdrdddddd-header-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 122, 0, 0.15), transparent 30%);
    animation: mrdrddddddRotate 20s linear infinite;
}

.mrdrdddddd-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.mrdrdddddd-header-left h2 {
    font-size: clamp(1.8rem, 4vw + 0.5rem, 2.8rem);
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #ff9533 50%, #ff7a00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    animation: mrdrddddddTextGlow 3s ease-in-out infinite;
}

.mrdrdddddd-header-left p {
    font-size: clamp(0.9rem, 1.8vw + 0.3rem, 1rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mrdrdddddd-header-left p i {
    color: var(--mrdrdddddd-primary-orange);
}

.mrdrdddddd-btn-back {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 2vw + 4px, 14px) clamp(20px, 3vw + 8px, 30px);
    background: rgba(255, 255, 255, 0.03);
    color: var(--mrdrdddddd-white);
    border: 2px solid rgba(255, 122, 0, 0.4);
    border-radius: 16px;
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1rem);
    font-weight: 700;
    text-decoration: none;
    transition: var(--mrdrdddddd-transition);
    overflow: hidden;
}

.mrdrdddddd-btn-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mrdrdddddd-gradient-primary);
    transition: var(--mrdrdddddd-transition);
    z-index: -1;
}

.mrdrdddddd-btn-back:hover::before {
    left: 0;
}

.mrdrdddddd-btn-back:hover {
    color: var(--mrdrdddddd-white);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(255, 122, 0, 0.5),
        0 0 0 1px rgba(255, 122, 0, 0.8);
    border-color: transparent;
}

/* ============= ULTRA PREMIUM CARD STYLES - COMPACT ============= */
.mrdrdddddd-card {
    position: relative;
    background: var(--mrdrdddddd-gradient-card);
    backdrop-filter: blur(30px);
    border-radius: var(--mrdrdddddd-border-radius);
    border: 2px solid rgba(255, 122, 0, 0.8);
    background-clip: padding-box;
    margin-bottom: clamp(18px, 3vw, 28px);
    overflow: hidden;
    transition: var(--mrdrdddddd-transition);
}

.mrdrdddddd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mrdrdddddd-gradient-primary);
    opacity: 0;
    transition: var(--mrdrdddddd-transition-smooth);
}

.mrdrdddddd-card:hover::before {
    opacity: 1;
}

.mrdrdddddd-card:hover {
    transform: translateY(-8px) scale(1.005);
    border-color: rgba(255, 122, 0, 0.8);
}

.mrdrdddddd-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--mrdrdddddd-transition-smooth);
    pointer-events: none;
}

.mrdrdddddd-card:hover .mrdrdddddd-card-glow {
    opacity: 1;
    animation: mrdrddddddPulseGlow 2s ease-in-out infinite;
}

.mrdrdddddd-card-header {
    padding: clamp(18px, 3vw, 25px);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 149, 51, 0.04));
    position: relative;
}

.mrdrdddddd-card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mrdrdddddd-gradient-primary);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mrdrdddddd-card:hover .mrdrdddddd-card-header::after {
    width: 100%;
}

.mrdrdddddd-card-header h5 {
    font-size: clamp(1.1rem, 2.2vw + 0.3rem, 1.35rem);
    font-weight: 800;
    color: var(--mrdrdddddd-white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.mrdrdddddd-card-header h5 i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mrdrdddddd-gradient-primary);
    border-radius: 12px;
    font-size: 1.2em;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
    animation: mrdrddddddIconBounce 2s ease-in-out infinite;
}

.mrdrdddddd-card-body {
    padding: clamp(18px, 3vw, 28px);
}

/* ============= MEGA ADVANCED TIMELINE - COMPACT ============= */
.mrdrdddddd-timeline {
    position: relative;
    padding-left: 45px;
}

.mrdrdddddd-timeline-item {
    position: relative;
    padding-bottom: 30px;
    transition: var(--mrdrdddddd-transition);
}

.mrdrdddddd-timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 38px;
    width: 3px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, 
        rgba(255, 122, 0, 0.1), 
        rgba(255, 122, 0, 0.05),
        transparent);
    border-radius: 10px;
}

.mrdrdddddd-timeline-item.mrdrdddddd-active:not(:last-child)::before {
    background: linear-gradient(180deg, 
        rgba(255, 122, 0, 0.8), 
        rgba(255, 149, 51, 0.6),
        rgba(255, 169, 77, 0.3));
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
    animation: mrdrddddddLineGlow 2s ease-in-out infinite;
}

.mrdrdddddd-timeline-marker {
    position: absolute;
    left: -39px;
    top: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.9);
    border: 3px solid rgba(255, 122, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: var(--mrdrdddddd-transition);
    z-index: 2;
}

.mrdrdddddd-timeline-marker::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--mrdrdddddd-gradient-primary);
    opacity: 0;
    transform: scale(0);
    transition: var(--mrdrdddddd-transition);
    z-index: -1;
}

.mrdrdddddd-timeline-item.mrdrdddddd-active .mrdrdddddd-timeline-marker {
    background: var(--mrdrdddddd-gradient-primary);
    border-color: rgba(255, 122, 0, 0.8);
    color: var(--mrdrdddddd-white);
    box-shadow: 
        0 0 25px rgba(255, 122, 0, 0.7),
        0 0 50px rgba(255, 122, 0, 0.3);
    transform: scale(1.12);
    animation: mrdrddddddMarkerPulse 2s ease-in-out infinite;
}

.mrdrdddddd-timeline-item.mrdrdddddd-active .mrdrdddddd-timeline-marker::before {
    opacity: 0.3;
    transform: scale(1.4);
    animation: mrdrddddddRipple 2s ease-out infinite;
}

.mrdrdddddd-timeline-content {
    background: rgba(255, 122, 0, 0.05);
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 122, 0, 0.1);
    transition: var(--mrdrdddddd-transition-smooth);
}

.mrdrdddddd-timeline-item.mrdrdddddd-active .mrdrdddddd-timeline-content {
    background: rgba(255, 122, 0, 0.12);
    border-color: rgba(255, 122, 0, 0.3);
}

.mrdrdddddd-timeline-content h6 {
    margin-bottom: 6px;
    font-weight: 800;
    font-size: clamp(0.95rem, 1.8vw + 0.3rem, 1.05rem);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.3px;
}

.mrdrdddddd-timeline-item.mrdrdddddd-active .mrdrdddddd-timeline-content h6 {
    color: var(--mrdrdddddd-white);
    text-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
}

.mrdrdddddd-timeline-content p {
    margin: 0;
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mrdrdddddd-timeline-content p i {
    color: var(--mrdrdddddd-primary-orange);
}

/* ============= ULTRA PREMIUM UPDATE STATUS FORM - COMPACT ============= */
.mrdrdddddd-update-status {
    margin-top: 20px;
    padding: clamp(18px, 3vw, 25px);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 149, 51, 0.08));
    border-radius: 16px;
    border: 2px solid rgba(255, 122, 0, 0.3);
    box-shadow: 
        0 12px 40px rgba(255, 122, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: mrdrddddddFadeInUp 0.8s ease-out 0.4s both;
}

.mrdrdddddd-form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: end;
}

.mrdrdddddd-form-col-8 {
    flex: 1;
    min-width: 260px;
}

.mrdrdddddd-form-col-4 {
    flex: 0 0 auto;
    min-width: 160px;
}

.mrdrdddddd-form-select {
    width: 100%;
    padding: clamp(12px, 2vw + 4px, 14px) clamp(16px, 2.5vw, 20px);
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid rgba(255, 122, 0, 0.4);
    border-radius: 14px;
    color: var(--mrdrdddddd-white);
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--mrdrdddddd-transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mrdrdddddd-form-select:focus {
    outline: none;
    border-color: var(--mrdrdddddd-primary-orange);
    box-shadow: 
        0 0 25px rgba(255, 122, 0, 0.4),
        0 4px 20px rgba(255, 122, 0, 0.3);
    transform: translateY(-2px);
}

.mrdrdddddd-form-select option {
    background: var(--mrdrdddddd-dark-card);
    color: var(--mrdrdddddd-white);
    padding: 12px;
}

.mrdrdddddd-btn-primary {
    position: relative;
    width: 100%;
    padding: clamp(12px, 2vw + 4px, 14px) clamp(20px, 3vw + 8px, 28px);
    background: var(--mrdrdddddd-gradient-primary);
    color: var(--mrdrdddddd-white);
    border: none;
    border-radius: 14px;
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 0.95rem);
    font-weight: 800;
    cursor: pointer;
    transition: var(--mrdrdddddd-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.4);
}

.mrdrdddddd-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mrdrdddddd-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.mrdrdddddd-btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(255, 122, 0, 0.5),
        0 0 50px rgba(255, 122, 0, 0.3);
}

/* ============= ULTRA PREMIUM CAR DETAILS - COMPACT ============= */
.mrdrdddddd-car-details-row {
    display: flex;
    gap: clamp(20px, 3vw, 30px);
    flex-wrap: wrap;
}

.mrdrdddddd-car-image-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
}

.mrdrdddddd-car-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(255, 122, 0, 0.3);
}

.mrdrdddddd-car-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), transparent);
    opacity: 0;
    transition: var(--mrdrdddddd-transition-smooth);
    z-index: 1;
}

.mrdrdddddd-car-image-wrapper:hover::before {
    opacity: 1;
}

.mrdrdddddd-car-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--mrdrdddddd-transition);
}

.mrdrdddddd-car-image-wrapper:hover .mrdrdddddd-car-image {
    transform: scale(1.08) rotate(1deg);
}

.mrdrdddddd-car-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    background: var(--mrdrdddddd-gradient-primary);
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
    z-index: 2;
    animation: mrdrddddddBadgePulse 2s ease-in-out infinite;
}

.mrdrdddddd-car-info-col {
    flex: 1;
    min-width: 280px;
}

.mrdrdddddd-car-title {
    font-size: clamp(1.4rem, 2.8vw + 0.5rem, 1.8rem);
    font-weight: 900;
    color: var(--mrdrdddddd-white);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, #ffffff, #ff9533);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mrdrdddddd-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.mrdrdddddd-info-table tr {
    transition: var(--mrdrdddddd-transition-smooth);
    background: rgba(255, 122, 0, 0.03);
    border-radius: 10px;
}

.mrdrdddddd-info-table tr:hover {
    background: rgba(255, 122, 0, 0.08);
    transform: translateX(6px);
    box-shadow: 0 4px 18px rgba(255, 122, 0, 0.15);
}

.mrdrdddddd-info-table th {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.9rem);
    padding: 10px 16px;
    text-align: left;
    width: 35%;
    border-radius: 10px 0 0 10px;
}

.mrdrdddddd-info-table td {
    font-weight: 600;
    color: var(--mrdrdddddd-white);
    font-size: clamp(0.9rem, 1.7vw + 0.3rem, 0.95rem);
    padding: 10px 16px;
    border-radius: 0 10px 10px 0;
}

/* ============= ULTRA PREMIUM NOTES SECTION - COMPACT ============= */
.mrdrdddddd-note-form {
    margin-bottom: 20px;
}

.mrdrdddddd-note-input-group {
    display: flex;
    gap: 12px;
    align-items: start;
}

.mrdrdddddd-note-textarea {
    flex: 1;
    padding: 14px 18px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid white;
    border-radius: 16px;
    color: var(--mrdrdddddd-white);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    resize: vertical;
    min-height: 80px;
    transition: var(--mrdrdddddd-transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mrdrdddddd-note-textarea:focus {
    outline: none;
    border-color: var(--mrdrdddddd-primary-orange);
    box-shadow: 
        0 0 25px rgba(255, 122, 0, 0.4),
        0 4px 20px rgba(255, 122, 0, 0.3);
    transform: translateY(-2px);
}

.mrdrdddddd-note-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.mrdrdddddd-btn-add-note {
    padding: 14px 24px;
    background: var(--mrdrdddddd-gradient-primary);
    color: var(--mrdrdddddd-white);
    border: none;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--mrdrdddddd-transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mrdrdddddd-btn-add-note:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(255, 122, 0, 0.5),
        0 0 35px rgba(255, 122, 0, 0.3);
}

.mrdrdddddd-notes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mrdrdddddd-note-item {
    position: relative;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 149, 51, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(255, 122, 0, 0.2);
    transition: var(--mrdrdddddd-transition);
    overflow: hidden;
}

.mrdrdddddd-note-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--mrdrdddddd-gradient-primary);
    transform: scaleY(0);
    transition: var(--mrdrdddddd-transition-smooth);
}

.mrdrdddddd-note-item:hover::before {
    transform: scaleY(1);
}

.mrdrdddddd-note-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.25);
    border-color: rgba(255, 122, 0, 0.35);
}

.mrdrdddddd-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.mrdrdddddd-note-author {
    font-weight: 800;
    color: var(--mrdrdddddd-primary-orange);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mrdrdddddd-note-author i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mrdrdddddd-gradient-primary);
    border-radius: 50%;
    font-size: 0.7rem;
}

.mrdrdddddd-note-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.mrdrdddddd-note-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mrdrdddddd-no-notes {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: 600;
}

.mrdrdddddd-no-notes i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: rgba(255, 122, 0, 0.3);
}

/* ============= ULTRA PREMIUM ORDER SUMMARY - COMPACT ============= */
.mrdrdddddd-summary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.mrdrdddddd-summary-table tr {
    transition: var(--mrdrdddddd-transition-smooth);
    background: rgba(255, 122, 0, 0.03);
    border-radius: 10px;
}

.mrdrdddddd-summary-table tr:hover {
    background: rgba(255, 122, 0, 0.08);
    transform: scale(1.015);
}

.mrdrdddddd-summary-table th {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 0.9rem);
    padding: 10px 12px;
    text-align: left;
    border-radius: 10px 0 0 10px;
}

.mrdrdddddd-summary-table td {
    font-weight: 600;
    color: var(--mrdrdddddd-white);
    font-size: clamp(0.9rem, 1.7vw + 0.3rem, 0.95rem);
    padding: 10px 12px;
    text-align: right;
    border-radius: 0 10px 10px 0;
}

.mrdrdddddd-summary-table .mrdrdddddd-border-top {
    border-top: 2px solid rgba(255, 122, 0, 0.4);
}

.mrdrdddddd-summary-table .mrdrdddddd-text-danger {
    color: var(--mrdrdddddd-danger);
    font-weight: 700;
}

.mrdrdddddd-summary-table .mrdrdddddd-text-success {
    color: var(--mrdrdddddd-success);
    font-size: clamp(1.05rem, 1.9vw + 0.3rem, 1.2rem);
    font-weight: 900;
    text-shadow: 0 0 18px rgba(0, 255, 163, 0.4);
}

/* ============= MEGA PREMIUM BADGES - COMPACT ============= */
.mrdrdddddd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.2vw + 0.3rem, 0.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mrdrdddddd-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
}

.mrdrdddddd-badge:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.mrdrdddddd-badge-success {
    background: var(--mrdrdddddd-gradient-success);
    color: #ffffff;
    border: 1px solid rgba(0, 255, 163, 0.5);
    box-shadow: 0 6px 20px rgba(0, 255, 163, 0.4);
}

.mrdrdddddd-badge-warning {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mrdrdddddd-badge-danger {
    background: var(--mrdrdddddd-gradient-danger);
    color: #ffffff;
    border: 1px solid rgba(255, 51, 102, 0.5);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

.mrdrdddddd-badge-info {
    background: var(--mrdrdddddd-gradient-info);
    color: #ffffff;
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* ============= ULTRA PREMIUM CONTACT BUTTONS - COMPACT ============= */
.mrdrdddddd-customer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.mrdrdddddd-btn-contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--mrdrdddddd-transition);
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    overflow: hidden;
}

.mrdrdddddd-btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mrdrdddddd-btn-contact:hover::before {
    width: 350px;
    height: 350px;
}

.mrdrdddddd-btn-email {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.1));
    color: var(--mrdrdddddd-info);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.mrdrdddddd-btn-email::before {
    background: var(--mrdrdddddd-gradient-info);
}

.mrdrdddddd-btn-email:hover {
    color: var(--mrdrdddddd-white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 18px 50px rgba(0, 212, 255, 0.4),
        0 0 35px rgba(0, 212, 255, 0.3);
}

.mrdrdddddd-btn-phone {
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.2), rgba(0, 212, 170, 0.1));
    color: var(--mrdrdddddd-success);
    border-color: rgba(0, 255, 163, 0.4);
    box-shadow: 0 8px 25px rgba(0, 255, 163, 0.2);
}

.mrdrdddddd-btn-phone::before {
    background: var(--mrdrdddddd-gradient-success);
}

.mrdrdddddd-btn-phone:hover {
    color: var(--mrdrdddddd-white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 18px 50px rgba(0, 255, 163, 0.4),
        0 0 35px rgba(0, 255, 163, 0.3);
}

/* ============= LAYOUT GRID - COMPACT ============= */
.mrdrdddddd-row {
    display: flex;
    gap: clamp(18px, 3vw, 28px);
    flex-wrap: wrap;
}

.mrdrdddddd-col-left {
    flex: 1;
    min-width: 300px;
}

.mrdrdddddd-col-right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
}

/* ============= MEGA ANIMATIONS ============= */
@keyframes mrdrddddddFloatComplex {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

@keyframes mrdrddddddPulseMega {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

@keyframes mrdrddddddRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes mrdrddddddGradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes mrdrddddddFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mrdrddddddShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes mrdrddddddTextGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 18px rgba(255, 122, 0, 0.3));
    }
    50% {
        filter: brightness(1.15) drop-shadow(0 0 35px rgba(255, 122, 0, 0.5));
    }
}

@keyframes mrdrddddddIconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes mrdrddddddLineGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 122, 0, 0.7);
    }
}

@keyframes mrdrddddddMarkerPulse {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(255, 122, 0, 0.6),
            0 0 50px rgba(255, 122, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 35px rgba(255, 122, 0, 0.8),
            0 0 70px rgba(255, 122, 0, 0.4);
    }
}

@keyframes mrdrddddddRipple {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

@keyframes mrdrddddddPulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes mrdrddddddBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

/* ============= RESPONSIVE DESIGN ============= */

/* Large Desktop (1600px+) */
@media screen and (min-width: 1600px) {
    .mrdrdddddd-col-right {
        max-width: 460px;
    }
}

/* Desktop (1200px - 1599px) */
@media screen and (max-width: 1599px) {
    .mrdrdddddd-col-right {
        max-width: 400px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media screen and (max-width: 1199px) {
    .mrdrdddddd-row {
        flex-direction: column;
    }
    
    .mrdrdddddd-col-right {
        max-width: 100%;
    }
    
    .mrdrdddddd-header-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Tablet Portrait (768px - 991px) */
@media screen and (max-width: 991px) {
    .mrdrdddddd-car-details-row {
        flex-direction: column;
    }
    
    .mrdrdddddd-car-image-col {
        max-width: 100%;
    }
    
    .mrdrdddddd-timeline {
        padding-left: 38px;
    }
    
    .mrdrdddddd-timeline-marker {
        left: -35px;
        width: 35px;
        height: 35px;
    }
    
    .mrdrdddddd-timeline-item:not(:last-child)::before {
        left: -26px;
    }
}

/* Mobile Landscape (640px - 767px) */
@media screen and (max-width: 767px) {
    .mrdrdddddd-form-row {
        flex-direction: column;
    }
    
    .mrdrdddddd-form-col-8,
    .mrdrdddddd-form-col-4 {
        min-width: 100%;
    }
    
    .mrdrdddddd-note-input-group {
        flex-direction: column;
    }
    
    .mrdrdddddd-info-table th {
        width: 45%;
    }
}

/* Mobile Portrait (< 640px) */
@media screen and (max-width: 639px) {
    .mrdrdddddd-page-header {
        padding: 18px;
    }
    
    .mrdrdddddd-timeline {
        padding-left: 32px;
    }
    
    .mrdrdddddd-timeline-marker {
        left: -30px;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .mrdrdddddd-timeline-item:not(:last-child)::before {
        left: -22px;
        width: 2.5px;
    }
    
    .mrdrdddddd-note-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* High Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .mrdrdddddd-particles-container,
    .mrdrdddddd-gradient-overlay,
    .mrdrdddddd-btn-back,
    .mrdrdddddd-update-status,
    .mrdrdddddd-customer-buttons {
        display: none !important;
    }

    .mrdrdddddd-order-detail-wrapper {
        background: white !important;
        color: black !important;
    }

    .mrdrdddddd-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
}