/* ============================================
   DMX.ESHOP - PREMIUM DESIGN SYSTEM v2.0
   UNLEASHED EDITION - Full Creative Freedom
   Modern, Bold, Premium E-Commerce Experience
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */

:root {
    /* === Color Palette === */
    /* Primary Navy Scale (8 shades) */
    --color-navy-900: #0a1628;
    --color-navy-800: #0f1a30;
    --color-navy-700: #1a2744;
    --color-navy-600: #2d3f60;
    --color-navy-500: #4a6180;
    --color-navy-400: #6b839f;
    --color-navy-300: #8fa3bb;
    --color-navy-200: #b3c3d5;
    --color-navy-100: #d7e1eb;

    /* Secondary Orange Scale (8 shades) - More vibrant */
    --color-orange-900: #7a2d0a;
    --color-orange-800: #a33b0e;
    --color-orange-700: #c44a14;
    --color-orange-600: #e85a1e;
    --color-orange-500: #ff6b35;
    --color-orange-400: #ff8c5a;
    --color-orange-300: #ffad80;
    --color-orange-200: #ffceb0;
    --color-orange-100: #fff0e6;

    /* Tertiary Beige/Gold Scale */
    --color-beige-900: #5a5040;
    --color-beige-800: #7a7060;
    --color-beige-700: #a09080;
    --color-beige-600: #c9b896;
    --color-beige-500: #d8cdb0;
    --color-beige-400: #e8e4de;
    --color-beige-300: #f2f0eb;
    --color-beige-200: #f7f5f0;
    --color-beige-100: #fdfcfa;

    /* Accent Colors - Electric */
    --color-electric-blue: #00d4ff;
    --color-electric-purple: #a855f7;
    --color-electric-pink: #ec4899;
    --color-electric-green: #10b981;

    /* Semantic Colors */
    --color-success: #10b981;
    --color-success-light: #d1fae5;
    --color-warning: #f59e0b;
    --color-warning-light: #fef3c7;
    --color-error: #ef4444;
    --color-error-light: #fee2e2;
    --color-info: #3b82f6;
    --color-info-light: #dbeafe;

    /* === Spacing Scale (8pt base) === */
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;

    /* === Animation Timing === */
    --duration-instant: 100ms;
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
    --duration-slower: 600ms;
    --duration-slowest: 800ms;

    /* Easing Functions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* === Border Radius === */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* === Shadows - Layered for Depth === */
    --shadow-xs: 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-sm: 0 2px 4px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08), 0 2px 4px rgba(10, 22, 40, 0.04);
    --shadow-lg: 0 8px 24px rgba(10, 22, 40, 0.12), 0 4px 8px rgba(10, 22, 40, 0.06);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.16), 0 8px 16px rgba(10, 22, 40, 0.08);
    --shadow-2xl: 0 24px 64px rgba(10, 22, 40, 0.20), 0 12px 24px rgba(10, 22, 40, 0.10);
    --shadow-inner: inset 0 2px 4px rgba(10, 22, 40, 0.06);

    /* Glow Shadows */
    --shadow-glow-orange: 0 0 20px rgba(232, 90, 30, 0.3), 0 0 40px rgba(232, 90, 30, 0.15);
    --shadow-glow-blue: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.15);
    --shadow-glow-purple: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 40px rgba(168, 85, 247, 0.15);

    /* === Gradients === */
    --gradient-hero: linear-gradient(135deg, var(--color-navy-800) 0%, var(--color-navy-900) 50%, #0d1520 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(232, 90, 30, 0.15) 0%, rgba(168, 85, 247, 0.1) 50%, transparent 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.95) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-orange: linear-gradient(135deg, var(--color-orange-600) 0%, var(--color-orange-500) 100%);
    --gradient-navy: linear-gradient(135deg, var(--color-navy-700) 0%, var(--color-navy-800) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(232, 90, 30, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(0, 212, 255, 0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(168, 85, 247, 0.1) 0px, transparent 50%);

    /* === Blur Values === */
    --blur-sm: 4px;
    --blur-md: 8px;
    --blur-lg: 16px;
    --blur-xl: 24px;
}

/* ============================================
   BASE STYLES & RESET ENHANCEMENTS
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-navy-800);
    background: var(--color-beige-200);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Selection styling */
::selection {
    background: var(--color-orange-500);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-beige-300);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-navy-500), var(--color-navy-600));
    border-radius: var(--radius-full);
    border: 2px solid var(--color-beige-300);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-orange-500), var(--color-orange-600));
}

/* === Links === */
a, .btn-link {
    color: var(--color-orange-600);
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
}

a:hover, .btn-link:hover {
    color: var(--color-orange-500);
}

/* Fancy underline effect */
a:not(.mud-button-root):not(.mud-nav-link):not(.mud-link)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange-500), var(--color-orange-400));
    transition: width var(--duration-normal) var(--ease-out);
}

a:not(.mud-button-root):not(.mud-nav-link):not(.mud-link):hover::after {
    width: 100%;
}

/* === Focus States === */
*:focus-visible {
    outline: 2px solid var(--color-orange-500);
    outline-offset: 2px;
}

