/* ============================================
   Premium Components Library
   Buttons, Cards, Inputs, Badges, etc.
   ============================================ */

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Button Sizes */
.btn-xs {
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-xs);
    border-radius: var(--radius-sm);
}

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

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

.btn-xl {
    padding: var(--space-5) var(--space-8);
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
}

/* Primary Button */
.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 2px 8px var(--accent-primary-glow);
}

.btn-primary:hover {
    background: var(--accent-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 2px 8px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--whatsapp-glow);
}

/* Success Button */
.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: var(--success-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--success-glow);
}

/* Danger Button */
.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: var(--danger-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--danger-glow);
}

/* Secondary Button */
.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border-strong);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-soft);
}

/* Icon-only Button */
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
    background: var(--bg-muted);
    border: 1px solid var(--border-subtle);
    color: var(--icon-secondary);
}

.btn-icon:hover {
    background: var(--bg-surface);
    color: var(--icon-primary);
    border-color: var(--border-default);
}

.btn-icon.btn-sm {
    width: 32px;
    height: 32px;
}

.btn-icon.btn-lg {
    width: 48px;
    height: 48px;
}

/* Button with Badge */
.btn .btn-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: 600;
    background: var(--danger);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Cards
   ============================================ */

.card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card-solid {
    background: var(--bg-card-solid);
    backdrop-filter: none;
}

.card-hover:hover {
    border-color: var(--border-default);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-glow:hover {
    box-shadow: var(--shadow-glow-primary);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--border-subtle);
}

.card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.card-title i {
    color: var(--icon-secondary);
}

.card-subtitle {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-1);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

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

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

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.2);
}

/* ============================================
   Inputs
   ============================================ */

.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.input-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.input-required::after {
    content: '*';
    color: var(--danger);
    margin-left: var(--space-1);
}

.input {
    width: 100%;
    height: 44px;
    padding: 0 var(--space-4);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.input::placeholder {
    color: var(--text-muted);
}

.input:hover {
    border-color: var(--border-default);
}

.input:focus {
    outline: none;
    border-color: var(--accent-border);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: var(--bg-surface);
}

.input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.input-error {
    border-color: var(--danger);
}

.input-error:focus {
    box-shadow: 0 0 0 3px var(--danger-subtle);
}

/* Input Sizes */
.input-sm {
    height: 36px;
    font-size: var(--text-sm);
}

.input-lg {
    height: 52px;
    font-size: var(--text-md);
}

/* Textarea */
.textarea {
    min-height: 100px;
    padding: var(--space-3) var(--space-4);
    resize: vertical;
}

/* Input with Icon */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .input {
    padding-left: 44px;
}

.input-icon-wrapper .input-icon {
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    color: var(--icon-muted);
    font-size: 18px;
    pointer-events: none;
}

.input-icon-wrapper .input:focus+.input-icon,
.input-icon-wrapper .input:focus~.input-icon {
    color: var(--icon-secondary);
}

/* Search Input */
.search-input {
    padding-left: 44px;
    padding-right: 44px;
    border-radius: var(--radius-lg);
}

/* Select */
.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ============================================
   Badges
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 500;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.badge-primary {
    background: var(--accent-primary-subtle);
    color: var(--accent-primary-light);
}

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

.badge-warning {
    background: var(--warning-subtle);
    color: var(--warning-light);
}

.badge-danger {
    background: var(--danger-subtle);
    color: var(--danger-light);
}

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

.badge-neutral {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* Badge with dot */
.badge-dot {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

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

/* Status Dots */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot-success {
    background: var(--success);
    box-shadow: 0 0 8px var(--success-glow);
}

.status-dot-warning {
    background: var(--warning);
}

.status-dot-danger {
    background: var(--danger);
    box-shadow: 0 0 8px var(--danger-glow);
}

.status-dot-neutral {
    background: var(--text-muted);
}

/* Animated Status Dot */
.status-dot-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.status-dot-live {
    position: relative;
}

.status-dot-live::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================
   Avatars
   ============================================ */

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
    color: white;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-dark));
    flex-shrink: 0;
    overflow: hidden;
}

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

.avatar-xs {
    width: 24px;
    height: 24px;
    font-size: var(--text-xs);
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: var(--text-xs);
}

.avatar-lg {
    width: 48px;
    height: 48px;
    font-size: var(--text-md);
}

.avatar-xl {
    width: 64px;
    height: 64px;
    font-size: var(--text-xl);
}

.avatar-2xl {
    width: 80px;
    height: 80px;
    font-size: var(--text-2xl);
}

.avatar-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
}

.avatar-success {
    background: linear-gradient(135deg, var(--success), var(--success-light));
}

/* Avatar with Status */
.avatar-status {
    position: relative;
}

.avatar-status::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    border: 2px solid var(--bg-secondary);
}

.avatar-status.offline::after {
    background: var(--text-muted);
}

.avatar-status.busy::after {
    background: var(--danger);
}

/* ============================================
   Toggle Switch
   ============================================ */

