/* Professional Modern Design System - Universal Web & Mobile */

/* CSS Variables for Consistency */
:root {
    /* Color Palette - Professional Green */
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #dcfce7;
    --secondary: #64748b;
    --secondary-dark: #475569;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

/* Language selector styles */
.language-selector.active {
    background-color: var(--primary) !important;
    color: white !important;
}

.language-selector.active i {
    color: white !important;
}

.language-selector:hover {
    background-color: var(--primary-light) !important;
    color: var(--primary) !important;
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--gray-900);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: var(--font-size-4xl); margin-bottom: var(--space-6); }
h2 { font-size: var(--font-size-3xl); margin-bottom: var(--space-5); }
h3 { font-size: var(--font-size-2xl); margin-bottom: var(--space-4); }
h4 { font-size: var(--font-size-xl); margin-bottom: var(--space-3); }
h5 { font-size: var(--font-size-lg); margin-bottom: var(--space-3); }
h6 { font-size: var(--font-size-base); margin-bottom: var(--space-2); }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Navigation - Ultra Modern */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: var(--space-4) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
}

.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.navbar-brand .logo-icon {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.navbar-brand .logo-icon-fallback {
    font-size: 2.5rem;
    color: var(--primary);
}

.navbar-brand .brand-text {
    font-weight: 700;
}

/* Pulsating animation for logo */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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

/* Mobile responsive navbar */
@media (max-width: 991.98px) {
    .navbar {
        padding: var(--space-4) 0;
        min-height: 80px;
    }
    
    .navbar .container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        min-height: 60px;
    }
    
    .navbar-brand {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    
    .navbar-brand .brand-text {
        display: none;
    }
    
    .navbar-brand .logo-icon {
        height: 64px;
        width: 64px;
    }
    
    .navbar-brand .logo-icon-fallback {
        font-size: 3.5rem;
    }
    
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    list-style: none;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, var(--primary-light), rgba(34, 197, 94, 0.1));
    color: var(--primary);
    transform: translateY(-2px);
}

/* Buttons - Ultra Modern */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.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.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #22c55e, var(--primary-dark));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

/* Cards - Ultra Modern */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
}

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

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.card-text {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

/* Hero Section - Ultra Modern */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #22c55e 50%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-20) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: heroGradient 8s ease-in-out infinite;
}

@keyframes heroGradient {
    0%, 100% { background: linear-gradient(135deg, var(--primary) 0%, #22c55e 50%, var(--primary-dark) 100%); }
    50% { background: linear-gradient(135deg, #22c55e 0%, var(--primary) 50%, #15803d 100%); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(34, 197, 94, 0.2) 0%, transparent 50%);
    z-index: 1;
    animation: floatingOrbs 6s ease-in-out infinite;
}

@keyframes floatingOrbs {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.5); }
    100% { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 197, 94, 0.8); }
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    animation: subtitleFloat 4s ease-in-out infinite;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: buttonsEntrance 1s ease-out 0.5s both;
}

@keyframes buttonsEntrance {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--space-2));
}

.col {
    flex: 1;
    padding: 0 var(--space-2);
    margin-bottom: var(--space-4);
}

.col-12 { flex: 0 0 100%; }
.col-6 { flex: 0 0 50%; }
.col-4 { flex: 0 0 33.333333%; }
.col-3 { flex: 0 0 25%; }

/* Product Cards - Ultra Modern */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light), rgba(34, 197, 94, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.product-card:hover {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(2deg);
}

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

.product-card:hover .product-price {
    transform: scale(1.1);
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    background: var(--gray-50);
    padding: var(--space-2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    flex-grow: 1;
    transition: all 0.3s ease;
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-vendor {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--font-size-2xl);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--gray-800);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-16);
}

footer h4, footer h6 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--white);
}

/* Dropdown - Modern Compact Design */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

.dropdown-toggle:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    max-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    margin-top: 4px;
    padding: var(--space-2) 0;
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-size-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--gray-400);
    flex-shrink: 0;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-item:hover i {
    color: var(--primary);
}

.dropdown-header {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-2) var(--space-4);
}

.dropdown-divider {
    margin: var(--space-2) 0;
    border-top: 1px solid var(--gray-100);
}

/* Navbar compact styling */
.navbar .nav-link {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-3) !important;
    white-space: nowrap;
}

.navbar .dropdown-toggle::after {
    font-size: 0.6rem;
    margin-left: 4px;
}

/* Forms */
.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Sections */
.py-5 { padding: var(--space-12) 0; }
.py-4 { padding: var(--space-10) 0; }
.py-3 { padding: var(--space-8) 0; }
.py-2 { padding: var(--space-6) 0; }

.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--gray-800); color: var(--white); }

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }

.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }
.text-white { color: var(--white); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }

.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-success { background: var(--success); }
.bg-danger { background: var(--danger); }
.bg-warning { background: var(--warning); }
.bg-info { background: var(--info); }
.bg-white { background: var(--white); }