h1:focus {
    outline: none;
}

/* === Form Validation === */
.valid.modified:not([type=checkbox]) {
    outline: 2px solid var(--color-success);
    outline-offset: -2px;
}

.invalid {
    outline: 2px solid var(--color-error);
    outline-offset: -2px;
}

.validation-message {
    color: var(--color-error);
    font-size: 0.75rem;
    margin-top: var(--space-1);
    animation: shake 0.4s var(--ease-out);
}

/* === Error Boundary === */
.blazor-error-boundary {
    background: linear-gradient(135deg, var(--color-error) 0%, #dc2626 100%);
    padding: var(--space-4) var(--space-4) var(--space-4) var(--space-12);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.blazor-error-boundary::before {
    content: '!';
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.blazor-error-boundary::after {
    content: "Something went wrong. Please try again.";
}

/* ============================================
   KEYFRAME ANIMATIONS - THE FUN STUFF
   ============================================ */

/* Basic Fades */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scale & Pop */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Continuous Animations */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }
    50% {
        transform: scale(1.02);
        box-shadow: var(--shadow-xl);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(-10px) translateX(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Attention Grabbers */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

/* Glow Effects */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--color-orange-500), 0 0 10px var(--color-orange-500), 0 0 15px var(--color-orange-500);
    }
    50% {
        box-shadow: 0 0 10px var(--color-orange-500), 0 0 20px var(--color-orange-500), 0 0 30px var(--color-orange-500);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 90, 30, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(232, 90, 30, 0);
    }
}

/* Gradient Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes rainbowBorder {
    0% {
        border-color: var(--color-orange-500);
    }
    25% {
        border-color: var(--color-electric-purple);
    }
    50% {
        border-color: var(--color-electric-blue);
    }
    75% {
        border-color: var(--color-electric-green);
    }
    100% {
        border-color: var(--color-orange-500);
    }
}

/* Morphing */
@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Page Transitions */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Reveal Animations */
@keyframes revealFromBottom {
    from {
        clip-path: inset(100% 0 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes revealFromLeft {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ============================================
   ANIMATION UTILITY CLASSES
   ============================================ */

.animate-fade-in {
    animation: fadeIn var(--duration-normal) var(--ease-out) both;
}

.animate-fade-in-up {
    animation: fadeInUp var(--duration-slow) var(--ease-out) both;
}

.animate-fade-in-down {
    animation: fadeInDown var(--duration-slow) var(--ease-out) both;
}

.animate-fade-in-left {
    animation: fadeInLeft var(--duration-slow) var(--ease-out) both;
}

.animate-fade-in-right {
    animation: fadeInRight var(--duration-slow) var(--ease-out) both;
}

.animate-fade-in-scale {
    animation: fadeInScale var(--duration-slow) var(--ease-out) both;
}

.animate-scale-in {
    animation: scaleIn var(--duration-fast) var(--ease-out-back) both;
}

.animate-pop-in {
    animation: popIn var(--duration-slow) var(--ease-out-back) both;
}

.animate-bounce-in {
    animation: bounceIn var(--duration-slower) var(--ease-out) both;
}

.animate-shimmer {
    background: linear-gradient(
        90deg,
        var(--color-beige-300) 0%,
        var(--color-beige-100) 50%,
        var(--color-beige-300) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-breathe {
    animation: breathe 4s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-spin-slow {
    animation: spinSlow 3s linear infinite;
}

.animate-bounce {
    animation: bounce 1s ease-in-out infinite;
}

.animate-wiggle {
    animation: wiggle 1s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.animate-morph {
    animation: morphBlob 8s ease-in-out infinite;
}

/* Staggered delays */
.stagger-1 { animation-delay: 0ms; }
.stagger-2 { animation-delay: 75ms; }
.stagger-3 { animation-delay: 150ms; }
.stagger-4 { animation-delay: 225ms; }
.stagger-5 { animation-delay: 300ms; }
.stagger-6 { animation-delay: 375ms; }
.stagger-7 { animation-delay: 450ms; }
.stagger-8 { animation-delay: 525ms; }
.stagger-9 { animation-delay: 600ms; }
.stagger-10 { animation-delay: 675ms; }
.stagger-11 { animation-delay: 750ms; }
.stagger-12 { animation-delay: 825ms; }

/* Hover triggers */
.hover-float:hover {
    transform: translateY(-8px);
    transition: transform var(--duration-normal) var(--ease-out);
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform var(--duration-normal) var(--ease-out);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow-orange);
    transition: box-shadow var(--duration-normal) var(--ease-out);
}

.hover-rotate:hover {
    transform: rotate(5deg);
    transition: transform var(--duration-normal) var(--ease-out-back);
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   GLASSMORPHISM & SPECIAL EFFECTS
   ============================================ */

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(15, 26, 48, 0.8);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-orange {
    background: rgba(232, 90, 30, 0.1);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border: 1px solid rgba(232, 90, 30, 0.2);
}

.gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--color-orange-500), var(--color-electric-purple), var(--color-electric-blue));
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

.neon-text {
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
}

.neon-border {
    box-shadow: 0 0 5px var(--color-orange-500),
                0 0 10px var(--color-orange-500),
                inset 0 0 5px var(--color-orange-500);
}

/* ============================================
   MUDBLAZOR COMPONENT OVERRIDES
   ============================================ */

/* === Cards / Paper === */
.mud-paper {
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.mud-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* === Buttons - Make them POP === */
.mud-button-root {
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Ripple effect enhancement */
.mud-button-root::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.mud-button-root:hover::before {
    opacity: 1;
}

.mud-button-filled-primary {
    background: var(--gradient-navy) !important;
    color: white !important;
    box-shadow: var(--shadow-md);
}

.mud-button-filled-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(26, 39, 68, 0.3);
}

.mud-button-filled-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.mud-button-filled-primary .mud-button-label,
.mud-button-filled-primary .mud-icon-root {
    color: white !important;
}

.mud-button-filled-secondary {
    background: var(--gradient-orange) !important;
    color: white !important;
    box-shadow: var(--shadow-md);
}

.mud-button-filled-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-orange);
}

.mud-button-filled-secondary:active {
    transform: translateY(0);
}

.mud-button-filled-secondary .mud-button-label,
.mud-button-filled-secondary .mud-icon-root {
    color: white !important;
}

.mud-button-outlined {
    border-width: 2px;
    transition: all var(--duration-fast) var(--ease-out);
}

.mud-button-outlined:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Large CTA buttons */
.mud-button-size-large {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
}

/* === Text Fields / Inputs === */
.mud-input-outlined .mud-input-outlined-border {
    border-radius: var(--radius-md);
    border-width: 2px;
    transition: all var(--duration-fast) var(--ease-out);
}

.mud-input-outlined:hover .mud-input-outlined-border {
    border-color: var(--color-navy-400);
}

.mud-input-outlined.mud-input-focused .mud-input-outlined-border {
    border-color: var(--color-orange-500);
    box-shadow: 0 0 0 3px rgba(232, 90, 30, 0.15);
}

/* === Chips === */
.mud-chip {
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--duration-fast) var(--ease-out);
}

.mud-chip:hover {
    transform: scale(1.05);
}

.mud-chip.animate-scale-in {
    animation: popIn var(--duration-normal) var(--ease-out-back);
}

/* === Tables === */
.mud-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mud-table-container {
    border-radius: var(--radius-lg);
}

.mud-table-row {
    transition: all var(--duration-fast) var(--ease-out);
}

.mud-table-row:hover {
    background: linear-gradient(90deg, var(--color-beige-300), var(--color-beige-200)) !important;
    transform: scale(1.01);
}

.mud-table-head .mud-table-cell {
    background: var(--gradient-navy);
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

/* Table header text - sortable columns */
.mud-table-head .mud-table-cell .mud-table-sort-label,
.mud-table-head .mud-table-cell .mud-table-sort-label span,
.mud-table-head .mud-table-cell .mud-table-sort-label-icon {
    color: white !important;
}

/* Table header text - non-sortable and plain th elements */
.mud-table-head th,
.mud-table-head .mud-table-cell {
    color: white !important;
}

/* === Dialogs === */
.mud-dialog {
    border-radius: var(--radius-xl);
    animation: popIn var(--duration-slow) var(--ease-out-back);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-beige-400);
}

.mud-dialog .mud-dialog-title {
    background: var(--gradient-navy);
    color: white;
    padding: var(--space-6);
    font-weight: 600;
}

.mud-dialog .mud-dialog-content {
    padding: var(--space-6);
}

.mud-dialog .mud-dialog-actions {
    padding: var(--space-4) var(--space-6);
    background: var(--color-beige-200);
    gap: var(--space-3);
}

/* === Snackbar === */
.mud-snackbar {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: slideInFromRight var(--duration-slow) var(--ease-out-back);
}

/* === Pagination === */
.mud-pagination .mud-pagination-item {
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
}

.mud-pagination .mud-pagination-item:hover {
    transform: scale(1.1);
}

.mud-pagination .mud-pagination-item.mud-pagination-selected {
    background: var(--gradient-orange);
    box-shadow: var(--shadow-glow-orange);
}

/* === App Bar === */
.mud-appbar {
    transition: all var(--duration-normal) var(--ease-out);
}

/* === Drawer (Admin Sidebar) === */
.mud-drawer {
    background: var(--gradient-hero) !important;
    box-shadow: var(--shadow-xl);
}

.mud-nav-link {
    border-radius: var(--radius-md);
    margin: var(--space-1) var(--space-3);
    padding: var(--space-3) var(--space-4);
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.mud-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-orange-500);
    transform: scaleY(0);
    transition: transform var(--duration-fast) var(--ease-out);
}

.mud-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.mud-nav-link.active {
    background: rgba(232, 90, 30, 0.2);
    color: var(--color-orange-400) !important;
}

.mud-nav-link.active::before {
    transform: scaleY(1);
}

.mud-nav-link.active .mud-icon-root {
    color: var(--color-orange-400) !important;
}

/* === Skeleton Loading === */
.mud-skeleton {
    background: var(--color-beige-300);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mud-skeleton::after {
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-beige-100),
        transparent
    );
}

/* === Menu === */
.mud-menu .mud-popover-paper {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-beige-400);
    animation: fadeInDown var(--duration-normal) var(--ease-out);
}

/* === Alerts === */
.mud-alert {
    border-radius: var(--radius-lg);
    border-left-width: 4px;
}

/* === Progress === */
.mud-progress-linear {
    border-radius: var(--radius-full);
    overflow: hidden;
    height: 6px;
}

.mud-progress-linear .mud-progress-linear-bar {
    background: var(--gradient-orange);
}

/* === Badges === */
.mud-badge .mud-badge-badge {
    animation: popIn var(--duration-fast) var(--ease-out-back);
}

/* ============================================
   STOREFRONT SPECIFIC STYLES
   ============================================ */

/* === Header === */
.storefront-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--blur-xl));
    -webkit-backdrop-filter: blur(var(--blur-xl));
    border-bottom: 1px solid rgba(26, 39, 68, 0.08);
    transition: all var(--duration-normal) var(--ease-out);
}

