@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #13171f;
    --bg-card: rgba(25, 30, 41, 0.65);
    --gold: #d4af37;
    --gold-dark: #b89327;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --text-primary: #f5f6f8;
    --text-secondary: #a0a5b5;
    --text-muted: #6e7485;
    --success: #2ec4b6;
    --warning: #ff9f1c;
    --danger: #e71d36;
    --glass-border: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- MOBILE FRAME WRAPPER (Customer Menu) --- */
.mobile-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    padding-bottom: 75px; /* bottom navigation space */
}

/* Header */
.app-header {
    background: rgba(19, 23, 31, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--gold);
}

.table-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Hero Section */
.hero-banner {
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(212,175,55,0.05) 0%, rgba(10,11,13,0) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.hero-banner p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Category Slider */
.categories-container {
    display: flex;
    overflow-x: auto;
    padding: 12px 20px;
    gap: 10px;
    scrollbar-width: none; /* Firefox */
    position: sticky;
    top: 67px;
    background: var(--bg-secondary);
    z-index: 90;
    border-bottom: 1px solid var(--glass-border);
}

.categories-container::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

.category-tab {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--gold-glow);
    transform: translateY(-2px);
}

/* Menu Items Section */
.menu-section {
    padding: 20px;
    flex-grow: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Item Card */
.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.menu-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.item-img-placeholder {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f2833 0%, #0b0c10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
    color: var(--gold);
}

.item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.item-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.btn-add {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-add:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2px 6px;
}

.btn-qty {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.btn-qty:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qty-number {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 14px;
    text-align: center;
}

/* --- BOTTOM MENU BAR --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 68px;
    background: rgba(19, 23, 31, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    width: 60px;
    transition: var(--transition-smooth);
}

.nav-item svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.nav-item.active {
    color: var(--gold);
}

.nav-item.active svg {
    transform: scale(1.1);
}

/* Cart Icon Badge */
.cart-nav-badge {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--danger);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* --- CART DRAWER PANEL --- */
.cart-drawer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: 480px;
    height: 85vh;
    background: var(--bg-secondary);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border: 1px solid var(--glass-border);
    z-index: 200;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translate(-50%, 0);
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 2px;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 11, 13, 0.5);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 16px;
}

.summary-total {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-order {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: var(--bg-primary);
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* --- OVERLAY BACKDROP --- */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* --- TABLE SELECTION VIEW --- */
.table-select-container {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.welcome-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    padding: 0 20px;
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.table-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.table-card:hover, .table-card.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.table-card.selected h3 {
    color: var(--gold);
}

.table-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.table-card p {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* --- ORDER SUCCESS SCREEN --- */
.success-screen {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.success-screen.show {
    opacity: 1;
    pointer-events: auto;
}

.success-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(46, 196, 182, 0.15);
    border: 2px solid var(--success);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.25);
    animation: pulse 2s infinite;
}

.success-icon-wrap svg {
    width: 45px;
    height: 45px;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- WAITER DASHBOARD STYLE --- */
.waiter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.waiter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.waiter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.waiter-status-badge {
    background: rgba(255,255,255,0.05);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
}

.waiter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.waiter-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.waiter-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.waiter-card.pending {
    border-left: 4px solid var(--warning);
}

.waiter-card.preparing {
    border-left: 4px solid var(--gold);
}

.waiter-card.served {
    border-left: 4px solid var(--success);
}

.waiter-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.waiter-table-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.waiter-time-elapsed {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.waiter-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
}

.waiter-status.pending {
    background: rgba(255, 159, 28, 0.15);
    color: var(--warning);
}

.waiter-status.preparing {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.waiter-status.served {
    background: rgba(46, 196, 182, 0.15);
    color: var(--success);
}

.waiter-order-items {
    flex-grow: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.waiter-order-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.waiter-item-name {
    color: var(--text-secondary);
}

.waiter-item-qty {
    font-weight: 700;
}

.waiter-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.waiter-total {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.waiter-total span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.waiter-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-action.primary {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-action.primary:hover {
    background: var(--gold-dark);
}

.btn-action.success {
    background: var(--success);
    color: var(--bg-primary);
}

.btn-action.success:hover {
    background: #25a89b;
}

.btn-action.secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-action.secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Toast Notification for Waiter */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(19, 23, 31, 0.95);
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(46, 196, 182, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

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

/* Responsive adjust for mobile screens on Waiter Dashboard */
@media (max-width: 480px) {
    .waiter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .waiter-grid {
        grid-template-columns: 1fr;
    }
}

/* Item Status Badges */
.item-status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    display: inline-block;
}
.item-status-badge.pending {
    background: rgba(231, 29, 54, 0.15);
    color: var(--danger);
    border: 1px solid var(--danger);
}
.item-status-badge.preparing {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
}
.item-status-badge.served {
    background: rgba(46, 196, 182, 0.15);
    color: var(--success);
    border: 1px solid var(--success);
}

/* Custom Search Dropdown in Waiter Dashboard */
.search-dropdown-item {
    transition: var(--transition-smooth);
}
.search-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary) !important;
}

/* Customer Search Bar */
.search-container {
    padding: 0 20px;
    margin-bottom: 24px;
    margin-top: 10px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(25, 30, 41, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.search-box:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
    background: rgba(25, 30, 41, 0.95);
}

.search-icon {
    margin-right: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.search-box:focus-within .search-icon {
    color: var(--gold);
}

.search-input {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    width: 100%;
    outline: none;
    font-family: inherit;
}

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

.clear-search-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: none;
    padding: 4px;
    font-size: 1.2rem;
    line-height: 1;
    transition: var(--transition-smooth);
}

.clear-search-btn:hover {
    color: var(--danger);
}

/* --- Authentication Styles (SaaS Login) --- */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-primary);
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.login-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.login-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.login-card .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-card label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-card .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.login-card .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.login-card .btn-login {
    background: var(--gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 10px;
    padding: 14px;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition-smooth);
}

.login-card .btn-login:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.login-card .error-msg {
    color: var(--danger);
    background: rgba(231, 29, 54, 0.1);
    border: 1px solid rgba(231, 29, 54, 0.2);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-align: center;
}


