/* MOOO Bistro - Main Styles */

/* Variables */
:root {
    --primary-color: #6ea796;
    --secondary-color: #7fceb6;
    --accent-color: #95eae8;
    --dark-bg: #222;
    --dark-text: #222;
    --light-text: #ddd;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --teal-shadow: 0 4px 8px rgba(149, 234, 232, 0.4);
    --teal-glow: 0 0 20px rgba(110, 167, 150, 0.3);
    --gradient-primary: linear-gradient(135deg, #6ea796 0%, #7fceb6 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(110, 167, 150, 0.1) 0%, rgba(127, 206, 182, 0.1) 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--dark-bg);
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: none;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    height: 80px;
    position: relative;
}

.nav-logo {
    display: none;
}

.nav-logo span {
    display: none;
}

.nav-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links li a::after {
    display: none;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--teal-shadow);
}

.nav-order-btn {
    margin-left: 20px;
}

.nav-order-btn a {
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.nav-order-btn a::after {
    display: none;
}

.nav-order-btn .btn {
    box-shadow: var(--teal-shadow);
}

.cart-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--dark-bg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.cart-text {
    font-weight: 600;
}

.cart-total {
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 5px;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    position: absolute;
    left: 20px;
}

/* Main Content */
main {
    margin-top: 0;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../images/burger1.jpg') center center / cover no-repeat;
    padding: 120px 40px 80px;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

.logo-box {
    margin: 0 auto 30px;
    height: auto;
    width: 100%;
    max-width: 200px;
    z-index: 1;
}

.logo-under-nav {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    opacity: 0.8;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-background {
    display: none;
}

.hero-image {
    display: none;
}

.hero-image img {
    display: none;
}

.hero-image:hover img {
    transform: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(110, 167, 150, 0.5);
    opacity: 1;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin: 0 0 40px 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.6s both;
    font-size: 1.3rem;
    padding: 18px 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-text);
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

h3 {
    font-size: 2.3rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 100px 20px;
    text-align: center;
    opacity: 0.6;
    font-weight: 700;
}

/* Buttons */
.btn,
.btn-primary,
.btn-add-to-cart,
.btn-checkout {
    padding: 15px 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3), var(--teal-shadow);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.btn::before,
.btn-primary::before,
.btn-add-to-cart::before,
.btn-checkout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn > *,
.btn-primary > *,
.btn-add-to-cart > *,
.btn-checkout > * {
    position: relative;
    z-index: 1;
}

.btn:hover,
.btn-primary:hover,
.btn-add-to-cart:hover,
.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4), var(--teal-glow);
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-add-to-cart:hover::before,
.btn-checkout:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 38px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Category Filters */
.category-filters {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.category-filter {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--gray-medium);
    border-radius: 50px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.category-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-filter.active {
    background-color: var(--primary-color);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--teal-shadow);
}

/* Menu Grid */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 167, 150, 0.03) 0%, rgba(127, 206, 182, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 0 25px rgba(110, 167, 150, 0.2);
    border-color: var(--primary-color);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--gray-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(110, 167, 150, 0.4);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-medium);
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-add-to-cart {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Shopping Cart */
.shopping-cart {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px auto;
}

.cart-items {
    margin: 20px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--primary-color);
    font-size: 1.3rem;
}

.empty-cart {
    color: #999;
    font-style: italic;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

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

.modal-info {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.modal-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.modal-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--gray-light);
    border-radius: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.meta-icon {
    font-size: 1.2rem;
}

.meta-label {
    font-weight: 600;
    color: var(--dark-text);
}

.meta-value {
    color: var(--primary-color);
    font-weight: 700;
}

.modal-ingredients {
    margin-bottom: 20px;
}

.modal-ingredients h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 12px;
    font-weight: 700;
}

.ingredients-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.ingredient-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--gray-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.ingredient-checkbox:hover {
    background: #e0e0e0;
}

.ingredient-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.ingredient-checkbox span {
    flex: 1;
    color: var(--dark-text);
    line-height: 1.2;
}

.modal-ingredients ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.modal-ingredients li {
    padding: 12px 20px;
    background: var(--gray-light);
    border-radius: 10px;
    color: var(--dark-text);
    position: relative;
    padding-left: 45px;
}

.modal-ingredients li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--gray-medium);
}

.modal-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Extras Modal */
.extras-modal-content {
    max-width: 600px;
}

.extras-modal-body {
    padding: 50px 40px 40px;
}

.extras-checkboxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
}