.storefront-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

/* === Search Bar === */
.storefront-search {
    background: rgba(26, 39, 68, 0.05);
    border-radius: var(--radius-full);
    width: 320px;
    transition: all var(--duration-normal) var(--ease-out);
    border: 2px solid transparent;
}

.storefront-search:focus-within {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange-500);
    width: 380px;
}

/* === Cart Badge === */
.cart-badge-bounce .mud-badge-badge {
    animation: bounceIn var(--duration-slow) var(--ease-out-back);
}

/* === Hero Section === */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    min-height: 400px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 90, 30, 0.2) 0%, transparent 60%);
    animation: floatSlow 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    animation: floatSlow 20s ease-in-out infinite reverse;
}

/* Hero decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: morphBlob 10s ease-in-out infinite;
}

.hero-shape-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--color-orange-500);
}

.hero-shape-2 {
    bottom: 20%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: var(--color-electric-purple);
    animation-delay: -5s;
}

.hero-shape-3 {
    top: 50%;
    right: 30%;
    width: 150px;
    height: 150px;
    background: var(--color-electric-blue);
    animation-delay: -2.5s;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    background: linear-gradient(135deg, white 0%, var(--color-beige-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Category Cards === */
.category-card {
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    border: 2px solid var(--color-beige-400);
    background: white;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-orange);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-orange-500);
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card:hover .mud-icon-root {
    color: var(--color-orange-500) !important;
    transform: scale(1.2);
    transition: all var(--duration-normal) var(--ease-out-back);
}

