:root {
    /* Quiet Luxury — Deep Navy + Gold */
    --bg-base: #0a0f1e;
    --bg-surface: rgba(15, 23, 42, 0.55);
    --bg-surface-hover: rgba(30, 41, 59, 0.7);
    --bg-panel: rgba(12, 18, 36, 0.85);
    
    /* Text */
    --text-primary: #f1ede6;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    
    /* Glowing Borders */
    --border-subtle: rgba(184, 155, 94, 0.12);
    --border-strong: rgba(184, 155, 94, 0.25);
    --border-focus: #b89b5e;
    
    /* Gold Accent */
    --accent: #b89b5e;
    --accent-hover: #a3884e;
    --accent-fg: #0a0f1e;
    --accent-gradient: linear-gradient(135deg, #b89b5e 0%, #d4b978 50%, #c9a84c 100%);
    
    /* Status */
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.12);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.12);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.12);
    --info: #b89b5e;
    --info-bg: rgba(184, 155, 94, 0.12);

    /* Shadows & Effects */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 4px 24px rgba(184, 155, 94, 0.2);
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

body {
    background-color: var(--bg-base);
    background-image: radial-gradient(ellipse at top right, rgba(184, 155, 94, 0.06), transparent 50%),
                      radial-gradient(ellipse at bottom left, rgba(184, 155, 94, 0.04), transparent 50%);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    background-attachment: fixed;
}

::selection {
    background: var(--accent);
    color: var(--accent-fg);
}

/* Animations */
.view {
    display: none;
    opacity: 0;
}
.view.active {
    display: block;
    animation: fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* =========================================
   LOGIN SPLIT LAYOUT (Enhanced)
   ========================================= */
.login-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-sidebar {
    background-color: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-subtle);
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 10;
    color: var(--text-primary);
}

.brand span { color: var(--accent); }

.brand-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    filter: drop-shadow(0 0 6px rgba(184, 155, 94, 0.4));
}

.sidebar-content { z-index: 10; }

.sidebar-content h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f1ede6 0%, #b89b5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 90%;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.sidebar-footer {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    z-index: 10;
    letter-spacing: 1px;
}

.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-subtle), 0 0 40px rgba(0,0,0,0.5);
    position: relative;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.mobile-brand { display: none; margin-bottom: 2rem; }
.mobile-brand i { width: 32px; height: 32px; color: var(--accent); }

.login-container h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

/* =========================================
   FORMS & INPUTS
   ========================================= */
.input-group { margin-bottom: 1.5rem; }

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.input-wrapper { position: relative; display: flex; align-items: center; }

input[type="email"], input[type="password"], input[type="text"] {
    width: 100%;
    background-color: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

input:hover { border-color: var(--border-strong); }
input:focus { 
    outline: none; 
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15); 
}
::placeholder { color: var(--text-tertiary); }

.btn-eye {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-eye:hover { color: var(--text-primary); }
.btn-eye i { width: 18px; height: 18px; }

.error-msg {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: -0.75rem;
    margin-bottom: 1rem;
}

/* Checkbox */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}
.checkbox-container input { display: none; }
.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: var(--bg-base);
}
.checkbox-container:hover .checkmark { border-color: var(--text-secondary); }
.checkbox-container input:checked ~ .checkmark {
    background: var(--accent-gradient);
    border-color: transparent;
}
.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    width: 100%;
    background: var(--accent-gradient);
    color: var(--accent-fg);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.875rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 155, 94, 0.35);
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none;}

.btn-secondary {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-secondary:hover { 
    border-color: var(--border-strong); 
    background: var(--bg-surface-hover);
}

.btn-small {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-small:hover { border-color: var(--border-strong); color: var(--text-primary); }

.btn-ghost-sm {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}
.btn-ghost-sm:hover { color: var(--accent); }

.btn-ghost-text {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}
.btn-ghost-text:hover { color: var(--accent-hover); }

.switch-mode { margin-top: 1.5rem; text-align: center; }

/* Center Panel (Reset PW) */
.center-layout {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.panel {
    width: 100%;
    max-width: 420px;
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-subtle);
}

.panel-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.05);
}
.panel-icon i { width: 24px; height: 24px; }


/* =========================================
   DASHBOARD
   ========================================= */
.dash-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-nav {
    height: 70px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.user-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
}

