/* 
 * Vendor Portal Vibrant Premium - High Energy & Modern Enterprise
 * Derived from Admin Design System for Brand Consistency
 */

:root {
    /* Brand Colors - Vendor Specific Gold/Orange */
    --primary: #fa9e09;
    --primary-alt: #e38d00;
    --primary-soft: rgba(250, 158, 9, 0.12);
    --primary-gradient: linear-gradient(135deg, #fa9e09 0%, #ffb347 100%);
    --secondary: #0F172A;
    
    /* Neutral Palette */
    --bg-main: #F8FAFC; 
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --border-soft: #F1F5F9;
    
    /* Text Palette */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    
    /* Semantic Colors */
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #0EA5E9;

    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-floating: 0 12px 48px -12px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 5px 10px -5px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 10px 30px -5px var(--primary-soft);
    --shadow-active: 0 0 0 4px var(--primary-soft);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-main) !important;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vendor-wrapper {
    display: flex;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.vendor-sidebar {
    width: 270px;
    background: #FFFFFF;
    border-right: 1px solid #F1F5F9;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1040;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.02);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.sidebar-nav::-webkit-scrollbar {
    width: 5px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: var(--border-soft);
    border-radius: 10px;
}

.vendor-main {
    flex: 1;
    margin-left: 270px;
    transition: all 0.3s ease;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vendor-guest-full {
    margin-left: 0 !important;
    padding: 0 !important;
}

@media (max-width: 991px) {
    .vendor-sidebar { transform: translateX(-100%); }
    .vendor-main { 
        margin-left: 0; 
        padding-bottom: 80px !important; /* Account for bottom nav */
    }
    .sidebar-open .vendor-sidebar { transform: translateX(0); }
}

/* Safe Area Support for Modern Mobile Devices */
:root {
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
}

body {
    padding-bottom: var(--safe-area-inset-bottom) !important;
}

/* Enterprise Navigation Links */
.vendor-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 28px;
    margin: 2px 0;
    color: #475569;
    font-family: 'Outfit';
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
}

.vendor-nav-link i {
    font-size: 1.1rem;
    margin-right: 16px;
    width: 24px;
    text-align: center;
    color: #94A3B8;
    transition: all 0.25s;
}

.vendor-nav-link:hover {
    background: #F8FAFC;
    color: var(--primary);
}

.vendor-nav-link:hover i {
    color: var(--primary);
}

.vendor-nav-link.active {
    background: linear-gradient(to right, rgba(250, 158, 9, 0.08), transparent);
    color: var(--primary) !important;
    border-left-color: var(--primary);
    font-weight: 700;
}

.vendor-nav-link.active i {
    color: var(--primary) !important;
}

.nav-header {
    padding: 32px 28px 12px;
    font-size: 0.725rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94A3B8;
    opacity: 0.8;
}

/* Cards & Containers */
.card {
    background: #FFFFFF !important;
    border: 1px solid var(--border-soft) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-floating) !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: var(--shadow-premium) !important;
}

.hero-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7)) !important;
    border: 1px solid rgba(250, 158, 9, 0.1) !important;
    box-shadow: var(--shadow-glow) !important;
}

.card-header {
    background: transparent !important;
    border-bottom: 1px solid var(--border-soft) !important;
    padding: 1.25rem 1.75rem !important;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Vendor Specific: Order Progress Badges */
.status-badge {
    padding: 6px 14px;
    font-weight: 700;
    border-radius: 99px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-Ordered { background: #EBF8FF; color: #2B6CB0; }
.status-Processing { background: #F1F5F9; color: #475569; }
.status-Rescheduled { background: #FEF3C7; color: #D97706; }
.status-Completed { background: #DCFCE7; color: #15803D; }
.status-Cancelled { background: #FEE2E2; color: #B91C1C; }

/* Buttons & Inputs */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 700;
    padding: 10px 24px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: #FFFFFF !important;
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(250, 158, 9, 0.4);
    transform: translateY(-1px);
}

.form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-active);
}

/* Global Placeholder Style - Premium Subtle Look */
::placeholder {
    color: #CBD5E1 !important;
    opacity: 1 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.form-control::placeholder {
    color: #CBD5E1 !important;
}

/* Credit Badge */
.credit-badge {
    background: var(--primary-gradient);
    color: #fff;
    padding: 8px 16px;
    border-radius: 99px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(250, 158, 9, 0.2);
}

/* Dashboard KPI Section */
.kpi-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-floating);
    transition: transform 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-5px);
}

.kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.kpi-content .stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.kpi-content .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12) !important;
}