/* === Product Cards === */
.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid var(--color-beige-400);
    background: white;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 39, 68, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .product-card-media-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-beige-200) 0%, var(--color-beige-300) 100%);
}

.product-card .product-card-media-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.05) 100%);
}

.product-card .mud-card-media img {
    transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .mud-card-media img {
    transform: scale(1.08);
}

.product-card .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    transition: color var(--duration-fast) var(--ease-out);
    font-weight: 500;
}

.product-card:hover .product-title {
    color: var(--color-orange-600);
}

/* Quick view button on hover */
.product-card .quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom var(--duration-normal) var(--ease-out);
    z-index: 10;
}

.product-card:hover .quick-view-btn {
    bottom: var(--space-4);
}

/* === Price Display === */
.price-display {
    font-variant-numeric: tabular-nums;
}

.price-sale {
    position: relative;
}

.price-sale::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: var(--color-error);
    transform: rotate(-5deg);
}

/* === Stock Badge === */
.stock-badge-low {
    animation: pulse 2s ease-in-out infinite;
}

.stock-badge-low .mud-chip {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

/* === Image Gallery === */
.image-gallery {
    width: 100%;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-beige-200) 0%, var(--color-beige-300) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.main-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 80%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all var(--duration-normal) var(--ease-out);
}

.main-image.transitioning {
    opacity: 0;
    transform: scale(0.95);
}

.main-image:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
    border: 3px solid transparent;
    position: relative;
}

.thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.thumbnail:hover {
    border-color: var(--color-navy-400);
    transform: scale(1.1);
}

.thumbnail:hover::after {
    opacity: 0;
}

.thumbnail.selected {
    border-color: var(--color-orange-500);
    box-shadow: var(--shadow-glow-orange);
    transform: scale(1.05);
}

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

/* === Trust Indicators === */
.trust-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.trust-indicator:hover {
    background: rgba(232, 90, 30, 0.05);
    transform: translateX(8px);
}

.trust-indicator-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-beige-200) 0%, var(--color-beige-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-md);
}

.trust-indicator:hover .trust-indicator-icon {
    background: var(--gradient-orange);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow-orange);
}

.trust-indicator:hover .trust-indicator-icon .mud-icon-root {
    color: white !important;
}

/* === Checkout Progress === */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-10);
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    position: relative;
}

.checkout-step-number {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.checkout-step-number.active {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-glow-orange);
    animation: breathe 2s ease-in-out infinite;
}

