@charset "UTF-8";
/* YOUR CUSTOM CSS */

:root {
    --primary-color: #ac6653;
    --secondary-color: #b6193b;
    --success-color: #2dce89;
    --warning-color: #fb6340;
    --danger-color: #f5365c;
    --light-bg: #f8f9fe;
    --white: #ffffff;
    --dark: #32325d;
    --muted: #8898aa;
    --border-radius: 12px;
    --box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-spinner-wave {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.sk-spinner-wave div {
    background-color: var(--primary-color);
    height: 100%;
    width: 6px;
    display: inline-block;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
    margin: 0 1px;
}

.sk-spinner-wave .sk-rect2 {
    animation-delay: -1.1s;
}

.sk-spinner-wave .sk-rect3 {
    animation-delay: -1.0s;
}

.sk-spinner-wave .sk-rect4 {
    animation-delay: -0.9s;
}

.sk-spinner-wave .sk-rect5 {
    animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
    }
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
}

.navbar .container {
    position: relative;
    z-index: 1;
}

.navbar-brand {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px;
    margin: 0 0.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.btn-nav {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-nav:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.header-video {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-video--media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Video element styling */
#hero_video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.header-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero_video {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

#sub_content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#sub_content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

#custom-search-input {
    max-width: 600px;
    margin: 0 auto;
}

#custom-search-input .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

#custom-search-input input.search-query {
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    background: var(--white);
    border-radius: 50px 0 0 50px;
	width: 100%;
}

#custom-search-input input.search-query:focus {
    outline: none;
    box-shadow: none;
}

#custom-search-input .btn_search {
    background: var(--secondary-color);
    border: none;
    padding: 25px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

#custom-search-input .input-group-btn {
	position: absolute;
	right: -4px;
}

#custom-search-input .btn_search:hover {
    background: var(--primary-color);
}

/* Stats Counter */
#count {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

#count ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#count li {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

#count .number {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

/* Main Content */
.margin_60 {
    margin: 4rem 0;
}

.main_title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.main_title p {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* How it Works */
.box_home {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.box_home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.box_home:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.box_home span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.box_home h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.box_home p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Delivery Time */
#delivery_time {
    text-align: center;
    background: linear-gradient(135deg, var(--light-bg), #e8ecf7);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

#delivery_time strong {
    display: block;
    margin-bottom: 1rem;
}

#delivery_time strong span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    margin: 0 0.5rem;
}

#delivery_time h4 {
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

/* Work with Us */
.box_work {
    display: block;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    margin-bottom: 2rem;
}

.box_work:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    text-decoration: none;
    color: inherit;
}

