* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fdf8f0 0%, #f9f0e3 100%);
    color: #4a3728;
    min-height: 100vh;
}

/* Cafe Aesthetic */
.cafe-bg {
    background-image: radial-gradient(circle at 10% 20%, rgba(210, 180, 140, 0.08) 0%, rgba(245, 222, 179, 0.05) 90%);
}

h1, h2, h3, .logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Glassmorphism Cards */
.glass-card, form, .menu-card, .cart-container, .map-card {
    background: rgba(255, 252, 245, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 170, 120, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Header */
.cafe-header {
    background: #fff9f0;
    padding: 20px 0;
    border-bottom: 3px solid #d4a373;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6b3f1f;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #8b5e3c;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c1692c;
}

/* Forms */
form {
    max-width: 400px;
    margin: 40px auto;
    padding: 35px;
    border-radius: 28px;
}

input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 2px solid #e8d9cc;
    border-radius: 16px;
    font-size: 14px;
    transition: 0.3s;
    background: white;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #d4a373;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

button {
    background: #c2824b;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

button:hover {
    background: #a5663a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 102, 58, 0.3);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.menu-card {
    padding: 20px;
    cursor: pointer;
}

.menu-emoji {
    font-size: 3rem;
    background: #f5ede4;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.menu-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d25;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #b86b2c;
    margin: 10px 0;
}

/* Interactive Map */
.map-container {
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    margin: 20px 0;
    border: 3px solid #f0e2d2;
}

/* Dashboard */
.dashboard-header {
    background: linear-gradient(135deg, #6b3f1f, #8b5e3c);
    color: white;
    padding: 40px;
    border-radius: 28px;
    margin-bottom: 30px;
}

.order-item {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 16px;
    border-left: 4px solid #c2824b;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-pending {
    background: #fff3e0;
    color: #cc8b4a;
}

.status-completed {
    background: #e0f2e0;
    color: #2e7d32;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .cafe-header .flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .container {
        padding: 15px;
    }
    
    form {
        margin: 20px;
        padding: 25px;
    }
}

.status-cancelled {
    background: #ffebee;
    color: #c62828;
}

/* Toast Notification */
.toast-notify {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4a3728;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 2000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}