.avatar {
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.avatar i { width: 14px; height: 14px; }

.btn-ghost-icon {
    background: none;
    border: 1px solid transparent;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost-icon:hover {
    background-color: var(--bg-surface);
    border-color: var(--border-subtle);
    color: var(--danger);
}

.dash-content {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-header {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.page-header h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Dashboard items & Grid */
.licenses-grid, .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Loading / Empty State */
.loading-state, .empty-state, .loading {
    padding: 5rem 2rem;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 1rem;
    background: var(--bg-surface);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    grid-column: 1 / -1;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}

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

/* =========================================
   LICENSE CARD ROW
   ========================================= */
.license-card {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.license-card:hover { 
    border-color: rgba(184, 155, 94, 0.3); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(184, 155, 94, 0.08);
    transform: translateY(-2px);
}

.license-card-header, .card-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
}

.license-card-title { display: flex; align-items: center; gap: 0.75rem; }
.license-card-icon { display: none; }

.card-title h3 { font-size: 1.15rem; font-weight: 600; }
.card-title > div:first-child { display: flex; flex-direction: column; gap: 0.35rem; }
.card-title .actions { display: flex; align-items: center; gap: 0.5rem; }

.license-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-label { font-size: 0.8rem; font-weight: 500; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-value { font-size: 1.1rem; font-weight: 600; color: var(--accent); }

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }

.badge-green { background: var(--success-bg); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-green::before { background-color: var(--success); }

.badge-blue { background: var(--info-bg); color: var(--info); border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-blue::before { background-color: var(--info); }

.badge-red { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.2); }
.badge-red::before { background-color: var(--danger); }

.badge-yellow { background: var(--warning-bg); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-yellow::before { background-color: var(--warning); }


/* Machines list */
.machines-section { display: flex; flex-direction: column; gap: 0.75rem; }

.machine-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}
.machine-item:hover {
    background: rgba(2, 6, 23, 0.8);
    border-color: rgba(184, 155, 94, 0.25);
}

.m-info { display: flex; align-items: center; gap: 1rem; }
.m-icon { 
    color: var(--accent); 
    background: rgba(184, 155, 94, 0.1);
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.m-icon i { width: 16px; height: 16px;}
.m-text { display: flex; flex-direction: column; gap: 0.15rem; }
.m-name { font-size: 0.9rem; font-weight: 500; }
.m-id { font-size: 0.8rem; color: var(--text-tertiary); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }

.btn-delete {
    background: none;
    border: none;
    color: var(--text-tertiary);
    padding: 0.4rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: 0.2s;
}
.btn-delete:hover { color: var(--danger); background-color: var(--danger-bg); }

/* Toast */
#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.toast {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-subtle), 0 10px 30px rgba(0,0,0,0.5);
    animation: slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.success i { color: var(--success); }
.toast.error i { color: var(--danger); }
.toast.info i { color: var(--info); }

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

/* =========================================
   SOCIAL LOGIN BUTTONS
   ========================================= */
.social-login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}
.social-login-separator::before,
.social-login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-subtle);
}
.social-login-separator span {
    padding: 0 1rem;
}

.social-login-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-border {
    flex: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
}

.btn-border:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

/* =========================================
   DASHBOARD TABS & PROFILE
   ========================================= */
.dash-tabs {
    display: flex;
    gap: 1rem;
    padding: 0 2rem;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.dash-tab-btn {
    background: none;
    border: none;
    color: var(--text-tertiary);
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.dash-tab-btn i { width: 18px; height: 18px; }

.dash-tab-btn:hover { color: var(--text-primary); }
.dash-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.profile-container {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 800px;
}

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

@media (max-width: 768px) {
    .login-sidebar { display: none; }
    .mobile-brand { display: block; }
    .login-main { padding: 1.5rem; }
    .dash-content { padding: 2rem 1.5rem; }
    .page-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* =========================================
   ADMIN TABS & STATS
   ========================================= */
.admin-tabs {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(15, 23, 42, 0.4);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-tertiary);
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fade-in 0.3s forwards; }

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

.stat-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label-large {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Audit Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th {
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 1px solid var(--border-subtle);
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    animation: fade-in 0.4s ease;
}

.alert-warning {
    background: var(--warning-bg);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.alert-warning i { color: #f59e0b; }

.alert i { width: 20px; height: 20px; flex-shrink: 0; }
.alert-content { font-size: 0.9rem; }

/* Download Area */
.product-download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
}

.p-info { flex: 1; }
.p-info h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.p-info p { font-size: 0.85rem; color: var(--text-tertiary); }

.btn-primary-sm {
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s;
}

.btn-primary-sm:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }

/* Help onboarding */
.help-onboarding {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(184, 155, 94, 0.05);
    border-left: 3px solid var(--accent);
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.help-onboarding i { width: 16px; height: 16px; color: var(--accent); }
.help-onboarding b { color: var(--text-primary); }