.toggle {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.toggle input:checked+.toggle-slider {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.toggle input:checked+.toggle-slider::before {
    transform: translate(20px, -50%);
    background: white;
}

.toggle input:focus-visible+.toggle-slider {
    box-shadow: 0 0 0 3px var(--accent-primary-subtle);
}

/* ============================================
   Progress Bars
   ============================================ */

.progress {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-light));
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.progress-bar-success {
    background: linear-gradient(90deg, var(--success), var(--success-light));
}

.progress-bar-warning {
    background: linear-gradient(90deg, var(--warning), var(--warning-light));
}

.progress-bar-danger {
    background: linear-gradient(90deg, var(--danger), var(--danger-light));
}

.progress-bar-animated {
    background-size: 30px 30px;
    background-image: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
    from {
        background-position: 30px 0;
    }

    to {
        background-position: 0 0;
    }
}

/* ============================================
   Tooltips
   ============================================ */

[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-fast);
    z-index: var(--z-tooltip);
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Dividers
   ============================================ */

.divider {
    height: 1px;
    background: var(--border-subtle);
    margin: var(--space-4) 0;
}

.divider-vertical {
    width: 1px;
    height: 20px;
    background: var(--border-subtle);
}

/* ============================================
   Skeleton Loading
   ============================================ */

.skeleton {
    background: linear-gradient(90deg,
            var(--bg-tertiary) 0%,
            var(--bg-elevated) 50%,
            var(--bg-tertiary) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 14px;
    width: 100%;
}

.skeleton-title {
    height: 20px;
    width: 60%;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-card {
    height: 120px;
    width: 100%;
}

/* ============================================
   Empty States
   ============================================ */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12);
    text-align: center;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border-radius: 50%;
    margin-bottom: var(--space-6);
}

.empty-state-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.empty-state-description {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    max-width: 400px;
    margin-bottom: var(--space-6);
}

/* ============================================
   Dropdowns
   ============================================ */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}

.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: var(--space-2) 0;
}

/* ============================================
   Tables
   ============================================ */

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: var(--space-4) var(--space-5);
    text-align: left;
}

.table th {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-muted);
    border-bottom: 1px solid var(--border-subtle);
}

.table td {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.table tr:last-child td {
    border-bottom: none;
}

.table tbody tr {
    transition: background var(--transition-fast);
    background: var(--bg-surface);
}

.table tbody tr:hover {
    background: #F8FAFC;
}

.table tbody tr:hover td {
    color: var(--text-primary);
}

.table tbody tr.selected {
    background: var(--accent-soft);
}

/* ============================================
   Tabs
   ============================================ */

.tabs {
    display: flex;
    gap: var(--space-1);
    background: var(--bg-tertiary);
    padding: var(--space-1);
    border-radius: var(--radius-lg);
}

.tab {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-tertiary);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab:hover {
    color: var(--text-secondary);
}

.tab.active {
    background: var(--bg-card-solid);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

/* Underline Tabs */
.tabs-underline {
    display: flex;
    gap: var(--space-6);
    background: transparent;
    padding: 0;
    border-bottom: 1px solid var(--border-subtle);
}

.tabs-underline .tab {
    padding: var(--space-4) 0;
    border-radius: 0;
    position: relative;
}

.tabs-underline .tab.active {
    background: transparent;
    color: var(--accent-primary);
    box-shadow: none;
}

.tabs-underline .tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 1px 1px 0 0;
}

/* ============================================
   Modal
   ============================================ */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-modal-backdrop);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-modal);
}

.modal-backdrop.open .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
    font-size: var(--text-xl);
    font-weight: 600;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.modal-body {
    padding: var(--space-6);
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end;
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--border-subtle);
}

/* ============================================
   Toast Notifications
   ============================================ */

.toast-container {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    z-index: var(--z-tooltip);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: slideInRight var(--duration-slow) var(--ease-out);
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toast-success .toast-icon {
    color: var(--success);
}

.toast-warning .toast-icon {
    color: var(--warning);
}

.toast-danger .toast-icon {
    color: var(--danger);
}

.toast-info .toast-icon {
    color: var(--info);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.toast-message {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.toast-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toast-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* ============================================
   Light Mode Button Enhancements
   ============================================ */

[data-theme="light"] .btn-primary:hover {
    background: var(--accent-primary-light);
    color: white;
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-primary-glow);
}

[data-theme="light"] .btn-whatsapp:hover {
    background: var(--whatsapp-light);
    color: white;
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 6px 20px var(--whatsapp-glow);
}

[data-theme="light"] .btn-success:hover {
    background: var(--success-light);
    color: white;
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 6px 20px var(--success-glow);
}

[data-theme="light"] .btn-danger:hover {
    background: var(--danger-light);
    color: white;
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 6px 20px var(--danger-glow);
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    transform: scale(1.02);
    border-color: var(--border-strong);
}

[data-theme="light"] .btn-outline:hover {
    background: var(--accent-soft);
    color: var(--accent-primary);
    transform: scale(1.02);
}

[data-theme="light"] .btn-ghost:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    transform: scale(1.02);
}

/* Light mode outline button fix */
[data-theme="light"] .btn-outline-primary {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

[data-theme="light"] .btn-outline-primary:hover {
    background: var(--accent-soft);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.02);
}
