* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #071a3a;
    --gold: #d28706;
    --gold-light: #f3b23a;
    --bg-cream: #fffaf0;
    --bg-light: #fff9ed;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #fffaf0 0%, #fff5e6 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.header {
    background: transparent;
    padding: 2rem 0 1rem;
    text-align: center;
}

.logo-only {
    display: inline-block;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.logo-only:hover {
    transform: scale(1.05);
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Hero Section */
.hero {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(210,135,6,0.1);
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.contact-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(210,135,6,0.15);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.contact-value a {
    color: var(--navy);
    text-decoration: none;
}

.contact-value a:hover {
    color: var(--gold);
}

/* Payment Info */
.payment-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid rgba(210,135,6,0.2);
}

.payment-section h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-details {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-label {
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}

.payment-value {
    font-weight: 500;
    color: var(--navy);
    word-break: break-all;
    text-align: right;
}

.payment-value a {
    color: var(--navy);
    text-decoration: none;
}

.payment-value a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.alert-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    color: #991b1b;
    font-weight: 600;
    text-align: center;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

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

/* Category Section */
.category-section {
    margin-bottom: 3rem;
}

.category-header {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a55 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    box-shadow: var(--shadow);
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.category-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.menu-grid {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 16px 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    box-shadow: var(--shadow);
}

/* Menu Item Card */
.menu-item {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.menu-item-content {
    padding: 1.25rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    flex: 1;
    line-height: 1.3;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a55 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7,26,58,0.3);
}

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

.item-quantity-badge {
    display: none;
    background: var(--gold);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.item-quantity-badge.show {
    display: flex;
}

/* Cart Section */
.cart-sticky {
    position: sticky;
    top: 1.5rem;
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(210,135,6,0.15);
    overflow: hidden;
}

.cart-header {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a55 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
}

.cart-count {
    background: var(--gold);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-body {
    padding: 1.5rem;
}

.customer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-form input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.customer-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(210,135,6,0.1);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.cart-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(210,135,6,0.2);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.cart-item-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    flex: 1;
}

.btn-remove {
    background: #fee2e2;
    border: none;
    color: #dc2626;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #fecaca;
}

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

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.5rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.btn-qty {
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-qty:hover {
    background: #0d2a55;
}

.quantity-controls span {
    font-weight: 700;
    color: var(--navy);
    min-width: 24px;
    text-align: center;
}

.cart-item-price {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1rem;
}

.cart-total {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(210,135,6,0.2);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-row span:first-child {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.total-row span:last-child {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(210,135,6,0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.payment-info {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.6;
}

.payment-info strong {
    color: var(--navy);
    font-weight: 700;
}

.no-refunds {
    background: #fef2f2;
    color: #991b1b;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

/* Admin Styles */
.admin-header {
    background: var(--navy);
    color: white;
    padding: 1.5rem 0;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: var(--gold);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gold-light);
}

.admin-container {
    background: #f9fafb;
    min-height: calc(100vh - 80px);
}

.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--navy);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.admin-card h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.item-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.item-form textarea {
    grid-column: 1 / -1;
}

.item-form input,
.item-form textarea,
.item-form select {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.item-form input:focus,
.item-form textarea:focus,
.item-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.item-form button {
    grid-column: 1 / -1;
}

.menu-admin-item {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.menu-admin-item:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow);
}

.menu-admin-item-view {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.menu-admin-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-admin-item-info {
    flex: 1;
}

.menu-admin-item-info h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.menu-admin-item-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0.25rem 0;
}

.menu-admin-item-actions {
    display: flex;
    gap: 0.75rem;
}

/* Generic icon button used in admin item actions (keeps white icon color by default) */
.btn-icon {
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: translateY(-2px);
}

.btn-edit {
    background: #3b82f6;
}

.btn-delete {
    background: #ef4444;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
}

.order-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    background: white;
    margin-bottom: 1.5rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.order-total {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.order-items {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.order-item:last-child {
    border-bottom: none;
}

.order-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-controls label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.order-controls select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
}

.order-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.badge-completed {
    background: #e0e7ff;
    color: #3730a3;
}

.badge-unpaid {
    background: #fee2e2;
    color: #991b1b;
}

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

/* ========== NEW ADMIN STYLES ========== */

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071a3a 0%, #0d2a55 100%);
    padding: 1rem;
}

.login-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.login-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

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

.login-card h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.login-form {
    text-align: left;
}

.login-form .form-group {
    margin-bottom: 1.25rem;
}

.login-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.login-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(210,135,6,0.1);
}

.login-form .btn-primary {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-form .error-message {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fee2e2;
    border-radius: 8px;
    color: #991b1b;
    font-size: 0.875rem;
    display: none;
}

/* Admin Body */
.admin-body {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: #f8fafc;
}

/* Sidebar */
.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--navy) 0%, #0d2a55 100%);
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
    position: relative;
    z-index: 100;
}

.sidebar-logo {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
}

.nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    font-size: 1rem;
}

.nav-item:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.nav-item.active {
    background: rgba(210,135,6,0.2);
    color: white;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
}

.nav-item svg {
    flex-shrink: 0;
}

.nav-item span {
    flex: 1;
    font-weight: 500;
}

.badge-count {
    background: var(--gold);
    color: var(--navy);
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.admin-info {
    flex: 1;
}

.admin-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.admin-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.btn-logout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-logout:hover {
    background: rgba(239,68,68,0.8);
}

/* Main Content */
.admin-main {
    flex: 1;
    overflow-y: auto;
    background: #f8fafc;
}

.admin-header-new {
    background: white;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.header-content h1 {
    color: var(--navy);
    font-size: 1.875rem;
    margin-bottom: 0.25rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

/* Scoped header action button so it doesn't override other .btn-icon uses */
.header-actions .btn-icon {
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-actions .btn-icon:hover {
    border-color: var(--gold);
    background: #fffbeb;
}

.btn-icon:hover {
    border-color: var(--gold);
    background: #fffbeb;
}

/* Ensure admin menu edit/delete buttons keep their intended colors (override header rule) */
.menu-admin-item .btn-icon.btn-edit {
    background: #3b82f6;
}

.menu-admin-item .btn-icon.btn-delete {
    background: #ef4444;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    padding: 2rem;
}

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

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.action-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-vertical input,
.form-vertical textarea,
.form-vertical select {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-vertical input:focus,
.form-vertical textarea:focus,
.form-vertical select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(210,135,6,0.1);
}

.content-main {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.section-header h2 {
    color: var(--navy);
    font-size: 1.5rem;
    margin: 0;
}

.count-badge {
    background: var(--gold-light);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

.items-grid {
    display: grid;
    gap: 1rem;
}

.loading-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* Category Card */
.category-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a55 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.category-info {
    flex: 1;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.category-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.category-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-edit-sm {
    background: #dbeafe;
    color: #1e40af;
}

.btn-edit-sm:hover {
    background: #3b82f6;
    color: white;
}

.btn-delete-sm {
    background: #fee2e2;
    color: #991b1b;
}

.btn-delete-sm:hover {
    background: #ef4444;
    color: white;
}

/* Menu Item Card */
.menu-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.menu-card-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.menu-card-content {
    flex: 1;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.menu-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.menu-card-category {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.menu-card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}

.menu-card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.menu-card-actions {
    display: flex;
    gap: 0.5rem;
}

/* Orders Container */
.orders-container {
    padding: 2rem;
}

.orders-list {
    display: grid;
    gap: 1.5rem;
}

.order-card-new {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.order-card-new:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--gold-light);
}

.order-header-new {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.order-id {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.order-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.order-total-new {
    text-align: right;
}

.order-total-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.order-total-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.order-customer {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.customer-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.customer-row:last-child {
    margin-bottom: 0;
}

.customer-icon {
    color: var(--gold);
}

.customer-info {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.order-items-new {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.order-items-new h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-controls-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.control-group {
    display: flex;
    flex-direction: column;
}

.control-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.control-group select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.control-group select:focus {
    outline: none;
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .admin-sidebar {
        width: 70px;
    }
    
    .sidebar-logo {
        padding: 1rem;
    }
    
    .sidebar-logo img {
        width: 50px;
        height: 50px;
    }
    
    .nav-item span:not(.badge-count) {
        display: none;
    }
    
    .nav-item {
        justify-content: center;
    }
    
    .sidebar-footer .admin-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-info {
        display: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}