.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.fw-medium { font-weight: 500; }
.fw-normal { font-weight: 400; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero {
        padding: var(--space-12) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .col-12, .col-6, .col-4, .col-3 {
        flex: 0 0 100%;
    }
    
    .product-image {
        height: 150px;
    }
    
    .hero {
        padding: var(--space-12) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .feature-card {
        padding: var(--space-6);
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: var(--font-size-xl);
    }
    
    .py-5 { padding: var(--space-8) 0; }
    .py-4 { padding: var(--space-6) 0; }
    .py-3 { padding: var(--space-4) 0; }
    
    footer {
        padding: var(--space-12) 0 var(--space-6);
    }
    
    .dropdown-menu {
        position: fixed;
        top: auto;
        right: var(--space-4);
        left: var(--space-4);
        width: auto;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .col-md-6 { flex: 0 0 50%; }
    .col-md-4 { flex: 0 0 33.333333%; }
    .col-md-3 { flex: 0 0 25%; }
}

/* Desktop */
@media (min-width: 1024px) {
    .col-lg-6 { flex: 0 0 50%; }
    .col-lg-4 { flex: 0 0 33.333333%; }
    .col-lg-3 { flex: 0 0 25%; }
    .col-lg-2 { flex: 0 0 16.666667%; }
}

/* Ultra Modern Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-50px) rotate(-5deg);
    }
    to { 
        opacity: 1; 
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(50px) rotate(5deg);
    }
    to { 
        opacity: 1; 
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-shake {
    animation: shake 0.5s;
}

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

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

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Hover effects */
.hover-lift:hover {
    transform: translateY(-2px);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Green accent variations */
.btn-accent {
    background: #22c55e;
    color: var(--white);
}

.btn-accent:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.text-accent {
    color: #22c55e;
}

.bg-accent {
    background: #22c55e;
}

/* Enhanced green feature icon - Ultra Modern */
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #22c55e, var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--font-size-2xl);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-icon:hover::before {
    transform: translateX(100%);
}

.feature-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 48px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #22c55e, var(--primary), var(--primary-dark));
}

/* Ultra Modern Glassmorphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}

.glass-green {
    background: rgba(34, 197, 94, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

/* Ultra Modern Scroll Effects */
.parallax-scroll {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Modern Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Modern Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #22c55e);
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

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

/* Modern Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    background: var(--gray-800);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    padding: var(--space-2) var(--space-3);
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: var(--font-size-sm);
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Ultra-Modern How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: sectionGlow 8s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.how-it-works-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 500;
    opacity: 0.9;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-item {
    position: relative;
    animation-delay: calc(var(--index) * 0.2s);
}

.step-item:nth-child(1) { --index: 0; }
.step-item:nth-child(2) { --index: 1; }
.step-item:nth-child(3) { --index: 2; }

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: var(--primary);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.step-card:hover .step-icon::before {
    transform: translateX(100%);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: numberBounce 2s infinite;
}

@keyframes numberBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: var(--primary);
}

.step-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Connection Lines */
.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: -1;
    animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .steps-container::before {
        display: none;
    }
}

/* Ultra-Modern CTA Section */
.ultra-modern-cta {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.ultra-modern-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.05) 50%, transparent);
    z-index: 1;
    animation: ctaGlow 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), #22c55e, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

@keyframes titleShine {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

.cta-subtitle {
    font-size: 1.4rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    animation: subtitleFloat 3s ease-in-out infinite;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation-delay: 0.3s;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    min-width: 200px;
    height: 60px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
    color: var(--white);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.button-content i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-content i {
    transform: scale(1.2) rotate(10deg);
}

.button-content span {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-content span {
    transform: translateX(3px);
}

/* Floating animation for buttons */
.cta-button {
    animation: buttonFloat 4s ease-in-out infinite;
}

.cta-button:nth-child(1) {
    animation-delay: 0s;
}

.cta-button:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes buttonFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Pulse effect on hover */
.cta-button:hover {
    animation: none;
}

.cta-button:active {
    transform: scale(0.95);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ultra-modern-cta {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Ultra-Modern Products Page */
.ultra-modern-products {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.ultra-modern-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.03) 50%, transparent);
    z-index: 1;
    animation: productsGlow 12s ease-in-out infinite alternate;
}

@keyframes productsGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.ultra-modern-products .container {
    position: relative;
    z-index: 2;
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), #22c55e, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.products-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    animation: subtitleGlow 3s ease-in-out infinite;
}

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

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.search-form {
    flex: 1;
    max-width: 500px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-input-wrapper:hover {
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.2);
    border-color: var(--primary);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: transparent;
    color: var(--gray-800);
}

.search-button {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.category-filter-wrapper {
    position: relative;
}

.category-filter {
    appearance: none;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.75rem 2rem 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--gray-800);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.category-filter:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.2);
}

.category-filter:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Category Pills */
.category-pills-section {
    margin-bottom: 3rem;
}

.category-pills-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-pill::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.6s;
}

.category-pill:hover::before {
    left: 100%;
}

.category-pill:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    border-color: var(--primary);
    color: var(--primary);
}