.checkout-step-number.completed {
    background: var(--color-success);
    color: white;
}

.checkout-step-number.completed::after {
    content: '';
    font-size: 1.5rem;
}

.checkout-step-number.pending {
    background: var(--color-beige-300);
    color: var(--color-navy-500);
}

.checkout-connector {
    flex: 1;
    height: 4px;
    background: var(--color-beige-300);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.checkout-connector.completed {
    background: var(--color-success);
}

.checkout-connector.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--gradient-orange);
    animation: shimmer 1.5s ease-in-out infinite;
}

/* === Footer === */
.storefront-footer {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.storefront-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
        var(--color-orange-600) 0%,
        var(--color-electric-purple) 50%,
        var(--color-electric-blue) 100%
    );
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

.storefront-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 90, 30, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-link {
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
}

.footer-link:hover {
    color: var(--color-orange-400) !important;
    transform: translateX(8px);
}

/* ============================================
   ADMIN SPECIFIC STYLES
   ============================================ */

/* === Admin App Bar === */
.admin-appbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(var(--blur-lg));
    border-bottom: 1px solid var(--color-beige-400);
    box-shadow: none !important;
}

/* === Admin Sidebar Navigation === */
.nav-section-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-navy-400);
    padding: var(--space-6) var(--space-4) var(--space-2);
    margin-top: var(--space-2);
    position: relative;
}

.nav-section-label::after {
    content: '';
    position: absolute;
    left: var(--space-4);
    right: var(--space-4);
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-navy-600), transparent);
}

.nav-section-label:first-child {
    margin-top: 0;
}

/* === Metric Cards === */
.metric-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: all var(--duration-normal) var(--ease-out);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height var(--duration-normal) var(--ease-out);
}

.metric-card:hover::before {
    height: 6px;
}

.metric-card.revenue::before {
    background: linear-gradient(90deg, var(--color-success), var(--color-electric-green));
}

.metric-card.orders::before {
    background: linear-gradient(90deg, var(--color-info), var(--color-electric-blue));
}

.metric-card.pending::before {
    background: linear-gradient(90deg, var(--color-warning), #fbbf24);
}

.metric-card.stock::before {
    background: linear-gradient(90deg, var(--color-error), #f87171);
}

.metric-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.metric-card:hover .metric-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.metric-card-icon.success {
    background: linear-gradient(135deg, var(--color-success-light), #a7f3d0);
    color: var(--color-success);
}

.metric-card-icon.info {
    background: linear-gradient(135deg, var(--color-info-light), #93c5fd);
    color: var(--color-info);
}

.metric-card-icon.warning {
    background: linear-gradient(135deg, var(--color-warning-light), #fde68a);
    color: var(--color-warning);
}

.metric-card-icon.error {
    background: linear-gradient(135deg, var(--color-error-light), #fca5a5);
    color: var(--color-error);
}

/* === Admin Page Header === */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--color-beige-400);
    position: relative;
}

.admin-page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-orange);
}

.admin-page-header h3, .admin-page-header h4 {
    margin: 0;
    background: linear-gradient(135deg, var(--color-navy-800) 0%, var(--color-navy-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Admin Tables === */
.admin-table-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-beige-400);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   AUTH PAGES
   ============================================ */

.auth-card {
    max-width: 480px;
    margin: var(--space-16) auto;
    animation: fadeInUp var(--duration-slower) var(--ease-out);
}

.auth-card .mud-card {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-beige-400);
    overflow: visible;
    position: relative;
}

.auth-card .mud-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-xl) + 3px);
    background: linear-gradient(135deg, var(--color-orange-500), var(--color-electric-purple), var(--color-electric-blue));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--duration-normal);
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

.auth-card .mud-card:hover::before {
    opacity: 1;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-8);
    animation: bounceIn var(--duration-slower) var(--ease-out);
}

.auth-logo img {
    transition: transform var(--duration-normal) var(--ease-out);
}

.auth-logo:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-8) 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-beige-400), transparent);
}

