:root {
    /* Color Palette - Del Solar Travel (Earthy & Professional) */
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-hover: #f1f5f9;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --text: #0f172a;
    --text-muted: #64748b;

    /* Brand Colors (Derived from Logo) */
    --primary: #922b21;
    /* Dark Red */
    --primary-dark: #7b241c;
    --primary-soft: rgba(146, 43, 33, 0.1);
    --accent: #d68910;
    /* Gold/Orange */

    --success: #059669;
    --error: #dc2626;

    /* Sidebar specific */
    --sidebar-bg: rgba(255, 255, 255, 0.8);
    --sidebar-text: #475569;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 0.5rem;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg: #0f172a;
    --surface: #1e293b;
    --surface-hover: #334155;
    --border: #334155;
    --border-hover: #475569;
    --text: #f1f5f9;
    --text-muted: #94a3b8;

    /* Brand Colors (Vibrant variants for Dark Mode) */
    --primary: #c0392b;
    --primary-dark: #a93226;
    --primary-soft: rgba(192, 57, 43, 0.2);
    --accent: #f39c12;

    --sidebar-bg: rgba(15, 23, 42, 0.8);
    --sidebar-text: #94a3b8;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.7);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.8);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
select,
textarea {
    font: inherit;
}

/* Utilities */
.muted {
    color: var(--text-muted);
}

.eyebrow {
    display: inline-flex;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.text-right {
    text-align: right;
}

/* Grid & Layout Utilities */
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

@media (max-width: 1280px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; }
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-wrap table {
    min-width: 800px; /* Ensure table doesn't get squashed */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
}

.stack-xl {
    display: grid;
    gap: 2rem;
}

/* Grid & Layout */
.shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar - Professional & Sleek */
.sidebar {
    background: var(--sidebar-bg);
    backdrop-filter: blur(12px);
    border-right: 1px solid var(--border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 40;
}

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

.brand-mark {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.75rem;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.brand-title {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.nav-list {
    display: grid;
    gap: 0.25rem;
}

.nav-list a,
.nav-group-toggle {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--sidebar-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
}

.nav-list a:hover,
.nav-group-toggle:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.nav-list a.active,
.nav-group-toggle.active {
    background: var(--primary-soft);
    color: var(--primary);
}

.nav-group {
    display: grid;
    gap: 0.25rem;
}

.nav-caret {
    font-size: 0.6rem;
    transition: transform 200ms ease;
    opacity: 0.5;
}

.nav-group.open .nav-caret {
    transform: rotate(180deg);
}

.nav-submenu {
    display: none;
    grid-gap: 0.125rem;
    padding-left: 1.5rem;
    margin-top: 0.125rem;
}

.nav-group.open .nav-submenu {
    display: grid;
}

.nav-submenu a {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.nav-disabled {
    opacity: 0.35 !important;
    pointer-events: none;
    font-style: italic;
}

.sidebar-footer {
    margin-top: auto;
    display: grid;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Topbar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    height: 72px;
    background: var(--sidebar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 30;
}

.menu-toggle {
    display: none;
}

.topbar-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.page-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.topbar-search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.topbar-search input {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
    transition: var(--transition);
}

.topbar-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-soft);
}

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

.icon-button {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.icon-button:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    color: var(--text);
}

/* Profile Menu */
.user-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 999px;
    transition: var(--transition);
    border: none;
    background: transparent;
}

.user-chip:hover {
    background: var(--surface-hover);
}

.user-chip-copy {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.user-chip-copy strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.user-chip-copy span {
    display: block;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    line-height: 1;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.user-avatar-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    object-fit: cover;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 200px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    display: grid;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 200ms ease;
}

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

.profile-dropdown-head {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    margin: -0.5rem -0.5rem 0.5rem -0.5rem;
    background: var(--surface-hover);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.profile-dropdown-head strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text);
}

.profile-dropdown-head span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.profile-role {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.profile-dropdown-links {
    display: grid;
    gap: 0.25rem;
}

.profile-link {
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-link:hover {
    background: var(--surface-hover);
    color: var(--primary);
}

.profile-logout {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.profile-logout-button {
    width: 100%;
    padding: 0.625rem;
    border: none;
    background: transparent;
    color: var(--error);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.profile-logout-button:hover {
    background: rgba(220, 38, 38, 0.05);
}

/* Page Content */
.page {
    padding: 2rem;
    display: grid;
    gap: 2rem;
    width: 100%;
    max-width: none;
}

/* Dashboard Cards */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.metric-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.metric-card strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Panels */
.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.panel-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.panel-header h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

/* Tables */
.table-wrap {
    overflow-x: auto;
}

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

th {
    padding: 0.875rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg);
}

td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

tbody tr:hover {
    background: var(--surface-hover);
}

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

.badge-lead {
    background: #fef3c7;
    color: #92400e;
}

.badge-active {
    background: #d1fae5;
    color: #065f46;
}

.badge-confirmed {
    background: #dbeafe;
    color: #1e40af;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-sm);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.button-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.button-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-secondary {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
}

.button-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
}

/* Forms */
.field {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    display: block; /* Ensure visibility */
}

.field input,
.field select,
.field textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.625rem 0.875rem;
    transition: var(--transition);
}

.field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Login - High Fidelity */
.guest-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    background-image: radial-gradient(circle at top left, var(--bg) 0%, var(--surface-hover) 100%);
    padding: 2rem;
    margin: 0;
}

.login-card-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--surface);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .login-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1e293b;
}

.login-visual {
    background: var(--primary);
    position: relative;
    padding: 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-visual-image {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80") center/cover;
    mix-blend-mode: overlay;
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.login-brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.login-copy {
    position: relative;
    z-index: 1;
}

.login-copy h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.login-copy p {
    opacity: 0.95;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 500;
}

.login-panel {
    padding: 4rem;
    display: flex;
    align-items: center;
}

.login-panel-inner {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.login-panel h1 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.login-panel p.muted {
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: 500;
}

[data-theme="dark"] .login-panel h1 { color: #f8fafc; }
[data-theme="dark"] .login-panel p.muted { color: #94a3b8; }
[data-theme="dark"] .field input {
    background: #0f172a;
    color: #f8fafc;
    border-color: #334155;
}
[data-theme="dark"] .field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
[data-theme="dark"] .login-visual {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
}
[data-theme="dark"] .btn-primary {
    background: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Light mode specific button enhancement */
[data-theme="light"] .button-primary {
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2), 0 2px 4px -2px rgba(220, 38, 38, 0.1);
}

/* Responsive & Adaptability Overhaul */

/* Tables Responsiveness Fix */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
}

table {
    min-width: 600px;
    /* Force scroll on very small screens */
}

/* Dashboard Grid Stacking */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Base Responsive Rules */
@media (max-width: 1200px) {
    .metric-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        width: 280px;
        transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    }

    .sidebar.open {
        transform: translateX(280px);
    }

    /* Overlay for sidebar */
    .sidebar.open::after {
        content: '';
        position: fixed;
        left: 280px;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(4px);
        z-index: -1;
    }

    .topbar {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        color: var(--text);
        cursor: pointer;
        transition: var(--transition);
        padding: 0;
    }

    .menu-toggle:hover {
        background: var(--surface-hover);
        border-color: var(--primary);
        color: var(--primary);
    }

    .topbar-search {
        display: none;
        /* Hide search in topbar on tablet/mobile */
    }

    .page {
        padding: 1.5rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-heading {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.5rem;
    }

    .dashboard-heading .button {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
    }

    .two-column {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .topbar-actions .user-chip-copy {
        display: none;
        /* Hide name on very small screens */
    }

    .page-title {
        font-size: 1rem;
    }
}

/* Toast Notifications - High Fidelity */
.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: grid;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    min-width: 320px;
    max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toast.hiding {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
    to { opacity: 0; transform: translateX(20px) scale(0.95); }
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: block;
}

.toast-message {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.toast-close {
    padding: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    color: var(--text);
}

.toast-close:hover {
    opacity: 1;
}

/* Toast Variants */
.toast-success { border-left: 4px solid var(--success); }
.toast-success .toast-icon { background: rgba(5, 150, 105, 0.1); color: var(--success); }

.toast-error { border-left: 4px solid var(--error); }
.toast-error .toast-icon { background: rgba(220, 38, 38, 0.1); color: var(--error); }

.toast-info { border-left: 4px solid var(--primary); }
.toast-info .toast-icon { background: var(--primary-soft); color: var(--primary); }

/* Feedback animations for form validation */
@keyframes pulsePositive {
    0% { box-shadow: 0 0 0 0 var(--primary-soft); }
    70% { box-shadow: 0 0 0 10px rgba(146, 43, 33, 0); }
    100% { box-shadow: 0 0 0 0 rgba(146, 43, 33, 0); }
}

.pulse-success {
    animation: pulsePositive 1s ease-out;
}