.category-pill.active {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.pill-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.pill-content i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.category-pill:hover .pill-content i {
    transform: scale(1.1) rotate(5deg);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: var(--primary);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Vendor card logos - use contain to fit full logo without cropping */
.product-card-modern.vendor-card .product-image-container {
    height: 180px;
    background: #f8f9fa;
}

.product-card-modern.vendor-card .product-image-modern {
    object-fit: contain !important;
    padding: 1.5rem;
    background: #f8f9fa;
}

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

.product-card-modern.vendor-card:hover .product-image-modern {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 1rem;
}

.overlay-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.overlay-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-price-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-vendor-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.verified-badge {
    color: var(--success);
    font-size: 0.8rem;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-btn.secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.product-btn.secondary:hover {
    background: var(--gray-200);
    color: var(--gray-800);
    transform: translateY(-1px);
}

.product-btn.primary {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    border: 1px solid var(--primary);
}

.product-btn.primary:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* No Products Message */
.no-products-modern {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-products-icon {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.no-products-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.no-products-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-products-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.4);
    color: var(--white);
}

/* Login Required Message Styles */
.login-required-message {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-in-out;
}

.login-required-message .alert {
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
    position: relative;
    overflow: hidden;
}

.login-required-message .alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.login-required-message .alert h6 {
    color: #0c4a6e;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.login-required-message .alert p {
    color: #075985;
    font-size: 0.95rem;
    line-height: 1.5;
}

.login-required-message .auth-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.login-required-message .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.login-required-message .btn-success {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: white;
    border-color: var(--primary);
}

.login-required-message .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    color: white;
}

.login-required-message .btn-outline-success {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.login-required-message .btn-outline-success:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.25);
}

.login-required-message .fas {
    font-size: 1.5rem;
    color: #0ea5e9;
    margin-right: 0.5rem;
}

/* Ensure the message stays visible - no auto-hide */
.login-required-message .alert {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Disable Bootstrap's auto-hide for login messages */
.login-required-message .alert-dismissible {
    padding-right: 1.5rem;
}

.login-required-message .alert-dismissible .close {
    display: none;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .products-title {
        font-size: 2.5rem;
    }
    
    .products-subtitle {
        font-size: 1.1rem;
    }
    
    .search-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-form {
        max-width: 100%;
    }
    
    .category-filter {
        min-width: 100%;
    }
    
    .category-pills-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 1rem 0.5rem;
    }
    
    .category-pill {
        white-space: nowrap;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .login-required-message .auth-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .login-required-message .btn {
        width: 100%;
        text-align: center;
    }
}

/* Ultra-Modern Product Detail Page */
.ultra-modern-product-detail {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.ultra-modern-product-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.03) 50%, transparent);
    z-index: 1;
    animation: detailGlow 10s ease-in-out infinite alternate;
}

@keyframes detailGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.ultra-modern-product-detail .container {
    position: relative;
    z-index: 2;
}

/* Modern Breadcrumb */
.breadcrumb-modern {
    margin-bottom: 2rem;
}

.breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.breadcrumb-item a:hover {
    color: var(--primary);
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
}

.breadcrumb-item.active span {
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 25px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: var(--gray-400);
    margin-left: 0.5rem;
}

/* Product Main Section */
.product-main-section {
    margin-bottom: 3rem;
}

/* Product Image */
.product-image-modern {
    position: relative;
}

.image-container {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.2);
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--white);
    padding: 2rem;
    transition: transform 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Product Info */
.product-info-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

/* Product Meta */
.product-meta-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-badge {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
}