/* Area Analytics Sidebar */
.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.analytics-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.analytics-item:hover {
    background: var(--bg-main);
    border-color: var(--primary-soft);
}

/* Operations Intelligence Center Upgrades */
.filter-bar {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-floating);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border: 1px solid var(--border-soft);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.chart-container {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-floating);
    border: 1px solid var(--border-soft);
    position: relative;
}

.chart-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 
    1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.kpi-variant-inflow { border-left: 4px solid var(--info); }
.kpi-variant-logistics { border-left: 4px solid var(--warning); }
.kpi-variant-market { border-left: 4px solid var(--primary); }
.kpi-variant-success { border-left: 4px solid var(--success); }

@media (max-width: 768px) {
    .filter-bar { gap: 1rem; }
}

/* Logistics Matrix Table */
.matrix-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.matrix-table {
    margin-bottom: 0;
}

.matrix-table th {
    background: #f8fafc;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-soft);
}

.matrix-table td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
}

.matrix-table tr:hover td {
    background: #fdfdfd;
}

.load-badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.75rem;
}

.load-badge-active { background: var(--info-soft); color: var(--info); }
.load-badge-success { background: var(--success-soft); color: var(--success); }
.load-badge-total { background: var(--bg-main); color: var(--text-muted); }

/* Inventory Search & Filtering */
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.5;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px var(--primary-soft);
    border-color: var(--primary-soft);
}

.input-group-lg .form-control {
    font-size: 0.95rem;
    height: auto;
}

.btn-white {
    background: #fff;
    color: var(--secondary);
    border: 1px solid var(--border-soft);
}

.btn-white:hover {
    background: #f8fafc;
    border-color: var(--text-light);
}

/* Diagnostic Analysis Suite - Detail View Overhaul */
.diagnostic-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.diagnostic-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border: 1px solid transparent;
}

.diagnostic-item.pass {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.03);
}

.diagnostic-item.fail {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.03);
}

.diagnostic-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.diagnostic-value {
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit';
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.logistics-widget {
    border-left: 4px solid var(--primary);
    background: linear-gradient(to right, var(--primary-soft), transparent);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    position: relative;
    z-index: 1;
}

.timeline-dot.active {
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.hero-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
}

/* Re-quote Adjustment Suite */
.diag-nav {
    position: sticky;
    top: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    margin: 0 -1.5rem 2rem -1.5rem;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border-soft);
}

.diag-nav-link {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    transition: all 0.2s ease;
}

.diag-nav-link:hover {
    background: var(--bg-main);
    color: var(--primary);
}

.diag-section {
    scroll-margin-top: 140px;
    margin-bottom: 4rem;
}

.diag-tile {
    cursor: pointer;
    background: white;
    border: 2px solid var(--border-soft);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    position: relative;
    user-select: none;
}

.diag-tile input {
    position: absolute;
    opacity: 0;
}

.diag-tile:hover {
    border-color: var(--primary-soft);
    background: var(--bg-main);
    transform: translateY(-2px);
}

.diag-tile.active {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: 0 4px 12px rgba(250, 158, 9, 0.15);
}

.diag-tile-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.diag-tile.active .diag-tile-label {
    color: var(--primary);
}