.auth-divider span {
    color: var(--color-navy-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   SPECIAL SECTIONS
   ============================================ */

/* Section Headers */
.section-header {
    position: relative;
    margin-bottom: var(--space-8);
}

.section-header h4 {
    display: inline-block;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
    margin-top: var(--space-3);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--color-beige-400);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Mobile (< 600px) */
@media (max-width: 599px) {
    .hero-section {
        padding: var(--space-8) !important;
        min-height: 350px;
        border-radius: var(--radius-lg);
    }

    .hero-section h2 {
        font-size: 1.75rem;
    }

    .storefront-search {
        width: 100%;
    }

    .storefront-search:focus-within {
        width: 100%;
    }

    .checkout-progress {
        gap: var(--space-1);
        padding: var(--space-4);
    }

    .checkout-step-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .auth-card {
        margin: var(--space-8) var(--space-4);
    }

    .metric-card-icon {
        width: 48px;
        height: 48px;
    }
}

/* Tablet (600-960px) */
@media (min-width: 600px) and (max-width: 959px) {
    .hero-section {
        padding: var(--space-10) !important;
    }
}

/* Desktop (> 960px) */
@media (min-width: 960px) {
    /* Sticky product info on desktop */
    .product-info-sticky {
        position: sticky;
        top: var(--space-10);
    }

    /* Sticky cart summary on desktop */
    .cart-summary-sticky {
        position: sticky;
        top: var(--space-10);
    }
}

/* Large Desktop (> 1280px) */
@media (min-width: 1280px) {
    .hero-section {
        min-height: 500px;
    }
}

/* ============================================
   DARK MODE SUPPORT (Future)
   ============================================ */

@media (prefers-color-scheme: dark) {
    /* Placeholder for dark mode styles */
    /* Can be enabled by uncommenting */
    /*
    :root {
        --color-beige-200: #1a1a2e;
        --color-beige-300: #16213e;
    }
    */
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .mud-appbar,
    .mud-drawer,
    .storefront-footer,
    .storefront-header,
    .mud-button,
    .checkout-progress {
        display: none !important;
    }

    .mud-main-content {
        padding: 0 !important;
    }

    body {
        background: white !important;
        background-image: none !important;
    }

    .product-card,
    .mud-paper {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   LOADING STATES
   ============================================ */

.page-loading {
    position: fixed;
    inset: 0;
    background: var(--color-beige-200);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.page-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--color-beige-400);
    border-top-color: var(--color-orange-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Skeleton pulse effect */
.skeleton-pulse {
    position: relative;
    overflow: hidden;
}

.skeleton-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 1.5s ease-in-out infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--color-orange-600) 0%, var(--color-electric-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-navy {
    background: linear-gradient(135deg, var(--color-navy-700) 0%, var(--color-navy-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-subtle {
    background: linear-gradient(180deg, var(--color-beige-100) 0%, var(--color-beige-200) 100%);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-orange-500), var(--color-electric-purple)) border-box;
}

.shadow-glow {
    box-shadow: var(--shadow-glow-orange);
}

.shadow-glow-blue {
    box-shadow: var(--shadow-glow-blue);
}

.shadow-glow-purple {
    box-shadow: var(--shadow-glow-purple);
}

/* ============================================
   WILD CARD EFFECTS - THE REALLY FUN STUFF
   ============================================ */

/* === Cyber Grid Background === */
.cyber-grid {
    position: relative;
    overflow: hidden;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 90, 30, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 90, 30, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* === Particle Background === */
.particles {
    position: relative;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-orange-500);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat 15s infinite ease-in-out;
}

.particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -50px) scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: translate(50px, 100px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(-50px, 50px) scale(1.2);
        opacity: 0.7;
    }
}

/* === Spotlight Effect === */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(232, 90, 30, 0.15) 0%,
        transparent 50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* === Holographic Effect === */
.holographic {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(232, 90, 30, 0.1) 25%,
        rgba(168, 85, 247, 0.1) 50%,
        rgba(0, 212, 255, 0.1) 75%,
        rgba(255, 255, 255, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: holoShift 8s ease infinite;
}

@keyframes holoShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === Liquid Border === */
.liquid-border {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.liquid-border::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(
        from 0deg,
        var(--color-orange-500),
        var(--color-electric-purple),
        var(--color-electric-blue),
        var(--color-electric-green),
        var(--color-orange-500)
    );
    border-radius: inherit;
    animation: liquidRotate 3s linear infinite;
    z-index: -1;
}

.liquid-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: white;
    border-radius: calc(var(--radius-xl) - 2px);
    z-index: -1;
}

@keyframes liquidRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === Scan Line Effect === */
.scanlines {
    position: relative;
    overflow: hidden;
}

.scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    animation: scanMove 10s linear infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* === Noise Texture Overlay === */
.noise {
    position: relative;
}

.noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* === 3D Tilt Effect === */
.tilt-3d {
    transform-style: preserve-3d;
    transition: transform var(--duration-normal) var(--ease-out);
}

.tilt-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
}

/* === Glitch Effect === */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    opacity: 0.8;
    color: var(--color-electric-blue);
    animation: glitchLeft 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch:hover::after {
    opacity: 0.8;
    color: var(--color-orange-500);
    animation: glitchRight 0.3s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchLeft {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitchRight {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

/* === Reveal on Scroll (placeholder - needs JS) === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Magnetic Button Effect === */
.magnetic-btn {
    position: relative;
    display: inline-flex;
    transition: transform var(--duration-fast) var(--ease-out);
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    inset: -10px;
    z-index: -1;
}

/* === Ripple Effect === */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s;
}

.ripple:active::after {
    transform: scale(2.5);
    opacity: 0;
    transition: 0s;
}

/* === Typewriter Cursor === */
.typewriter-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* === Card Stack Effect === */
.card-stack {
    position: relative;
}

.card-stack::before,
.card-stack::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    transition: all var(--duration-normal) var(--ease-out);
}

.card-stack::before {
    transform: translate(8px, 8px);
    opacity: 0.3;
}

.card-stack::after {
    transform: translate(16px, 16px);
    opacity: 0.15;
}

.card-stack:hover::before {
    transform: translate(4px, 4px) rotate(2deg);
}

.card-stack:hover::after {
    transform: translate(8px, 8px) rotate(4deg);
}

/* ============================================
   PRODUCT DETAIL PAGE ENHANCEMENTS
   ============================================ */

.product-detail-title {
    position: relative;
    display: inline-block;
}

.product-detail-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-orange);
    transition: width var(--duration-slow) var(--ease-out);
}

.product-info:hover .product-detail-title::after {
    width: 100%;
}

.add-to-cart-btn {
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.wishlist-btn {
    transition: all var(--duration-normal) var(--ease-out);
}

.wishlist-btn:hover {
    transform: scale(1.02);
    border-color: var(--color-error);
}

.trust-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
}

.trust-mini-item:hover .trust-mini-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-orange);
}