.box_work img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.box_work h3 {
    padding: 1.5rem 2rem 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.box_work h3 span {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.box_work p {
    padding: 0 2rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.btn_1 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    margin: 0 2rem 2rem;
    display: inline-block;
    transition: var(--transition);
}

.btn_1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c54 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    #sub_content h1 {
        font-size: 2.5rem;
    }

    #count {
        display: none !important;
    }

    .box_home {
        margin-bottom: 1.5rem;
    }

    .main_title h2 {
        font-size: 2rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.registration-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.type-option {
    flex: 1;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.type-option:hover,
.type-option.active {
    border-color: #ff6900;
    background-color: #fff5f0;
}

.type-option h4 {
    margin: 10px 0 5px 0;
    color: #333;
    font-size: 16px;
}

.type-option p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.type-icon {
    font-size: 32px;
    color: #ff6900;
    margin-bottom: 10px;
}

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

.category-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: #28a745;
    background: #f8f9fa;
}

.category-btn.active {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.table th {
    font-weight: 600;
    color: #495057;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

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

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

.action-buttons {
    display: flex;
    gap: 5px;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

/* Restaurant List Page - Nur neue Styles (importiert die index.php Variablen) */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c54 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--muted);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Content Section */
.content-section {
    margin: 3rem 0;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.filters-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters-header h5 {
    margin: 0;
    font-weight: 600;
}

.filters-header button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.filters-content {
    padding: 1.5rem;
    max-height: 500px;
    overflow: hidden;
    transition: var(--transition);
}

.filters-content.show {
    max-height: 1000px;
}

.filter-group h6 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.filter-option:hover {
    background: rgba(40, 167, 69, 0.05);
}

.filter-option input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.filter-option small {
    color: var(--muted);
    margin-left: auto;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.results-info h5 {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

.sort-controls .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    min-width: 200px;
}

.sort-controls .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
    outline: none;
}

/* Restaurant Grid */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.restaurant-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}
.restaurants-grid .restaurant-header::before {
  background: none;
}
.restaurant-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.05);
}

.restaurant-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.status-open {
    background: var(--success-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-closed {
    background: var(--muted);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-content {
    padding: 1.5rem;
}

.restaurant-header {
    margin-bottom: 1rem;
}

.restaurant-header h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cuisine-type {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.restaurant-location {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.restaurant-services {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.service-item.available {
    color: var(--success-color);
    background: rgba(45, 206, 137, 0.1);
}

.service-item.unavailable {
    color: var(--muted);
    background: rgba(136, 152, 170, 0.1);
}

.restaurant-footer {
    margin-top: auto;
}

.btn-menu {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
    grid-column: 1 / -1;
}

.no-results i {
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.no-results h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Load More */
.load-more-section {
    text-align: center;
    margin: 3rem 0;
}

.btn-load-more {
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-load-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--dark);
}

.search-form {
    margin-top: 1rem;
}

.search-input-group {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.search-input {
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    flex: 1;
    outline: none;
}

.search-input:focus {
    outline: none;
}

.search-submit {
    background: var(--primary-color);
    border: none;
    padding: 1.25rem 2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--secondary-color);
}

/* Active nav link */
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer (falls nicht von index importiert) */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c54 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    position: relative;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-media i,
.payment-methods i {
    font-size: 1.5rem;
    color: #fff;
    margin-right: 5px;
}
.social-media a,
.payment-methods a {
    text-decoration: none;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .sort-controls .form-select {
        min-width: auto;
    }

    .restaurant-services {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filters-content {
        max-height: none;
        padding: 1rem;
    }

    .filters-content.show {
        max-height: none;
    }

    .breadcrumb-section {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .search-overlay-content {
        padding: 2rem;
        margin: 1rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }
}

/* Restaurant Detail Page - Nur neue Styles */

/* Restaurant Header */
.restaurant-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
    margin-bottom: 0;
}

.restaurant-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
	background: rgba(0,0,0,0.5);
}

.restaurant-header .container {
    position: relative;
    z-index: 2;
}

.restaurant-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.restaurant-thumb {
    flex-shrink: 0;
}

.restaurant-thumb img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
    box-shadow: var(--box-shadow-hover);
}

.restaurant-info h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cuisine-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.restaurant-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    margin: 3rem 0;
}

/* Left Sidebar */
.back-button-container {
    margin-bottom: 2rem;
}

.btn-back {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: var(--white);
    text-decoration: none;
}

.category-navigation {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.category-navigation h5 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.category-link:hover {
    background: rgba(40, 167, 69, 0.05);
    color: var(--primary-color);
    text-decoration: none;
}

.category-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.category-name {
    font-weight: 500;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link.active .category-count {
    background: rgba(255, 255, 255, 0.3);
}

.restaurant-contact {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    text-align: center;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-header h6 {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

.phone-number {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.phone-number:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.opening-status {
    margin-top: 1rem;
}

.status-closed {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Menu Section */
.menu-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.menu-header {
    margin-bottom: 2rem;
    text-align: center;
}

.menu-header h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.menu-description {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0;
}

.category-section {
    margin-bottom: 3rem;
}

.category-header {
    margin-bottom: 2rem;
    position: relative;
}

.category-header h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 0.5rem;
}

.category-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    width: 60px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: #fafbfc;
}

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

.menu-item.item-added {
    animation: itemPulse 0.3s ease;
}

@keyframes itemPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.menu-item-image {
    flex-shrink: 0;
}

.menu-item-image img {
    border-radius: 8px;
    object-fit: cover;
}

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

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

.menu-item-header h5 {
    color: var(--dark);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.allergens {
    color: var(--warning-color);
    font-weight: 500;
}

.menu-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-quantity {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-quantity:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.not-available {
    color: var(--danger-color);
    font-weight: 500;
    font-style: italic;
}

/* Cart Sidebar */
.cart-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    margin-top: 0;
    position: sticky;
    top: 100px;
}

.cart-header {
    margin-bottom: 1rem;
    text-align: center;
}

.cart-header h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.cart-restaurant-info {
    background: rgba(40, 167, 69, 0.1);
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.cart-items {
    min-height: 150px;
    margin-bottom: 1.5rem;
}

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

.empty-cart i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-cart p {
    margin: 0;
    font-size: 0.9rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.cart-item-info h6 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
}

.cart-item-info small {
    color: var(--muted);
    font-size: 0.8rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-quantity-small {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-quantity-small:hover {
    background: var(--secondary-color);
}

.cart-quantity {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.cart-item-total {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-align: right;
}

.btn-remove {
    background: var(--danger-color);
    color: var(--white);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: var(--transition);
    cursor: pointer;
}

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

.delivery-options {
    margin-bottom: 1.5rem;
}

.delivery-options h6 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.delivery-option {
    margin-bottom: 0.75rem;
}

.delivery-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.delivery-label:hover {
    background: rgba(40, 167, 69, 0.05);
}

.delivery-radio {
    margin-right: 0.75rem;
    accent-color: var(--primary-color);
}

.delivery-text {
    color: var(--dark);
    font-weight: 500;
}

.cart-summary {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-order {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-order:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-clear {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    border: 2px solid var(--danger-color);
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

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

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow-hover);
    z-index: 9999;
    transform: translateX(400px);
    transition: var(--transition);
}

.cart-notification.show {
    transform: translateX(0);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--muted);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--dark);
}

.search-form {
    margin-top: 1rem;
}

.search-input-group {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.search-input {
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    flex: 1;
    outline: none;
}

.search-submit {
    background: var(--primary-color);
    border: none;
    padding: 1.25rem 2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--secondary-color);
}

/* Footer (falls nicht von index importiert) */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c54 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    position: relative;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

    .restaurant-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .restaurant-info h1 {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-item-price {
        margin-left: 0;
    }

    .cart-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        margin: 2rem 0;
    }

    .restaurant-header {
        padding: 2rem 0;
    }

    .restaurant-thumb img {
        width: 80px;
        height: 80px;
    }

    .restaurant-info h1 {
        font-size: 1.5rem;
    }

    .menu-section {
        padding: 1.5rem;
    }

    .category-navigation,
    .restaurant-contact {
        margin-bottom: 1.5rem;
    }

    .menu-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .cart-item {
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .cart-item-controls {
        grid-column: 1 / -1;
        justify-content: space-between;
        margin-top: 0.5rem;
    }

    .breadcrumb-section {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .search-overlay-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Cart Specific Styles - QuickFood */

/* Cart Header */
.cart-header {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c54 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 0;
}

.cart-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
}

.cart-header .container {
    position: relative;
    z-index: 1;
}

.cart-header-content {
    text-align: center;
}

.cart-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Checkout Progress */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.step-label {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.progress-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.progress-step.active .step-label {
    color: var(--white);
    font-weight: 600;
}

.progress-step.complete .step-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: var(--white);
}

.progress-step.complete .step-label {
    color: var(--white);
}

.progress-line.complete {
    background: var(--success-color);
}

/* Info Sidebar */
.info-sidebar {
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.info-header h6 {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.help-card .help-phone {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.help-card .help-phone:hover {
    color: var(--secondary-color);
}

.help-card small {
    color: var(--muted);
    font-size: 0.8rem;
}

/* Step Content */
.step-content {
    display: none;
}

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

.step-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.step-header h3 {
    color: var(--dark);
    font-weight: 600;
    margin: 0;
    font-size: 1.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--muted);
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.empty-state h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-state p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
    outline: none;
}

.form-control.is-valid {
    border-color: var(--success-color);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.form-control.form-prefilled {
    background: rgba(40, 167, 69, 0.05);
    border-color: var(--success-color);
}

.form-help {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 2rem 0;
}

.restaurant-hours-info {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.payment-card:hover {
    border-color: var(--primary-color);
    background: rgba(40, 167, 69, 0.02);
}

.payment-card.selected {
    border-color: var(--primary-color);
    background: rgba(40, 167, 69, 0.05);
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.payment-icon.paypal {
    background: rgba(0, 123, 191, 0.1);
    color: #007bbf;
}

.payment-info {
    flex: 1;
}

.payment-info h5 {
    margin: 0 0 0.25rem 0;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-info small {
    color: var(--muted);
    font-size: 0.85rem;
}

.payment-radio {
    margin-left: auto;
}

.payment-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

/* PayPal Container */
.paypal-container {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 123, 191, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 123, 191, 0.1);
}

.paypal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.paypal-header h4 {
    color: #007bbf;
    font-weight: 600;
    margin: 0;
}

.paypal-loading {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 123, 191, 0.1);
    border-left: 4px solid #007bbf;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Animation */
.success-animation {
    text-align: center;
    margin-bottom: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-animation h3 {
    color: var(--success-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-message h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0;
}

/* Order Summary Section */
.order-summary-section {
    margin-bottom: 2rem;
}

.order-summary-section h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.order-summary {
    background: rgba(40, 167, 69, 0.02);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(40, 167, 69, 0.1);
}

/* Success Actions */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.success-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

/* Right Sidebar Cart */
.cart-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-sidebar .cart-header {
    background: none;
    color: var(--dark);
    padding: 0;
    margin-bottom: 1.5rem;
    position: relative;
}

.cart-sidebar .cart-header::before {
    display: none;
}

.cart-sidebar .cart-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

/* Restaurant Info */
.restaurant-info {
    background: rgba(40, 167, 69, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

/* Cart Items */
.cart-items {
    margin-bottom: 1.5rem;
}

.cart-items-list {
    min-height: 100px;
}

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

.cart-loading i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cart-items-list table {
    width: 100%;
    font-size: 0.9rem;
}

.cart-items-list td {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: top;
}

.cart-items-list td:last-child {
    text-align: right;
}

/* Delivery Options */
.delivery-options {
    margin-bottom: 1.5rem;
}

.delivery-options h6 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.delivery-choice {
    margin-bottom: 0.75rem;
}

.delivery-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.delivery-label:hover {
    background: rgba(40, 167, 69, 0.05);
}

.delivery-label input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: var(--primary-color);
}

.delivery-text {
    color: var(--dark);
    font-weight: 500;
}

/* Price Summary */
.price-summary {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.price-row.total {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

/* Step Navigation */
.step-navigation {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.navigation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navigation-actions {
    display: flex;
    gap: 1rem;
}

.btn-back {
    background: rgba(136, 152, 170, 0.1);
    color: var(--muted);
    border: 2px solid var(--muted);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-back:hover {
    background: var(--muted);
    color: var(--white);
    text-decoration: none;
}

.btn-next, .btn-order {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-next:hover, .btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
	color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .cart-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .cart-header-content h1 {
        font-size: 2rem;
    }
    
    .checkout-progress {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .progress-line {
        width: 2px;
        height: 30px;
        transform: rotate(90deg);
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .payment-methods {
        gap: 0.75rem;
    }
    
    .payment-card {
        padding: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .navigation-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation-actions {
        width: 100%;
        justify-content: space-between;
    }
}