/* 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;
}

/* Inline Icons */
.icon-inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

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;
}



.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.sold-out {
    cursor: default;
    opacity: 0.9;
}

.product-card.sold-out:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.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-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.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;
}

.btn-add-to-cart:disabled,
.btn-add-to-cart.btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.sold-out-watermark {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(127, 29, 29, 0.88);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    z-index: 4;
}

/* 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;
}

.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"],
.ingredient-checkbox input[type="radio"] {
    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);
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-item h3 {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contact-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Value Cards with Images */
.value-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.value-content {
    padding: 28px;
}

.value-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.value-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Value Cards with Icons */
.value-card-icon {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.value-card-icon:hover .value-icon {
    transform: scale(1.1);
}

.value-card-icon .value-content {
    padding: 0;
}

.value-card-icon .value-content h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.value-card-icon .value-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* 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;
    }
}

/* ============================================
   PAYMENT MODALS
   ============================================ */

.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: modalFadeIn 0.3s;
}

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

.payment-modal-box {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    animation: modalSlideUp 0.3s;
    position: relative;
}

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

.payment-modal-box .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    color: #6b7280;
    line-height: 1;
    z-index: 10;
}

.payment-modal-box .modal-close:hover:not(:disabled) {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.payment-modal-box .modal-close:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.payment-icon-svg {
    margin-bottom: 20px;
}

.payment-icon-svg.redirect-icon {
    animation: iconRotate 2s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.payment-icon-svg.success-animation {
    animation: successPop 0.6s ease-out;
}

@keyframes successPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.payment-modal-body .modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.payment-modal-body .modal-title.success-text {
    color: #10b981;
}

.payment-modal-body .modal-title.error-text {
    color: #dc2626;
}

.payment-modal-body .status-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-modal-body .error-message {
    font-size: 16px;
    color: #dc2626;
    background: #fee2e2;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-modal-body .loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f4f6;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
    margin: 20px auto;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.order-number-display {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 20px rgba(110, 167, 150, 0.3);
}

.order-number-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
}

.order-number {
    color: white;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
}

.payment-modal-body .close-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

/* Payment Info Box */
.payment-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(110, 167, 150, 0.3);
}

.amount-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amount-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-value {
    color: white;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Payment Warning */
.payment-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.warning-icon-svg {
    flex-shrink: 0;
}

.payment-warning p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

/* Payment Modal Footer */
.payment-modal-body .modal-footer {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.payment-modal-body .modal-footer .btn {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-modal-body .btn-secondary {
    background: #e5e7eb;
    color: #374151;
    border: none;
}

.payment-modal-body .btn-secondary:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}

.payment-modal-body .payment-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.payment-modal-body .payment-btn:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* Payment Modal Responsive */
@media (max-width: 600px) {
    .payment-modal-box {
        margin: 20px;
    }

    .payment-modal-body {
        padding: 30px 20px;
    }

    .payment-modal-body .modal-title {
        font-size: 22px;
    }

    .order-number {
        font-size: 24px;
    }

    .amount-value {
        font-size: 32px;
    }

    .payment-modal-body .modal-footer {
        flex-direction: column;
    }

    .payment-modal-body .modal-footer .btn {
        width: 100%;
    }
}

/* ============================================
   ORDER PAGE STYLES
   ============================================ */

.order-page {
    padding-top: 120px;
    min-height: 100vh;
    background: var(--gray-light);
}

.order-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.order-form-section,
.order-summary-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.order-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* Order Confirmation */
.order-confirmation {
    max-width: 800px;
    margin: 60px auto;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
    animation: confirmSlideIn 0.5s ease-out;
}

@keyframes confirmSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes confirmBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
    75% { transform: scale(1.1); }
}

.order-confirmation .confirm-icon {
    margin-bottom: 30px;
    animation: confirmBounce 0.6s;
}

.order-confirmation h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 800;
}

.order-confirmation .order-number-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
}

.order-confirmation .order-number-box p:first-child {
    margin: 0;
    font-size: 1.2rem;
}

.order-confirmation .order-number-box p:last-child {
    margin: 10px 0 0 0;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 3px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.form-group .required {
    color: #e74c3c;
}

.form-group small {
    color: #666;
    margin-top: 5px;
    display: block;
}

/* Validation Errors */
.validation-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.global-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Address Validation */
.address-success {
    background: #d1fae5;
    border: 2px solid #10b981;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.address-error {
    background: #fee2e2;
    border: 2px solid #dc2626;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.btn-map-select {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-map-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-close-map {
    background: #e5e7eb;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-close-map:hover {
    background: #d1d5db;
}

/* Cart Empty State */
.cart-empty {
    text-align: center;
    padding: 40px 0;
    color: #999;
}

.cart-empty-icon {
    margin-bottom: 20px;
}

.cart-empty p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

/* Cart Items */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid var(--gray-medium);
    gap: 15px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-removed {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin: 5px 0;
}

.cart-item-extras {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin: 5px 0;
}

.cart-item-paid-extras {
    color: #f59e0b;
    font-size: 0.85rem;
    margin: 5px 0;
}

.cart-item-fee {
    color: #10b981;
    font-size: 0.85rem;
    margin: 5px 0;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.quantity-btn-minus {
    background: var(--gray-medium);
}

.quantity-btn-plus {
    background: var(--primary-color);
    color: white;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

/* Remove Item Button */
.btn-remove-item {
    background: #ff4444;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-remove-item:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Cart Total */
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    margin-left: 5px;
}

.cart-total-value {
    color: var(--primary-color);
}

/* GDPR Consent */
.gdpr-consent {
    margin-top: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid var(--gray-medium);
}

.gdpr-consent.error {
    border-color: #e74c3c;
}

.gdpr-consent label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.gdpr-consent input[type="checkbox"] {
    margin-top: 4px;
    min-width: 18px;
    height: 18px;
    cursor: pointer;
}

.gdpr-consent span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.gdpr-consent a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-consent-banner {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--dark-text);
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--secondary-color);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-cookie-essential {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.btn-cookie-essential:hover {
    background: #e5e7eb;
}

.btn-cookie-all {
    background: var(--primary-color);
    color: white;
}

.btn-cookie-all:hover {
    background: var(--secondary-color);
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        padding: 20px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

/* Order Responsive */
@media (max-width: 900px) {
    .order-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .order-form-section,
    .order-summary-section {
        padding: 30px 20px;
    }

    .order-confirmation {
        margin: 30px 20px;
        padding: 40px 20px;
    }

    .order-confirmation h2 {
        font-size: 1.8rem;
    }

    .order-confirmation .order-number-box p:last-child {
        font-size: 2rem;
    }
}

/* ============================================
   NAVIGATION CART ICON
   ============================================ */

.cart-icon-svg {
    display: block;
}

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