.status-badge.unavailable {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-badge.out-of-stock {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Product Title */
.product-title-detail {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(34, 197, 94, 0.1); }
    50% { text-shadow: 0 0 25px rgba(34, 197, 94, 0.2); }
}

/* Product Price */
.product-price-detail {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* Vendor Info */
.vendor-info-modern {
    margin-bottom: 2rem;
}

.vendor-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.vendor-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.vendor-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.vendor-logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.vendor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vendor-name:hover {
    color: var(--primary);
}

.vendor-type {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-icon {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Product Details */
.product-details-modern {
    margin-bottom: 2rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.detail-icon {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.detail-value.stock-high {
    color: var(--primary);
}

.detail-value.stock-low {
    color: #f59e0b;
}

.detail-value.stock-empty {
    color: #ef4444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-title-detail {
        font-size: 2rem;
    }
    
    .product-price-detail {
        font-size: 1.5rem;
    }
    
    .product-image {
        height: 300px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-items {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .vendor-details {
        flex-direction: column;
        text-align: center;
    }
}

/* Add to Cart Section */
.add-to-cart-modern {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 15px;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.quantity-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.quantity-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quantity-btn:hover {
    background: #15803d;
    transform: scale(1.1);
}

.quantity-input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    background: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.quantity-input:focus {
    border-color: var(--primary);
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    border: none;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0) scale(0.98);
}

.cart-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
}

/* Product Description */
.product-description-modern {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 15px;
}

.description-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description-title i {
    color: var(--primary);
}

.description-content {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Back to Products */
.back-to-products {
    margin-top: 3rem;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Ultra-Modern Orders Page */
.ultra-modern-orders {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.ultra-modern-orders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.03) 50%, transparent);
    z-index: 1;
    animation: ordersGlow 12s ease-in-out infinite alternate;
}

@keyframes ordersGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.ultra-modern-orders .container {
    position: relative;
    z-index: 2;
}

/* Orders Header */
.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1100;
}

.orders-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.orders-title i {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.title-text {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Filter Modern */
.filter-modern {
    position: relative;
    z-index: 1200;
}

.filter-modern .dropdown {
    z-index: 1300;
    position: relative;
}

/* Ensure dropdown appears above all other elements */
.ultra-modern-orders .dropdown-menu {
    z-index: 99999 !important;
    position: absolute !important;
}

.ultra-modern-orders .dropdown.show .dropdown-menu {
    z-index: 99999 !important;
    position: absolute !important;
}

.ultra-modern-orders .filter-modern .dropdown-menu {
    z-index: 99999 !important;
    position: absolute !important;
}

.ultra-modern-orders .filter-modern .dropdown.show .dropdown-menu {
    z-index: 99999 !important;
    position: absolute !important;
}

.filter-btn {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.filter-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

.filter-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.1) !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    z-index: 999999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: translateY(0) !important;
}

/* Additional CSS to override any bootstrap defaults */
.ultra-modern-orders .filter-modern .dropdown-menu.show {
    z-index: 999999 !important;
    position: absolute !important;
    display: block !important;
    top: 100% !important;
    left: 0 !important;
    transform: translateY(0) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(34, 197, 94, 0.1) !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
}

.filter-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.filter-menu .dropdown-item:hover {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.filter-menu .dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Orders Grid */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.order-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #22c55e);
}

.order-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.2);
}

/* Order Header */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.order-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.order-number i {
    color: var(--primary);
}

/* Status Badge */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.status-confirmed {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-badge.status-preparing {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-badge.status-ready {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
}

.status-badge.status-out_for_delivery {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.status-badge.status-delivered {
    background: rgba(34, 197, 94, 0.2);
    color: #15803d;
}

/* Order Info */
.order-info {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.info-label i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.info-value {
    flex: 1;
}

.info-value strong {
    color: var(--gray-900);
    font-weight: 600;
}

.info-value small {
    display: block;
    color: var(--gray-600);
    font-size: 0.8rem;
}

.total-amount {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Driver Status */
.driver-status {
    margin-bottom: 1.5rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-badge.available {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
}

.availability-badge.mine {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    flex: 1;
    justify-content: center;
    min-width: 100px;
}

.view-btn {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.view-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.update-btn {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.update-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cancel-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cancel-btn:hover {
    background: #ef4444;
    color: var(--white);
    transform: translateY(-2px);
}

/* No Orders State */
.no-orders-state {
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.no-orders-icon {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.no-orders-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.no-orders-message {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.start-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.start-shopping-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
    color: var(--white);
}

/* Ultra-Modern Pricing Page Styles */
.ultra-modern-pricing {
    min-height: 100vh;
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 50%, #ecfdf5 100%);
    padding: 2rem 0;
}

/* Pricing Header */
.pricing-header {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: 0 2rem 3rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header-content {
    position: relative;
    z-index: 2;
}

.pricing-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.pricing-title h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
}

.pricing-header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Business Info Card */
.pricing-business-info {
    margin: 0 2rem 3rem 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.business-info-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.business-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #16a34a, #22c55e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    animation: floatUp 3s ease-in-out infinite;
}

.business-info-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #16a34a;
    margin: 0 0 0.5rem 0;
}

.business-info-text p {
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Pricing Form Container */
.pricing-form-container {
    margin: 0 2rem;
}

.pricing-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Pricing Sections */
.pricing-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.section-header i {
    font-size: 1.5rem;
    color: #16a34a;
    padding: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #16a34a;
    margin: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Modern Form Groups */
.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-modern {
    font-weight: 600;
    color: #16a34a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-modern {
    padding: 1rem;
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-modern:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.form-help {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Checkbox Groups */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-container:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.checkbox-modern {
    width: 20px;
    height: 20px;
    accent-color: #16a34a;
}

.checkbox-label-modern {
    font-weight: 600;
    color: #16a34a;
    margin: 0;
    cursor: pointer;
}

/* Save Button */
.pricing-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-save-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #16a34a, #22c55e);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-save-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
}

.btn-save-modern:active {
    transform: translateY(-1px) scale(1.02);
}

/* Pricing Mobile Responsiveness */
@media (max-width: 768px) {
    .ultra-modern-pricing {
        padding: 1rem 0;
    }
    
    .pricing-header {
        margin: 0 1rem 2rem 1rem;
        padding: 2rem 1rem;
    }
    
    .pricing-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pricing-title h1 {
        font-size: 2rem;
    }
    
    .pricing-icon {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-business-info,
    .pricing-form-container {
        margin: 0 1rem;
    }
    
    .pricing-business-info {
        padding: 1.5rem;
    }
    
    .business-info-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-section {
        padding: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* End of pricing styles */

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .orders-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .orders-title {
        font-size: 2rem;
    }
    
    .orders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .order-card {
        padding: 1.5rem;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .action-btn {
        flex: none;
        width: 100%;
    }
    
    .no-orders-state {
        padding: 3rem 1rem;
    }
    
    .no-orders-icon {
        font-size: 3rem;
    }
    
    .no-orders-title {
        font-size: 1.5rem;
    }
}

/* Ultra-Modern Green Footer */
.ultra-modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.ultra-modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.1) 50%, transparent),
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: footerGlow 6s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-section {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-icon {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotate 3s linear infinite;
}

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

.footer-brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #22c55e);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), #22c55e);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 20px;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    color: var(--primary);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    position: relative;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin-bottom: 1rem;
    animation: dividerGlow 2s ease-in-out infinite alternate;
}

@keyframes dividerGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.footer-bottom-content {
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ultra-modern-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section {
        padding: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Cart Badge Styling */
.cart-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-badge {
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

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

.cart-badge:empty {
    display: none;
}

/* Mobile Navigation Styles */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 3px;
    background-color: #16a34a;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #16a34a;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* Animated hamburger menu */
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation Collapse */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.2);
        transition: all 0.3s ease;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(34, 197, 94, 0.1);
        transform: translateX(5px);
    }
    
    .dropdown-menu {
        position: static !important;
        float: none !important;
        transform: none !important;
        background: rgba(34, 197, 94, 0.05);
        border: 1px solid rgba(34, 197, 94, 0.2);
        border-radius: 10px;
        margin-top: 0.5rem;
        box-shadow: none;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-item:hover {
        background: rgba(34, 197, 94, 0.1);
    }
}

/* Order Detail Page Styles */
.order-header {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.order-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.order-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.order-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: rgba(239, 68, 68, 0.9); }
.status-confirmed { background: rgba(34, 197, 94, 0.9); }
.status-preparing { background: rgba(245, 158, 11, 0.9); }
.status-ready { background: rgba(59, 130, 246, 0.9); }
.status-out_for_delivery { background: rgba(168, 85, 247, 0.9); }
.status-delivered { background: rgba(16, 185, 129, 0.9); }

.btn-floating {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-floating:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Progress Section */
.progress-section {
    padding: 2rem 0;
}

.progress-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.progress-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.delivery-progress {
    position: relative;
    margin-bottom: 2rem;
}

.progress-bar-container {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 2px;
    z-index: 1;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #22c55e);
    border-radius: 2px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -8px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse 2s infinite;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.animate-in {
    animation: stepActivate 0.5s ease forwards;
}

@keyframes stepActivate {
    from { transform: scale(0.8); opacity: 0.4; }
    to { transform: scale(1); opacity: 1; }
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 3px solid rgba(34, 197, 94, 0.3);
}

.progress-step.active .step-circle {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    transform: scale(1.1);
}

.step-content h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.progress-step.active .step-content {
    color: var(--primary);
    font-weight: 600;
}

.delivery-time-display {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.time-card {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.time-card i {
    font-size: 2rem;
    opacity: 0.9;
}

.time-info h6 {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-info p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Modern Cards */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-card .card-header {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.modern-card .card-header h5 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.modern-card .card-body {
    padding: 1.5rem;
}

/* Order Item Cards */
.order-item-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(34, 197, 94, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.order-item-card:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(5px);
}

.order-item-card:last-child {
    margin-bottom: 0;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.5rem;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.item-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.vendor-name {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.item-price {
    text-align: right;
    margin-left: 1rem;
}

.price-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.price-breakdown {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Summary Card */
.summary-card .card-body {
    padding: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #22c55e);
    margin: 1rem 0;
    border-radius: 1px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 0;
}

.total-amount {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Info Cards */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    width: 20px;
}

.info-item div {
    flex: 1;
}

.info-item p {
    margin: 0.25rem 0 0 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.address-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.address-actions .btn {
    border-radius: 20px;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.address-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.address-actions .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.address-actions .btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.address-actions .btn-outline-success {
    border-color: #22c55e;
    color: #22c55e;
}

.address-actions .btn-outline-success:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

/* Action Cards */
.action-card .card-body {
    padding: 2rem;
}

.btn-action {
    width: 100%;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.modern-select,
.modern-textarea {
    border-radius: 10px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.modern-select:focus,
.modern-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-title {
        font-size: 1.75rem;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .progress-bar-container {
        display: none;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .order-item-card {
        flex-direction: column;
        text-align: center;
    }
    
    .item-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .item-price {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .order-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .status-badge,
    .btn-floating {
        text-align: center;
        justify-content: center;
    }
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .card {
        border: 1px solid black;
        box-shadow: none;
    }
    
    /* Disable animations in print */
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   PROFESSIONAL HOMEPAGE STYLES
   Clean, minimal, business-focused design
   ======================================== */

/* Hero Section */
.pro-hero {
    background: linear-gradient(135deg, #f8fdf9 0%, #ecfdf5 100%);
    padding: 80px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.min-vh-75 {
    min-height: 75vh;
}

.pro-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.pro-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 24px;
}

.pro-hero-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.pro-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Professional Buttons */
.pro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.pro-btn-primary {
    background: var(--primary);
    color: white;
}

.pro-btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

.pro-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pro-btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.pro-btn-white {
    background: white;
    color: var(--primary);
}

.pro-btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.pro-btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.pro-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Hero Stats */
.pro-hero-stats {
    display: flex;
    gap: 40px;
}

.pro-stat-item {
    display: flex;
    flex-direction: column;
}

.pro-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.pro-stat-label {
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.pro-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.pro-hero-card {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pro-hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #bbf7d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pro-hero-icon i {
    font-size: 48px;
    color: var(--primary);
}

.pro-delivery-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pro-delivery-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pro-delivery-text {
    font-size: 14px;
    color: var(--gray-500);
}

/* Section Styles */
.pro-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pro-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.pro-section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Categories Section */
.pro-categories {
    padding: 100px 0;
    background: white;
}

.pro-category-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pro-category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.1);
    transform: translateY(-4px);
}

.pro-category-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pro-category-icon i {
    font-size: 24px;
    color: white;
}

.pro-category-food {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.pro-category-pharmacy {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.pro-category-grocery {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.pro-category-content {
    flex: 1;
}

.pro-category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pro-category-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
}

.pro-category-arrow {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pro-category-arrow i {
    color: var(--gray-400);
    font-size: 14px;
}

.pro-category-card:hover .pro-category-arrow {
    background: var(--primary);
}

.pro-category-card:hover .pro-category-arrow i {
    color: white;
}

/* Features Section */
.pro-features {
    padding: 100px 0;
    background: var(--gray-50);
}

.pro-feature-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.pro-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pro-feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.pro-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pro-feature-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.6;
}

/* How It Works Section */
.pro-how-it-works {
    padding: 100px 0;
    background: white;
}

.pro-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.pro-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    padding: 0 24px;
}

.pro-step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pro-step-content {
    padding: 0 8px;
}

.pro-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pro-step-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

.pro-step-line {
    width: 80px;
    height: 2px;
    background: var(--gray-200);
    margin-top: 28px;
}

/* CTA Section */
.pro-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.pro-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pro-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.pro-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.pro-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Professional Footer */
.pro-footer {
    background: var(--gray-900);
    padding: 80px 0 24px;
    color: white;
}

.pro-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.pro-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.pro-footer-logo i {
    color: var(--primary);
    font-size: 2rem;
}

.pro-footer-tagline {
    color: var(--gray-400);
    margin-bottom: 24px;
    font-size: 14px;
}

.pro-social-links {
    display: flex;
    gap: 12px;
}

.pro-social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s ease;
    text-decoration: none;
}

.pro-social-link:hover {
    background: var(--primary);
    color: white;
}

.pro-footer-heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 20px;
}

.pro-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-footer-links li {
    margin-bottom: 12px;
}

.pro-footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.pro-footer-links a:hover {
    color: var(--primary);
}

.pro-footer-contact p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-footer-contact i {
    color: var(--primary);
    width: 16px;
}

.pro-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.pro-footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive Design for Professional Homepage */
@media (max-width: 1200px) {
    .pro-footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .pro-footer-brand {
        grid-column: span 3;
        margin-bottom: 24px;
    }
}

@media (max-width: 992px) {
    .pro-hero-title {
        font-size: 2.75rem;
    }
    
    .pro-hero {
        padding: 60px 0;
    }
    
    .pro-step-line {
        display: none;
    }
    
    .pro-steps {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .pro-hero-title {
        font-size: 2.25rem;
    }
    
    .pro-hero-text {
        font-size: 1.1rem;
    }
    
    .pro-hero-stats {
        gap: 24px;
    }
    
    .pro-stat-number {
        font-size: 1.5rem;
    }
    
    .pro-section-title {
        font-size: 2rem;
    }
    
    .pro-categories,
    .pro-features,
    .pro-how-it-works,
    .pro-cta {
        padding: 60px 0;
    }
    
    .pro-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .pro-footer-brand {
        grid-column: span 2;
    }
    
    .pro-cta-title {
        font-size: 2rem;
    }
    
    .pro-step {
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .pro-hero-actions {
        flex-direction: column;
    }
    
    .pro-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pro-hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .pro-stat-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .pro-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-footer-brand {
        grid-column: span 1;
    }
    
    .pro-cta-actions {
        flex-direction: column;
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE DESIGN
   Professional Mobile Experience
   ============================================ */

/* Global Mobile Container Improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .container.py-5 {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
    
    /* Typography Mobile Adjustments */
    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.25rem !important; }
    
    /* Products/Vendors Header */
    .products-header,
    .ultra-modern-products .products-header {
        text-align: center;
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .products-title {
        font-size: 1.75rem !important;
        margin-bottom: 8px;
    }
    
    .products-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
    
    /* Category Pills Mobile */
    .category-pills-section {
        padding: 0 8px;
        margin-bottom: 24px;
    }
    
    .category-pills-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .category-pill {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        border-radius: 25px !important;
        min-width: auto;
        flex: 0 0 auto;
    }
    
    .category-pill .pill-content {
        gap: 6px;
    }
    
    .category-pill i {
        font-size: 0.9rem;
    }
    
    /* Products/Vendors Grid Mobile */
    .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 4px;
    }
    
    /* Product/Vendor Card Mobile */
    .product-card-modern,
    .vendor-card {
        border-radius: 16px !important;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        background: white;
        margin: 0;
    }
    
    .product-image-container {
        height: 200px !important;
        position: relative;
    }
    
    .product-image-modern {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .vendor-placeholder {
        height: 200px !important;
        font-size: 3rem !important;
    }
    
    .product-content {
        padding: 16px !important;
    }
    
    .product-title-modern {
        font-size: 1.1rem !important;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .product-price-modern {
        font-size: 1.2rem !important;
        font-weight: 700;
        color: var(--primary);
    }
    
    .vendor-info {
        flex-wrap: wrap;
        gap: 8px !important;
        margin-bottom: 12px;
    }
    
    .vendor-type {
        font-size: 0.85rem !important;
    }
    
    .vendor-address {
        font-size: 0.85rem !important;
        margin-bottom: 12px;
    }
    
    .vendor-stats {
        margin-bottom: 16px;
    }
    
    .product-actions {
        display: flex;
        gap: 10px;
        margin-top: 12px;
    }
    
    .product-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 12px !important;
        flex: 1;
        text-align: center;
        justify-content: center;
    }
    
    /* Search Section Mobile */
    .search-section {
        padding: 0 8px;
        margin-bottom: 20px;
    }
    
    .search-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-input-wrapper {
        width: 100%;
    }
    
    .search-input {
        padding: 14px 16px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    
    .category-filter-wrapper {
        width: 100%;
    }
    
    .category-filter {
        width: 100%;
        padding: 14px 16px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    
    /* No Products/Vendors State Mobile */
    .no-products-modern {
        padding: 40px 20px !important;
        text-align: center;
    }
    
    .no-products-icon {
        font-size: 3rem !important;
        margin-bottom: 16px;
    }
    
    .no-products-title {
        font-size: 1.25rem !important;
        margin-bottom: 8px;
    }
    
    .no-products-text {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
    }
    
    /* Vendor Header Info Mobile */
    .vendor-header-info {
        padding: 16px;
        background: var(--gray-50);
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .vendor-header-info .d-flex {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .vendor-header-content h2 {
        font-size: 1.25rem !important;
        margin-bottom: 8px;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 12px 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .navbar-toggler {
        padding: 8px 12px;
        border: none !important;
        background: var(--gray-100) !important;
        border-radius: 8px !important;
    }
    
    .navbar-collapse {
        background: white;
        padding: 16px;
        border-radius: 12px;
        margin-top: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        gap: 4px !important;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        border-radius: 8px;
    }
    
    .nav-link:hover {
        background: var(--gray-50);
    }
    
    .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        padding-left: 16px !important;
    }
    
    /* Cards Mobile */
    .card {
        border-radius: 16px !important;
        border: none !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    .card-header {
        padding: 16px !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    .card-body {
        padding: 16px !important;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
    }
    
    .btn-lg {
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }
    
    /* Forms Mobile */
    .form-control,
    .form-select {
        padding: 14px 16px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    
    .form-label {
        font-size: 0.9rem !important;
        margin-bottom: 8px;
    }
    
    /* Tables Mobile */
    .table-responsive {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .table {
        font-size: 0.85rem;
    }
    
    .table th,
    .table td {
        padding: 12px 8px !important;
    }
    
    /* Alerts Mobile */
    .alert {
        padding: 14px 16px !important;
        border-radius: 12px !important;
        font-size: 0.9rem;
    }
    
    /* Badge Mobile */
    .badge {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
    }
    
    /* Footer Mobile */
    footer {
        padding: 32px 16px !important;
    }
    
    footer .row > div {
        margin-bottom: 24px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .products-title {
        font-size: 1.5rem !important;
    }
    
    .category-pill {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .product-content {
        padding: 14px !important;
    }
    
    .product-title-modern {
        font-size: 1rem !important;
    }
    
    .product-btn {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* Touch-Friendly Improvements */
@media (hover: none) and (pointer: coarse) {
    .product-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    }
    
    .overlay-actions {
        position: absolute;
        bottom: 10px;
        right: 10px;
    }
    
    .overlay-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Ensure all tappable elements are at least 44px */
    .btn,
    .nav-link,
    .dropdown-item,
    .category-pill {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ============================================
   CART PAGE MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
        padding: 16px !important;
    }
    
    .cart-item .item-image {
        width: 100%;
        text-align: center;
        margin: 0 !important;
    }
    
    .cart-item .item-image img {
        width: 120px;
        height: 120px;
        border-radius: 12px;
    }
    
    .cart-item .item-details {
        width: 100%;
        text-align: center;
    }
    
    .cart-item .item-details h6 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .cart-item .item-quantity {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 8px 0 !important;
    }
    
    .cart-item .item-quantity .input-group {
        width: 150px !important;
    }
    
    .cart-item .item-price {
        width: 100%;
        text-align: center;
        margin: 0 !important;
    }
    
    .cart-item .item-price .fw-bold {
        font-size: 1.25rem;
        color: var(--primary);
    }
    
    .cart-item .item-actions {
        width: 100%;
        text-align: center;
    }
    
    .cart-item .item-actions .btn {
        width: 100%;
        padding: 12px !important;
    }
    
    /* Order Summary Mobile */
    .col-lg-4 .card {
        margin-top: 20px;
    }
    
    .col-lg-4 .card-body .h5 {
        font-size: 1.25rem !important;
    }
    
    .col-lg-4 .btn-lg {
        padding: 16px 24px !important;
        font-size: 1.1rem !important;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .ultra-modern-product-detail .container {
        padding: 12px !important;
    }
    
    .ultra-modern-product-detail .container.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .breadcrumb-modern {
        padding: 8px 0;
        margin-bottom: 12px;
        display: none; /* Hide breadcrumb on mobile for cleaner look */
    }
    
    .breadcrumb-items {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .product-main-section {
        margin-bottom: 1.5rem;
    }
    
    .product-main-section .row {
        flex-direction: column;
        margin: 0 !important;
    }
    
    .product-main-section .row > [class*="col-"] {
        padding: 0 !important;
    }
    
    .product-image-modern {
        margin-bottom: 16px;
    }
    
    .product-image-modern .image-container {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        background: #fff;
    }
    
    .product-image-modern .image-container:hover {
        transform: none;
    }
    
    .product-image-modern .product-image {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: contain;
        padding: 1rem;
    }
    
    .product-image-modern .image-overlay {
        display: none; /* Hide zoom overlay on mobile */
    }
    
    .product-info-modern {
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 16px;
    }
    
    .product-meta-modern {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .category-badge,
    .status-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .product-title-detail {
        font-size: 1.35rem !important;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .product-price-detail {
        font-size: 1.5rem !important;
        margin-bottom: 16px;
    }
    
    .vendor-info-modern {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.02));
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 16px;
        border: 1px solid rgba(34, 197, 94, 0.1);
    }
    
    .vendor-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .vendor-details {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0;
        background: transparent;
    }
    
    .vendor-logo {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        object-fit: contain;
        background: #fff;
        padding: 4px;
    }
    
    .vendor-logo-placeholder {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .vendor-text .vendor-name {
        font-size: 0.95rem;
    }
    
    .vendor-text .vendor-type {
        font-size: 0.8rem;
    }
    
    .product-details-modern {
        margin-bottom: 16px;
    }
    
    .product-details-modern .details-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
    }
    
    .detail-item {
        padding: 12px;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.02));
        border: 1px solid rgba(34, 197, 94, 0.1);
    }
    
    .detail-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .detail-content .detail-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .detail-content .detail-value {
        font-size: 0.85rem;
    }
    
    .product-description-modern {
        margin-bottom: 16px;
        padding: 12px;
        background: var(--gray-50);
        border-radius: 10px;
    }
    
    .product-description-modern .description-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .description-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .add-to-cart-modern .cart-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .quantity-selector {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .quantity-label {
        font-size: 0.9rem;
    }
    
    .quantity-input-wrapper {
        justify-content: center;
    }
    
    .quantity-btn {
        width: 44px;
        height: 44px;
    }
    
    .quantity-input {
        width: 70px !important;
        height: 44px;
        font-size: 1rem;
        text-align: center;
    }
    
    .add-to-cart-btn {
        width: 100%;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
        min-height: 48px;
    }
    
    .back-to-products {
        margin-top: 16px;
    }
    
    .back-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 10px;
        min-height: 44px;
    }
    
    /* Login required message mobile */
    .login-required-message .alert {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .login-required-message .alert i.me-3 {
        margin-right: 0 !important;
        margin-bottom: 12px;
        font-size: 1.5rem;
    }
    
    .auth-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .auth-actions .btn {
        width: 100%;
        min-height: 44px;
    }
}

/* ============================================
   ORDERS LIST PAGE MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .ultra-modern-orders .container {
        padding: 16px !important;
    }
    
    .orders-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .orders-title {
        font-size: 1.5rem !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .orders-title i {
        font-size: 1.25rem;
    }
    
    .filter-modern {
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        padding: 12px 20px !important;
        justify-content: center;
    }
    
    .orders-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .order-card {
        padding: 16px;
        border-radius: 16px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .order-number {
        font-size: 1.1rem;
    }
    
    .order-status {
        width: 100%;
    }
    
    .status-badge {
        padding: 8px 16px !important;
        font-size: 0.85rem;
    }
    
    .order-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .info-item {
        padding: 10px;
        background: var(--gray-50);
        border-radius: 8px;
    }
    
    .info-label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .info-value strong {
        display: block;
    }
    
    .info-value small {
        display: block;
        margin-top: 2px;
    }
    
    .order-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        width: 100%;
        padding: 14px 20px !important;
        justify-content: center;
        border-radius: 12px !important;
    }
    
    .no-orders-state {
        padding: 40px 20px;
    }
    
    .no-orders-icon {
        font-size: 3rem;
    }
    
    .no-orders-title {
        font-size: 1.25rem;
    }
    
    .start-shopping-btn {
        width: 100%;
        padding: 14px 24px !important;
    }
}

/* ============================================
   DASHBOARD PAGES MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .dashboard-title {
        font-size: 1.5rem !important;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .dashboard-section {
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .quick-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .quick-action-btn {
        padding: 16px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
        border-radius: 12px;
    }
    
    .quick-action-btn i {
        font-size: 1.5rem;
    }
}

/* ============================================
   AUTH PAGES (LOGIN/REGISTER) MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .auth-container {
        padding: 20px 16px;
    }
    
    .auth-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .auth-header {
        margin-bottom: 24px;
    }
    
    .auth-title {
        font-size: 1.5rem !important;
    }
    
    .auth-subtitle {
        font-size: 0.9rem;
    }
    
    .auth-form .form-group {
        margin-bottom: 16px;
    }
    
    .auth-form .form-control {
        padding: 14px 16px !important;
        font-size: 1rem !important;
    }
    
    .auth-form .btn-primary {
        padding: 14px 24px !important;
        font-size: 1rem !important;
        width: 100%;
    }
    
    .auth-links {
        margin-top: 20px;
        text-align: center;
    }
    
    .auth-links a {
        display: block;
        padding: 12px;
    }
    
    .role-selector {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .role-option {
        padding: 16px 12px;
        border-radius: 12px;
        font-size: 0.9rem;
    }
    
    .role-option i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
}

/* ============================================
   HERO SECTION MOBILE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
    .pro-hero {
        padding: 40px 0;
    }
    
    .pro-hero-content {
        text-align: center;
    }
    
    .pro-badge {
        margin: 0 auto 16px;
    }
    
    .pro-hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .pro-hero-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .pro-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .pro-hero-actions .pro-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .pro-hero-stats {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    
    .pro-stat-item {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
}

/* ============================================
   CATEGORY CARDS MOBILE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
    .pro-categories {
        padding: 40px 0;
    }
    
    .pro-section-header {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .pro-section-title {
        font-size: 1.5rem !important;
    }
    
    .pro-section-subtitle {
        font-size: 0.9rem;
    }
    
    .pro-category-card {
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 16px;
    }
    
    .pro-category-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .pro-category-title {
        font-size: 1.1rem;
    }
    
    .pro-category-desc {
        font-size: 0.85rem;
    }
}

/* ============================================
   FEATURES SECTION MOBILE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
    .pro-features {
        padding: 40px 0;
    }
    
    .pro-feature-card {
        padding: 24px 20px;
        border-radius: 16px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .pro-feature-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 16px;
    }
    
    .pro-feature-title {
        font-size: 1.1rem;
    }
    
    .pro-feature-desc {
        font-size: 0.9rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION MOBILE
   ============================================ */
@media (max-width: 768px) {
    .pro-how-it-works {
        padding: 40px 0;
    }
    
    .pro-steps {
        flex-direction: column;
        gap: 24px;
    }
    
    .pro-step {
        text-align: center;
        padding: 0 16px;
    }
    
    .pro-step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin: 0 auto 16px;
    }
    
    .pro-step-title {
        font-size: 1.1rem;
    }
    
    .pro-step-desc {
        font-size: 0.9rem;
    }
    
    .pro-step-line {
        display: none;
    }
}

/* ============================================
   CTA SECTION MOBILE
   ============================================ */
@media (max-width: 768px) {
    .pro-cta {
        padding: 40px 0;
    }
    
    .pro-cta-content {
        padding: 32px 20px;
        border-radius: 20px;
        text-align: center;
    }
    
    .pro-cta-title {
        font-size: 1.5rem !important;
        margin-bottom: 12px;
    }
    
    .pro-cta-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .pro-cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .pro-cta-actions .pro-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FOOTER MOBILE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
    .pro-footer {
        padding: 40px 16px 24px;
    }
    
    .pro-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    
    .pro-footer-brand {
        text-align: center;
    }
    
    .pro-footer-logo {
        justify-content: center;
    }
    
    .pro-footer-about {
        text-align: center;
    }
    
    .pro-footer-social {
        justify-content: center;
    }
    
    .pro-footer-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .pro-footer-links {
        text-align: center;
    }
    
    .pro-footer-link {
        padding: 8px 0;
    }
    
    .pro-footer-contact-item {
        justify-content: center;
    }
    
    .pro-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 24px;
    }
    
    .pro-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}