.trust-mini-item:hover .trust-mini-icon .mud-icon-root {
    color: white !important;
}

.product-trust-panel {
    position: relative;
    overflow: hidden;
}

.product-trust-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232, 90, 30, 0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.specs-table tbody tr {
    transition: all var(--duration-fast) var(--ease-out);
}

.specs-table tbody tr:hover {
    background: var(--color-beige-200) !important;
    transform: translateX(4px);
}

/* ============================================
   CART PAGE ENHANCEMENTS
   ============================================ */

.cart-item {
    transition: all var(--duration-normal) var(--ease-out);
    background: white;
}

.cart-item:hover {
    background: linear-gradient(90deg, var(--color-beige-100), white);
}

.cart-item-image {
    transition: transform var(--duration-normal) var(--ease-out);
}

.cart-item:hover .cart-item-image {
    transform: scale(1.05);
}

.cart-item-name {
    transition: color var(--duration-fast) var(--ease-out);
}

.cart-item:hover .cart-item-name {
    color: var(--color-orange-600) !important;
}

.cart-remove-btn {
    opacity: 0.5;
    transition: all var(--duration-fast) var(--ease-out);
}

.cart-item:hover .cart-remove-btn {
    opacity: 1;
}

.cart-remove-btn:hover {
    transform: scale(1.2) rotate(10deg);
}

.cart-summary-panel {
    transition: all var(--duration-normal) var(--ease-out);
}

.cart-summary-panel:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.empty-cart-panel {
    transition: all var(--duration-normal) var(--ease-out);
}

.empty-cart-panel:hover {
    border-color: var(--color-orange-400);
    background: linear-gradient(135deg, var(--color-beige-100) 0%, rgba(232, 90, 30, 0.05) 100%);
}

/* ============================================
   PRODUCT GRID ENHANCEMENTS
   ============================================ */

.product-grid-item {
    perspective: 1000px;
}

.product-grid-item .product-card {
    transform-style: preserve-3d;
    transition: all var(--duration-slow) var(--ease-out);
}

.product-grid-item:hover .product-card {
    transform: translateY(-12px) rotateX(2deg);
}

/* === Quick Actions Overlay === */
.product-card .product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: transform var(--duration-normal) var(--ease-out);
    display: flex;
    justify-content: center;
    gap: var(--space-2);
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

/* === Badge Ribbon === */
.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 120px;
    padding: var(--space-1) 0;
    background: var(--gradient-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

/* ============================================
   SEARCH BOX ENHANCEMENTS
   ============================================ */

.search-box-enhanced {
    position: relative;
}

.search-box-enhanced::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--color-orange-500), var(--color-electric-purple), var(--color-electric-blue));
    border-radius: calc(var(--radius-full) + 2px);
    opacity: 0;
    transition: opacity var(--duration-normal);
    z-index: -1;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.search-box-enhanced:focus-within::before {
    opacity: 1;
}

/* ============================================
   LOADING ENHANCEMENTS
   ============================================ */

.skeleton-wave {
    position: relative;
    overflow: hidden;
    background: var(--color-beige-300);
}

.skeleton-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: skeletonWave 1.5s infinite;
}

@keyframes skeletonWave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* === Dotted Loading === */
.loading-dots {
    display: inline-flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--color-orange-500);
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ============================================
   TOOLTIP ENHANCEMENTS
   ============================================ */

.tooltip-fancy {
    position: relative;
}

.tooltip-fancy::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-navy);
    color: white;
    font-size: 0.75rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast) var(--ease-out);
}

.tooltip-fancy:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

/* ============================================
   COUNTDOWN TIMER STYLES
   ============================================ */

.countdown {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-4);
    background: var(--gradient-navy);
    color: white;
    border-radius: var(--radius-lg);
    min-width: 70px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.countdown-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-top: var(--space-1);
}

/* ============================================
   NOTIFICATION BADGE PULSE
   ============================================ */

.notification-badge {
    position: relative;
}

.notification-badge::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--color-error);
    border-radius: 50%;
    border: 2px solid white;
    animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

/* ============================================
   PRICE TAG STYLES
   ============================================ */

.price-tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-orange);
    color: white;
    font-weight: 700;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