/* Admin Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    max-width: 450px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 1.1rem;
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border-left: 4px solid #c33;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border-left: 4px solid #28a745;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

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

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 167, 150, 0.1);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 167, 150, 0.4);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-hint {
    margin-top: 20px;
    text-align: center;
    color: #999;
}

/* Admin Dashboard & Pages */
.admin-body {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.admin-header {
    background: var(--dark-bg);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}

.admin-nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.admin-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.admin-nav-links a:hover {
    background: var(--primary-color);
}

.admin-main {
    flex: 1;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.admin-footer {
    background: var(--dark-bg);
    color: #999;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Orders Table */
.orders-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.orders-table thead {
    background: #f8f9fa;
}

.orders-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    border-bottom: 2px solid #e9ecef;
}

.orders-table td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.orders-table tbody tr:hover {
    background: #f8f9fa;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-new {
    background: #fff3cd;
    color: #856404;
}

.status-accepted {
    background: #d1ecf1;
    color: #0c5460;
}

.status-preparing {
    background: #cce5ff;
    color: #004085;
}

.status-ready {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    color: #999;
}

/* Admin Orders Page */
.orders-management-container {
    max-width: 1400px;
    margin: 0 auto;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.order-header-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
    text-align: right;
}

.status-select {
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.status-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.status-select.status-new {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.status-select.status-accepted {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

.status-select.status-preparing {
    background: #e2e3e5;
    border-color: #6c757d;
    color: #383d41;
}

.status-select.status-ready {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.status-select.status-completed {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

.status-select.status-cancelled {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.order-customer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-item {
    font-size: 0.95rem;
    color: #333;
}

.info-item strong {
    color: var(--dark-text);
    margin-right: 8px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary-color);
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.order-item-quantity {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.order-item-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.order-item-customization {
    font-size: 0.9rem;
    margin: 4px 0;
    padding: 6px 10px;
    border-radius: 6px;
}

.order-item-customization.removed {
    background: #ffe0e0;
    color: #c92a2a;
    border-left: 3px solid #ff6b6b;
}

.order-item-customization.added {
    background: #d3f9d8;
    color: #2b8a3e;
    border-left: 3px solid var(--primary-color);
}

.order-summary {
    border-top: 2px solid #f0f0f0;
    padding-top: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #666;
}

.summary-row.total {
    font-size: 1.2rem;
    color: var(--dark-text);
    border-top: 2px solid #e9ecef;
    padding-top: 12px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .filter-tabs {
        flex-direction: column;
    }

    .filter-tab {
        width: 100%;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-header-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .status-select,
    .order-total {
        width: 100%;
        text-align: left;
    }

    .order-customer-info {
        grid-template-columns: 1fr;
    }
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    width: 100vw;
    height: 60vh;
    min-height: 400px;
    background: url('../images/burger2.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 800px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
    outline: none;
}

.about-hero-subtitle {
    font-size: 1.8rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--teal-glow);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--teal-glow);
}

/* Map Container */
.map-container {
    position: relative;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark-bg);
    color: var(--light-text);
    margin-top: 0;
    font-size: 0.95rem;
}

footer p {
    margin: 0;
}

footer a {
    transition: opacity 0.3s ease, color 0.3s ease;
}

footer a:hover {
    opacity: 1 !important;
    color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-links li a {
        font-size: 1.3rem;
        padding: 10px 15px;
    }

    .nav-links {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .nav-links li a {
        font-size: 1.1rem;
        padding: 8px 12px;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        background: var(--dark-bg);
        flex-direction: column;
        width: 100%;
        padding: 0 0 20px 0;
        box-shadow: var(--shadow-lg);
        align-items: center;
        display: flex;
    }

    /* Hide navigation links except cart button */
    .nav-links li:not(.nav-order-btn) {
        display: none;
    }

    /* Show all links when menu is open */
    .nav-links.show li:not(.nav-order-btn) {
        display: block;
    }

    /* Keep cart button visible and positioned in top-right on mobile */
    .nav-links .nav-order-btn {
        display: flex !important;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1001;
    }

    .nav-links .nav-order-btn .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .nav-links li a::after {
        display: none;
    }

    .hero-section {
        padding: 100px 30px 60px;
    }

    .logo-box {
        max-width: 160px;
        margin-bottom: 20px;
    }

    .logo-under-nav {
        max-height: 100px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: 30px;
    }

    .hero-section .btn {
        font-size: 1.1rem;
        padding: 15px 40px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 20px;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    /* Order page responsive */
    section > div > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Modal responsive */
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 280px;
    }

    .modal-info {
        padding: 40px 30px 30px;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-meta {
        grid-template-columns: 1fr;
    }

    /* About page responsive */
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .value-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 0 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 8px 15px;
    }

    .hero-section {
        padding: 90px 20px 50px;
    }

    .logo-box {
        max-width: 140px;
        margin-bottom: 15px;
    }

    .logo-under-nav {
        max-height: 80px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
        margin-bottom: 25px;
    }

    .hero-section .btn {
        font-size: 1rem;
        padding: 14px 35px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    section {
        padding: 50px 20px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .btn,
    .btn-primary {
        font-size: 0.95rem;
        padding: 12px 28px;
    }

    .btn-add-to-cart {
        padding: 9px 20px;
        font-size: 0.85rem;
    }

    .category-filters {
        flex-direction: column;
        gap: 10px;
    }

    .category-filter {
        width: 100%;
        min-width: auto;
    }
}