.action-bar-sticky {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid var(--border-soft);
    padding: 1.5rem;
    margin: 3rem -1.5rem -1.5rem -1.5rem;
    z-index: 100;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.btn-group.rounded-pill {
    border-radius: 50rem !important;
    padding: 2px;
    background: var(--border-soft);
    display: inline-flex;
    align-items: stretch;
}

.btn-group.rounded-pill .btn {
    border-radius: 50rem !important;
    border: none !important;
    margin: 0 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-group.rounded-pill .btn-primary {
    background: var(--primary) !important;
    box-shadow: 0 2px 8px rgba(250, 158, 9, 0.25);
}

.btn-group.rounded-pill .btn-white {
    background: transparent;
    border: none !important;
}

.btn-group.rounded-pill .btn-white:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Operational Alerts (Contextual) */
.bg-danger-soft { background-color: rgba(239, 68, 68, 0.1); }
.bg-warning-soft { background-color: rgba(245, 158, 11, 0.1); }

.scroll-y {
    overflow-y: auto;
}

.scroll-y::-webkit-scrollbar {
    width: 6px;
}

.scroll-y::-webkit-scrollbar-thumb {
    background: var(--border-soft);
    border-radius: 10px;
}

/* Pagination Standardization */
.pagination {
    gap: 0.5rem;
}

.pagination .page-item .page-link {
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 1px solid var(--border-soft);
    color: var(--secondary);
    margin: 0;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(250, 158, 9, 0.3);
}

/* Re-quote v2: Action Groups & Chips */
.action-group {
    display: flex;
    background: var(--bg-main);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    gap: 4px;
}

.action-btn {
    flex: 1;
    cursor: pointer;
    padding: 0.75rem;
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    user-select: none;
}

.action-btn.btn-no { color: var(--text-muted); }
.action-btn.btn-yes { color: var(--text-muted); }

.action-btn:hover { background: rgba(0,0,0,0.03); }

.action-btn.active.no {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #EF4444 !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.action-btn.active.yes {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10B981 !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.diag-chip.active {
    background: var(--primary-soft) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(250, 158, 9, 0.1);
}

.customer-badge {
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(250, 158, 9, 0.1);
    color: var(--primary);
    border: 1px solid rgba(250, 158, 9, 0.2);
    letter-spacing: 0.02em;
}

.pristine-anchor {
    background: rgba(16, 185, 129, 0.05) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
    color: #10B981 !important;
}

.pristine-anchor.active {
    background: #10B981 !important;
    color: white !important;
    border-color: #10B981 !important;
}

/* Global Crystal Loader */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    flex-direction: column;
    gap: 20px;
}

.crystal-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(250, 158, 9, 0.1);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: crystalSpin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 30px rgba(250, 158, 9, 0.2);
}

.loader-text {
    font-family: 'Outfit';
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

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

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

/* Sidebar Refined Logout */
.sidebar-footer {
    padding: 12px 0;
    border-top: 1px solid #F1F5F9;
    margin-top: auto;
    background: #FFFFFF;
}

.logout-link {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    color: #EF4444 !important;
    font-family: 'Outfit';
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.logout-link i {
    font-size: 1.1rem;
    margin-right: 16px;
    width: 24px;
    text-align: center;
}

.logout-link:hover {
    background: rgba(239, 68, 68, 0.04);
    border-left-color: #EF4444;
}

/* Dashboard Intelligence Hub Components */
.glass-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07) !important;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    position: relative;
}

.activity-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: -16px;
    width: 2px;
    background: #F1F5F9;
}

.activity-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: white;
    z-index: 1;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 0.825rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 2px;
}

.activity-desc {
    font-size: 0.725rem;
    color: #64748B;
    font-weight: 500;
}

.activity-time {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
}

.quick-action-bar {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.quick-action-btn {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.quick-action-btn:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(250, 158, 9, 0.15);
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
    transition: all 0.3s;
}

.quick-action-btn:hover .quick-action-icon {
    background: var(--primary);
    color: white;
}

.quick-action-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #1E293B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-fulfillment {
    background: linear-gradient(135deg, #10B981, #059669);
    padding: 4px 12px;
    border-radius: 50rem;
    color: white;
    font-weight: 800;
    font-size: 0.7rem;
}
