/* ==================== VARIÁVEIS E RESET ==================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Tema Profissional e Suave (brand: azul + teal, neutros cinza) */
    --primary: #1D4ED8;       /* Azul profissional */
    --primary-dark: #1E40AF;
    --primary-light: #93C5FD;

    --secondary: #0F766E;     /* Teal suave */
    --secondary-dark: #115E59;
    --secondary-light: #5EEAD4;

    --accent: #F59E0B;        /* Âmbar (destaques) */
    --accent-dark: #D97706;
    --accent-light: #FCD34D;

    --success: #10B981;      /* Verde esmeralda */
    --warning: #F59E0B;      /* Âmbar */
    --danger: #EF4444;       /* Vermelho coral */
    --info: #3B82F6;         /* Azul céu */

    /* Tons Neutros Sofisticados */
    --dark: #0F172A;         /* Azul escuro profundo */
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    --light: var(--gray-100);

    /* Gradientes discretos (menos “colorido”) */
    --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
    --gradient-royal: linear-gradient(135deg, #0F172A 0%, #1D4ED8 100%);
    --gradient-accent: linear-gradient(135deg, #0F766E 0%, #1D4ED8 100%);
    --gradient-ocean: linear-gradient(135deg, #0EA5E9 0%, #1D4ED8 100%);
    --gradient-forest: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-sunset: linear-gradient(135deg, #334155 0%, #0F172A 100%);
    --gradient-fire: linear-gradient(135deg, #1E40AF 0%, #0EA5E9 100%);

    /* Sombras Suaves e Profundas */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 18px rgba(29, 78, 216, 0.18);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transições Suaves */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Aliases usados em páginas antigas/inline */
    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --gray: var(--gray-600);
    --gray-light: var(--gray-200);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--gray-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVBAR ==================== */

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo h1:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-royal);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */

.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BUTTONS ==================== */

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* No HERO, o botão secundário fica no estilo “ghost” (para fundo escuro) */
.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-accent);
    color: var(--white);
}

.btn-success:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ==================== HERO STATS ==================== */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==================== FEATURES ==================== */

.features {
    padding: 6rem 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-royal);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--gradient-royal);
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==================== SEARCH SECTION ==================== */

.search-section {
    padding: 6rem 0;
    background: var(--light);
}

.search-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.search-section > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.search-results {
    max-width: 800px;
    margin: 0 auto;
}

.loading {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== RESULT CARDS ==================== */

.result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-royal);
    transform: scaleY(0);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.result-card:hover::before {
    transform: scaleY(1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.result-code {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.result-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.result-description {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.result-meta span {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

/* ==================== CONTACT ==================== */

.contact {
    padding: 6rem 0;
    background: var(--gray-100);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact .container > p {
    text-align: center;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card .btn {
    width: 100%;
    justify-content: center;
}

.contact-card .btn.btn-secondary {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.contact-card .btn.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* ==================== FOOTER ==================== */

footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-royal);
}

footer p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

footer p:last-child {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .features h2,
    .search-section h2,
    .contact h2,
    .dashboard-title {
        font-size: 1.75rem;
    }

    .features,
    .search-section,
    .contact {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
        padding: 0.75rem;
    }

    .search-box input {
        font-size: 16px; /* Previne zoom no iOS */
    }

    /* Dashboard Mobile */
    .dashboard-container {
        padding: 1rem;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-charts {
        grid-template-columns: 1fr;
    }

    .dashboard-tables {
        grid-template-columns: 1fr;
    }

    .dashboard-table {
        font-size: 0.875rem;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 0.75rem 0.5rem;
    }

    .dashboard-refresh-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Result Cards Mobile */
    .result-card {
        padding: 1.5rem;
    }

    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .result-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Contact Cards Mobile */
    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Stat Cards Mobile */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-charts {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-card,
    .contact-card {
        padding: 1.5rem;
    }

    .dashboard-stat-value {
        font-size: 2rem;
    }

    .dashboard-stat-icon {
        font-size: 2rem;
    }
}

/* ==================== ANIMATIONS ==================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ==================== DASHBOARD ==================== */

.dashboard-container {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.dashboard-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-royal);
    transform: scaleX(0);
    transition: var(--transition);
}

.dashboard-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.dashboard-stat-card:hover::before {
    transform: scaleX(1);
}

.dashboard-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.dashboard-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-stat-subtitle {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-chart-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.dashboard-chart-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.dashboard-chart-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dashboard-tables {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
}

.dashboard-table-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.dashboard-table-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table thead {
    background: var(--light);
}

.dashboard-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid var(--gray-light);
}

.dashboard-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.dashboard-table tr:hover {
    background: var(--light);
}

.dashboard-status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-shipped {
    background: #d4edda;
    color: #155724;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.dashboard-refresh-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--gradient-royal);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
}

.dashboard-refresh-btn:hover {
    transform: scale(1.15) rotate(180deg);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.dashboard-refresh-btn:active {
    transform: scale(0.95);
}

.dashboard-customer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.dashboard-customer-item:last-child {
    border-bottom: none;
}

.dashboard-customer-info {
    flex: 1;
}

.dashboard-customer-name {
    font-weight: 600;
    color: var(--dark);
}

.dashboard-customer-company {
    font-size: 0.875rem;
    color: var(--gray);
}

.dashboard-customer-orders {
    font-size: 0.875rem;
    color: var(--gray);
}

.dashboard-customer-total {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.125rem;
}

/* ==================== UTILITY CLASSES ==================== */

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }

.bg-primary { background: var(--primary); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