.price-tag::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    border: 18px solid transparent;
    border-right: 10px solid var(--color-orange-600);
}

.price-tag::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* ============================================
   CHECKOUT PAGE ENHANCEMENTS
   ============================================ */

.checkout-form-section {
    transition: all var(--duration-normal) var(--ease-out);
}

.checkout-form-section:hover {
    border-color: var(--color-orange-400);
    box-shadow: var(--shadow-lg);
}

.checkout-section-number {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gradient-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
}

.checkout-form-section:hover .checkout-section-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow-orange);
}

.checkout-order-summary {
    transition: all var(--duration-normal) var(--ease-out);
}

.checkout-order-summary:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.checkout-pay-btn {
    position: relative;
    overflow: hidden;
}

.checkout-pay-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.checkout-pay-btn:hover::before {
    left: 100%;
}

/* ============================================
   PRODUCTS PAGE ENHANCEMENTS
   ============================================ */

.products-toolbar {
    transition: all var(--duration-normal) var(--ease-out);
}

.products-toolbar:hover {
    box-shadow: var(--shadow-lg);
}

.products-result-bar {
    transition: all var(--duration-normal) var(--ease-out);
}

.products-result-bar:hover {
    background: linear-gradient(90deg, var(--color-beige-300), var(--color-beige-200)) !important;
}

/* ============================================
   FILTER SIDEBAR ENHANCEMENTS
   ============================================ */

.filter-section {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--color-beige-400);
    transition: all var(--duration-normal) var(--ease-out);
}

.filter-section:hover {
    border-color: var(--color-orange-400);
    box-shadow: var(--shadow-md);
}

.filter-section-title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    color: var(--color-navy-800);
    margin-bottom: var(--space-3);
}

/* ============================================
   BREADCRUMB ENHANCEMENTS
   ============================================ */

.breadcrumb-item {
    position: relative;
    transition: all var(--duration-fast) var(--ease-out);
}

.breadcrumb-item:hover {
    color: var(--color-orange-600);
}

.breadcrumb-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange-500);
    transition: width var(--duration-normal) var(--ease-out);
}

.breadcrumb-item:hover::after {
    width: 100%;
}

/* ============================================
   REVIEW SECTION ENHANCEMENTS
   ============================================ */

.review-card {
    padding: var(--space-5);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-beige-400);
    transition: all var(--duration-normal) var(--ease-out);
}

.review-card:hover {
    border-color: var(--color-orange-400);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.review-rating {
    color: var(--color-warning);
}

/* ============================================
   BLOG/CONTENT CARDS
   ============================================ */

.content-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    border: 1px solid var(--color-beige-400);
    transition: all var(--duration-normal) var(--ease-out);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.content-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.content-card:hover .content-card-image {
    transform: scale(1.1);
}

.content-card-body {
    padding: var(--space-6);
}

.content-card-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--color-beige-300);
    color: var(--color-navy-600);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
}

/* ============================================
   FORM ENHANCEMENTS
   ============================================ */

.form-floating-label {
    position: relative;
}

.form-floating-label label {
    position: absolute;
    top: 50%;
    left: var(--space-4);
    transform: translateY(-50%);
    color: var(--color-navy-500);
    transition: all var(--duration-fast) var(--ease-out);
    pointer-events: none;
    background: white;
    padding: 0 var(--space-1);
}

.form-floating-label input:focus ~ label,
.form-floating-label input:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.75rem;
    color: var(--color-orange-600);
}

/* ============================================
   BADGE STYLES
   ============================================ */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.success {
    background: var(--color-success-light);
    color: var(--color-success);
}

.status-badge.warning {
    background: var(--color-warning-light);
    color: #b45309;
}

.status-badge.error {
    background: var(--color-error-light);
    color: var(--color-error);
}

.status-badge.info {
    background: var(--color-info-light);
    color: var(--color-info);
}

/* ============================================
   ACCORDION STYLES
   ============================================ */

.accordion-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-3);
    border: 1px solid var(--color-beige-400);
    transition: all var(--duration-normal) var(--ease-out);
}

.accordion-item.active {
    border-color: var(--color-orange-500);
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    padding: var(--space-4) var(--space-5);
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--duration-fast) var(--ease-out);
}

.accordion-header:hover {
    background: var(--color-beige-200);
}

.accordion-icon {
    transition: transform var(--duration-normal) var(--ease-out);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 var(--space-5) var(--space-5);
    animation: fadeInDown var(--duration-normal) var(--ease-out);
}

/* ============================================
   TIMELINE STYLES
   ============================================ */

.timeline {
    position: relative;
    padding-left: var(--space-10);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-orange-500), var(--color-beige-400));
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-8);
}

.timeline-marker {
    position: absolute;
    left: -34px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-orange-500);
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.timeline-item.completed .timeline-marker {
    background: var(--color-success);
}

.timeline-content {
    padding: var(--space-4);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-beige-400);
    transition: all var(--duration-normal) var(--ease-out);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

/* ============================================
   STAT CARDS
   ============================================ */

.stat-card {
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-beige-400);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: var(--color-navy-500);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-2);
}
