/**
 * EasyOrder Theme - App Styles
 * Minimale CSS-Datei, um 404-Fehler zu vermeiden
 */

/* Allgemeine Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Cart-Buttons und Badges */
.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background-color: #ff5a5f;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

/* ===== MOBILE CART BUTTON (Improved Design) ===== */
.mobile-cart-btn, #mobileCartBtn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none !important; /* Hidden on desktop */
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #00b900 0%, #00a810 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 185, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-family: inherit;
    min-width: 180px;
    gap: 12px;
    font-weight: 600;
}

/* Zeige Mobile Cart Button nur auf mobilen Geräten */
@media (max-width: 768px) {
    .mobile-cart-btn {
        display: flex !important;
    }
}

/* ===== ACCOUNT PAGE STYLES ===== */
/* Button Größen */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Responsive Anpassungen für Account-Seite */
@media (max-width: 640px) {
    .account-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .category-slider-wrapper {
        padding:0 15px;
    }
    .account-card {
        border-radius: 8px;
    }
    
    .form-control {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}
@media (max-width: 1200px) {
    .mobile-cart-btn, #mobileCartBtn {
        display: flex !important;
    }
}

.mobile-cart-btn:hover, #mobileCartBtn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 185, 0, 0.4), 0 3px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #00c900 0%, #00b810 100%);
}

.mobile-cart-btn:active, #mobileCartBtn:active {
    transform: translateX(-50%) translateY(0);
    box-shadow: 0 2px 10px rgba(0, 185, 0, 0.3), 0 1px 5px rgba(0, 0, 0, 0.2);
}

.mobile-cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-cart-count {
    background: white;
    color: #00b900;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.mobile-cart-text {
    font-size: 14px;
    font-weight: 500;
    color: white;
    opacity: 0.95;
}

.mobile-cart-total {
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Notifikationen */
.cart-api-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.cart-api-notification.success {
    background-color: #10b981;
    color: white;
}

.cart-api-notification.error {
    background-color: #ef4444;
    color: white;
} 

/* ===== MODERN RESTAURANT HEADER - PREMIUM DESIGN ===== */

.restaurant-header {
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 130px;
    border-bottom: 1px solid #e9ecef;
}

.restaurant-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 0px;
    position: relative;
    z-index: 2;
}

.restaurant-header-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.restaurant-logo-container {
    position: relative;
    flex-shrink: 0;
}

.restaurant-logo {
    max-width: 250px;
    max-height: 130px;
    height: auto;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

/* Only add background and border for fallback (non-image) logos */
div.restaurant-logo {
    width: 100px;
    height: 100px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: white;
    border-radius: 12px;
}

img.restaurant-logo:hover {
    transform: translateY(-2px);
}

div.restaurant-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.restaurant-info {
    flex: 1;
    color: #1a1a1a;
}

.restaurant-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.restaurant-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.meta-item:hover {
    background: #f8f9fa;
    border-color: #ff6b35;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.meta-item i {
    color: #ff6b35;
    font-size: 14px;
}

.restaurant-address {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.restaurant-address i {
    color: #ff6b35;
    font-size: 14px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.service-item.available {
    background: #d1fae5;
    color: #065f46;
    border-color: #10b981;
}

.service-item.unavailable {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #d1d5db;
}

.service-item i {
    font-size: 14px;
}

.restaurant-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
}

.action-button {
    width: 40px;
    height: 40px;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    background: #ffffff;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.action-button:hover {
    border-color: #ff6b35;
    background: #fff8f6;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    color: #ff6b35;
}

.call-button {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.call-button:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    color: white;
}

.pre-order-info {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    color: #1e40af;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pre-order-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pre-order-info i {
    font-size: 16px;
    color: #3b82f6;
}

/* ===== STATUS BADGE GENERAL STYLES ===== */


.status-badge.open {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.status-badge.closed {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.status-badge i {
    font-size: 14px;
}

.status-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .restaurant-header-container {
        margin-right: 20px;
    }
}

/* ===== MOBILE RESTAURANT HEADER (Dezent Lieferando-Style) ===== */
@media (max-width: 768px) {
    .restaurant-header {
        min-height: auto;
        background: #ffffff;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .restaurant-header-container {
        padding: 20px 16px;
    }
    
    .restaurant-header-content {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: flex-start;
    }
    
    .restaurant-logo {
        max-width: 180px;
        max-height: 100px;
        margin: 0;
    }
    
    div.restaurant-logo {
        width: 80px;
        height: 80px;
        font-size: 32px;
        flex-shrink: 0;
    }
    
    .restaurant-name {
        font-size: 22px;
        margin-bottom: 8px;
        font-weight: 700;
        color: #2d3748;
    }
    
    .restaurant-meta {
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }
    
    .meta-item {
        font-size: 12px;
        padding: 4px 8px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        color: #64748b;
    }
    
    .restaurant-address {
        font-size: 13px;
        color: #64748b;
        margin-bottom: 12px;
    }
    
    .restaurant-address i {
        color: #94a3b8;
        font-size: 12px;
    }
    
    .restaurant-actions {
        justify-content: flex-end;
        margin-top: 0;
        align-self: flex-start;
    }
    
    .action-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #64748b;
    }
    
    .action-button:hover {
        background: #f1f5f9;
        border-color: #cbd5e0;
        color: #4a5568;
    }
    
    .call-button {
        background: #ff6600;
        border-color: #ff6600;
        color: white;
    }
    
    .call-button:hover {
        background: #e55100;
        border-color: #e55100;
    }
    
    /* Status Badge Mobile Styling */
    .status-badge {
        margin-top: 8px;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        color: #15803d;
    }
    
    .status-badge.closed {
        background: #fef2f2;
        border: 1px solid #fecaca;
        color: #dc2626;
    }
    
    .status-badge i {
        font-size: 11px;
    }
}

/* ===== SEHR KLEINE MOBILE BILDSCHIRME ===== */
@media (max-width: 480px) {
    .restaurant-header-container {
        padding: 16px 12px;
    }
    
    .restaurant-name {
        font-size: 20px;
    }
    
    .restaurant-meta {
        gap: 6px;
    }
    
    .meta-item {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .restaurant-address {
        font-size: 12px;
    }
    
    .action-button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .status-badge {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .restaurant-logo {
        max-width: 150px;
        max-height: 80px;
    }
    
    div.restaurant-logo {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}


.localmenu-container {
    min-height: 100vh;
    background: #fafbfc;
    position: relative;
}

.main-content-area {
    max-width: calc(100vw - 300px);
    margin: 0 auto;
    padding: 0 20px 40px 20px;

}

@media (max-width: 1200px) {
    .main-content-area {
        max-width: 100%;
        margin-right: 0;
        padding-bottom: 80px; /* Space for mobile cart button */
    }
}
/* Lieferadresse Anzeige Styles */
.delivery-address-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.delivery-address-info {
    display: flex;
    flex-direction: inherit;
    gap: 2px;
    flex: 1;
    min-width: 0; /* Für text-overflow */
}

.delivery-address-label {
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-address-text {
    color: #1e293b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.delivery-address-clear {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.delivery-address-clear:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.delivery-address-clear i {
    font-size: 10px;
}

/* Disabled Delivery Tabs */
.delivery-tab.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.delivery-tab.disabled .delivery-tab-icon svg {
    color: #9ca3af; /* Ausgegraut wenn deaktiviert */
}

.delivery-tab.disabled .delivery-tab-time {
    color: #ef4444;
    font-weight: 600;
}

/* Responsive Anpassungen */
@media (max-width: 480px) {
    .delivery-address-display {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .delivery-address-label {
        font-size: 10px;
    }
    
    .delivery-address-clear {
        width: 22px;
        height: 22px;
    }
}
/* ===== CATEGORY SLIDER STYLES ===== */
.category-slider-container {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    margin-bottom: 20px;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
    left: 0;
    right: 0;
}

.category-slider-container.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    /* Full width background when scrolled */
    width: 100vw;
    position: sticky;
    left: 0;
    right: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    transform: none;
}

/* Create full-width background using pseudo-element */
.category-slider-container.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    z-index: -1;
}

.category-slider {
    overflow: hidden;
    border-radius: 8px;
    max-width: calc(100vw - 300px);
    margin: 0 auto;
    padding: 0 20px;
    margin-right: 300px;
    position: relative;
    z-index: 101;
}

/* Wrapper for slider and button */
.category-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Swiper Navigation Buttons - Lieferando Style */
.category-swiper {
    position: relative;
}

.category-slider-container {
    position: relative;
}

/* Positionierung für vertikale Zentrierung */
.category-slider-wrapper {
    position: relative;
}

/* Verstecke Swiper's default navigation */
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none !important;
}

.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}

/* Lieferando-Style Navigation Arrows */
.category-nav-prev,
.category-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.category-nav-prev:hover,
.category-nav-next:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.category-nav-prev {
    left: 10px;
}

.category-nav-next {
    right: 10px;
}

.category-nav-prev i,
.category-nav-next i {
    font-size: 14px;
    color: #333;
}

/* Pfeile näher zur Mitte verschieben */
.category-nav-prev i {
    margin-left: -1px;
}

.category-nav-next i {
    margin-right: -1px;
}

/* Sehr dezent wenn scrolled */
.category-slider-container.scrolled .category-nav-prev,
.category-slider-container.scrolled .category-nav-next {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.03);
    opacity: 0.5;
}

.category-slider-container.scrolled .category-nav-prev:hover,
.category-slider-container.scrolled .category-nav-next:hover {
    opacity: 0.8;
}

/* Hide navigation on mobile */
@media (max-width: 768px) {
    .category-nav-prev,
    .category-nav-next {
        display: none !important;
    }
}

/* All Categories Button - Lieferando Style Three Dots */
.all-categories-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 102;
    margin-left: 8px;
}

.all-categories-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* When scrolled, adjust button style */
.category-slider-container.scrolled .all-categories-btn {
    background: #ffffff;
    border-color: #e2e8f0;
}

.category-slider-container.scrolled .all-categories-btn:hover {
    background: #3B82F6;
    border-color: #3B82F6;
    color: white;
}

/* Categories Modal Styles */
#categoriesModal .modal-dialog {
    max-width: 600px;
}

#categoriesModal .modal-header {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    border-bottom: none;
}

#categoriesModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    padding: 10px;
}

.category-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: #f7fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.category-grid-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.category-grid-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.category-grid-item .category-name {
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.3;
}

.category-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.category-slide {
    flex-shrink: 0;
    width: auto !important;
    margin-right: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.category-slide:hover {
    transform: translateY(-1px);
}

.category-slide.active {
    transform: scale(1.02);
}

.category-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: fit-content;
    font-size: 14px;
    font-weight: 400;
}

.category-slide.active .category-card {
    background: #1a1a1a;
    color: white;
    font-weight: 500;
}

.category-card:hover {
    border-color: #000;
    background: #fff8f6;
}

.category-slide.active .category-card:hover {
    background: #000;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.category-slide.active .category-name {
    color: white;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .category-slider {
        margin-right: 0;
        padding: 0 16px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .category-slider {
        padding: 0 12px;
        max-width: 100%;
        margin-right: 0;
    }
    
    .category-slider-wrapper {
        gap: 8px;
    }
    
    .all-categories-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-width: 1.5px;
    }
    
    .category-slide {
        width: auto;
    }
    
    .category-slider-container {
        padding: 12px 0;
    }
}

/* ===== LIEFERANDO-STYLE SEARCH & CATEGORIES ===== */
.search-and-categories-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.search-and-categories-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-container-wrapper {
    padding: 16px 0 12px 0;
    transition: all 0.3s ease;
}

.search-container {
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.search-input {
    width: 100%;
    padding: 6px 20px 10px 55px;
    border: 1px solid #d5d5d5; /* Dezenter Rahmen wie Lieferando */
    border-radius: 30px;
    font-size: 16px;
    background: #ffffff;
    color: #333333; /* Dunklere Schriftfarbe */
    transition: all 0.2s ease;
    font-family: inherit;
    box-shadow: none; /* Kein Schatten für Flat Design */
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: #ff8100;
    box-shadow: none; /* Kein Schatten beim Focus */
    background: #ffffff;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    font-size: 16px;
}

.search-icon {
    position: absolute;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff8100; /* Orange wie Lieferando */
    font-size: 18px;
    pointer-events: none;
}

/* Category Slider Integration - Lieferando Style */
.category-slider-container {
    padding: 0 0 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.category-slider {
    overflow: hidden;
    width: 100%;
    padding: 0 20px;
    position: relative;
}

/* Category Cards - Transparent by default, white when scrolled */
.category-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: fit-content;
    backdrop-filter: blur(5px);
}

.category-slider-container.scrolled .category-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.category-slide.active .category-card {
    border-color: #000;
    background: #000;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.category-slider-container.scrolled .category-slide.active .category-card {
    background: #000;
    border-color: #000;
    color: white;
}

.category-card:hover {
    border-color: #ff6b35;
    background: rgba(255, 248, 246, 0.8);
}

.category-slider-container.scrolled .category-card:hover {
    background: #fff8f6;
}

.category-slide.active .category-card:hover {
    background: #000;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.category-slider-container.scrolled .category-name {
    color: #1f2937;
    text-shadow: none;
}

.category-slide.active .category-name {
    color: white;
    text-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .search-container {
        padding: 0 16px;
    }
    
    .search-icon {
        left: 34px;
    }
    
    .category-slider {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .search-container {
        padding: 0 12px;
    }
    
    .search-input {
        padding: 10px 14px 10px 45px; /* Kleiner auf Mobile */
        font-size: 14px; /* Kleinere Schrift */
        border-radius: 30px; /* Gleicher Style wie Desktop */
        border: 1px solid #d5d5d5; /* Gleicher dezenter Rahmen */
        color: #333333; /* Dunklere Schriftfarbe */
    }
    
    .search-icon {
        left: 25px;
        font-size: 14px; /* Kleineres Icon */
        color: #ff8100; /* Orange auch auf Mobile */
    }
    
    .search-container-wrapper {
        padding: 8px 0 4px 0; /* Kompaktere Abstände */
    }
    
    .category-slider-container {
        padding: 0 0 6px 0; /* Geringerer Abstand nach unten */
    }
    
    .category-slider {
        padding: 0 12px;
    }
}
/* Category slider styles are now integrated above */

.category-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.category-slide {
    flex-shrink: 0;
    width: auto !important;
    margin-right: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.category-slide:hover {
    transform: translateY(-1px);
}

.category-slide.active {
    transform: scale(1.02);
}

/* Mobile responsive rules are integrated above */

/* ===== LIEFERANDO-STYLE CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cart-header {
    padding: 0;
    border-bottom: none;
    background: #ffffff;
    position: relative;
}

.cart-title {
    text-align: center;
    padding: 20px 16px 16px 16px;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    background: #ffffff;
    border-bottom: none;
}

.delivery-options {
    padding: 0 16px 16px 16px;
    background: #ffffff;
    border-bottom: 1px solid #f7fafc;
}

.delivery-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 0;
    background: #f7fafc;
    border-radius: 25px;
    padding: 4px;
}

.delivery-tab {
    flex: 1;
    padding: 8px 12px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: white;
    border: 1px solid #d5d5d5; /* Flat Design mit Rahmen */
    color: #718096;
    box-shadow: none; /* Kein Schatten für Flat Design */
}

.delivery-tab:hover:not(.active):not(.disabled) {
    background: #fff5f0;
    border-color: #ff8100;
}

.delivery-tab.active {
    background: #1a1a1a; /* Schwarzer Hintergrund */
    color: white; /* Weiße Schrift */
    border-color: #1a1a1a;
    box-shadow: none; /* Kein Schatten */
}

.delivery-tab-icon {
    display: flex;
    align-items: center;
}

.delivery-tab-icon svg {
    color: #6b7280; /* Grau wenn inaktiv */
}

.delivery-tab.active .delivery-tab-icon svg {
    color: white; /* Weiß wenn aktiv */
}

.delivery-tab-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.delivery-tab-method {
    font-weight: 600;
    font-size: 13px;
}

.delivery-tab-time {
    font-size: 10px;
    opacity: 0.9;
}

/* ===== DELIVERY ADDRESS INFO (Lieferando-Style) ===== */
.delivery-address-info {
    margin: 0 16px 16px 16px;
    padding: 12px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 3px solid #ff6600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.delivery-address-content {
    flex: 1;
    min-width: 0;
}

.delivery-address-label {
    font-size: 11px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.delivery-address-text {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delivery-address-clear {
    width: 24px;
    height: 24px;
    border: none;
    background: #e53e3e;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.delivery-address-clear:hover {
    background: #c53030;
    transform: scale(1.1);
}

.delivery-address-clear:active {
    transform: scale(0.95);
}

.minimum-order-banner {
    margin: 0 16px 16px 16px;
    padding: 12px 16px;
    background: #fff8dc;
    border: 1px solid #f6e05e;
    border-radius: 8px;
    color: #b45309;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background:white;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.cart-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.cart-empty-text {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
}

.cart-empty-subtext {
    font-size: 14px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 16px;
}

.cart-item {
    background: white;
    border-radius: 0;
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid #f7fafc;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-left: 12px;
}

.cart-item-description {
    font-size: 13px;
    color: #718096;
    margin: 4px 0 12px 0;
    line-height: 1.4;
    font-style: italic;
}

.cart-item-options {
    font-size: 12px;
    color: #a0aec0;
    margin: 4px 0;
    font-style: italic;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.add-note-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-weight: 500;
    transition: color 0.2s ease;
}

.add-note-btn:hover {
    color: #e55100;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #d5d5d5;
    background: white;
    color: #666;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: none; /* Flat Design */
}

.quantity-btn svg {
    color: currentColor;
}

.quantity-btn:hover {
    background: #fff5f0;
    border-color: #ff8100;
    color: #ff8100;
    transform: none; /* Keine Animation */
}

.quantity-btn.remove {
    color: #dc3545;
    border-color: #d5d5d5;
}

.quantity-btn.remove:hover {
    background: #fff5f5;
    border-color: #dc3545;
    color: #dc3545;
}

.quantity-btn.minus {
    color: #666;
    border-color: #d5d5d5;
}

.quantity-btn.minus:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

.quantity-btn.plus {
    color: #ff8100; /* Orange direkt */
    border-color: #ff8100;
}

.quantity-btn.plus:hover {
    background: #fff5f0;
    border-color: #ff8100;
    color: #e56f00;
}

.quantity-display {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    min-width: 20px;
    text-align: center;
}

.cart-summary {
    padding: 20px 16px 16px 16px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.summary-line.subtotal {
    color: #4a5568;
    font-weight: 500;
}

.summary-line.fee {
    color: #718096;
    font-size: 13px;
}

.summary-line.total {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.free-delivery-info {
    font-size: 12px;
    color: #718096;
    margin: 8px 0;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.checkout-btn:hover::before {
    left: 100%;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #e55100 0%, #ff7420 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

.checkout-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.25);
}

.checkout-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkout-btn:disabled::before {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
        transition: right 0.3s ease;
        border-left: none;
        box-shadow: none;
    }
    
    .cart-sidebar.open {
        right: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .cart-title {
        padding: 16px;
        font-size: 18px;
    }
    
    .delivery-tabs {
        padding: 3px;
    }
    
    .delivery-tab {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .delivery-tab-method {
        font-size: 12px;
    }
    
    .delivery-tab-time {
        font-size: 9px;
    }
    
    .cart-item {
        padding: 16px 0;
    }
    
    .cart-item-name {
        font-size: 15px;
    }
    
    .cart-item-price {
        font-size: 15px;
    }
    
    .cart-item-description {
        font-size: 12px;
    }
    
    .add-note-btn {
        font-size: 12px;
    }
    
    .quantity-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .quantity-display {
        font-size: 14px;
    }
    
    .checkout-btn {
        padding: 14px 18px;
        font-size: 15px;
    }
}

/* Scroll Styling für Cart Content */
.cart-content::-webkit-scrollbar {
    width: 4px;
}

.cart-content::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.cart-content::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 2px;
}

.cart-content::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Loading States */
.cart-loading {
    opacity: 0.6;
    pointer-events: none;
}

.cart-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #ff6600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Lieferando-Style Notification Badges */
.cart-notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
}

/* Smooth Transitions */
.cart-sidebar * {
    transition: all 0.2s ease;
}

.delivery-tab,
.cart-item,
.quantity-btn,
.add-note-btn,
.checkout-btn {
    transition: all 0.3s ease;
}

/* ===== ADDRESS SEARCH CONTAINER (Original-ähnliches Styling) ===== */
.address-search-container {
    background: white; 
    border-radius: 16px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    margin-bottom: 24px; 
    overflow: visible !important;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000; 
}

.address-search-container:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); 
}

/* ===== ADDRESS SEARCH BAR (Original Oranger Hintergrund) ===== */
.address-search-bar {
    display: flex;
    align-items: center;
    padding: 16px 20px; 
    gap: 12px;
    background: linear-gradient(135deg, #ff6900 0%, #ff8533 100%); 
    color: white; 
    overflow: visible !important;
    border-top-left-radius: 16px; /* Für abgerundete Ecken oben, da Container abgerundet */
    border-top-right-radius: 16px;
}

.address-search-icon { /* Original Styling für Icon-Hintergrund etc. */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white; /* Icon Farbe weiß auf orangem Hintergrund */
}

/* Original Styling für Text und Input-Felder wiederherstellen */
.address-text .address-main,
.address-text .address-sub {
    color: white;
}

.address-change i {
    color: white;
    opacity: 0.8;
}

.address-search-input {
    flex: 1;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.address-search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.address-search-input:focus {
    outline: none;
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.address-search-button,
.address-search-cancel,
.address-clear-button { /* Zusammengefasst für ähnliches Styling */
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.address-search-button:hover,
.address-search-cancel:hover,
.address-clear-button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.address-clear-button.logged-in-clear { /* Spezifisches Styling, falls nötig */
    /* Original-Styling hier, falls abweichend */
}


/* ===== DELIVERY INFO BAR (Original-ähnliches Styling) ===== */
.delivery-info-bar {
    background: #f8fafc; /* Heller Hintergrund, nicht reinweiß */
    padding: 12px 20px;
    border-top: 1px solid #e5e7eb; 
    color: #4b5563; 
    border-bottom-left-radius: 16px; /* Für abgerundete Ecken unten */
    border-bottom-right-radius: 16px;
}

.delivery-info-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.delivery-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.delivery-info-item i {
    color: #ff6900;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Beibehaltung des restlichen Original-CSS und JavaScript */
@media (max-width: 768px) {
    .address-search-container {
        margin: 0 -20px 20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .address-search-bar {
        padding: 12px 20px;
        border-top-left-radius: 0; 
        border-top-right-radius: 0;
    }
    
    .address-main { /* War im vorherigen Edit, hier nicht mehr direkt relevant für Farbanpassung */
        font-size: 14px;
    }
    
    .address-search-input {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .delivery-info-content {
        gap: 12px;
        justify-content: space-between;
    }
    
    .delivery-info-item {
        font-size: 11px;
        flex: 1;
        min-width: calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .address-search-input {
        font-size: 13px;
    }
    
    .address-search-input::placeholder {
        font-size: 13px;
    }
    
    .delivery-info-content {
        gap: 8px;
    }
    
    .delivery-info-item {
        font-size: 10px;
        min-width: 100%;
        justify-content: center;
    }
}

.guest-address-display {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guest-address-button {
    background: none !important;
    border: none !important;
    color: white !important;
    text-align: left;
    flex: 1;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guest-address-button:hover {
    transform: translateY(-1px);
}

.guest-address-button:focus {
    outline: none;
    box-shadow: none;
}

.guest-address-clear {
    width: 36px;
    height: 36px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.guest-address-clear:hover {
    background: rgba(239, 68, 68, 0.4);
    color: #dc2626;
    transform: scale(1.1);
}

.address-icon { /* Duplikat aus .address-search-icon, kann ggf. zusammengefasst werden */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
}
/* ===== ADDRESS SEARCH CONTAINER (Original-ähnliches Styling) ===== */
.address-search-container {
    background: white; 
    border-radius: 16px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    margin-bottom: 24px; 
    overflow: visible !important;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000; 
}

.address-search-container:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); 
}

/* ===== ADDRESS SEARCH BAR (Original Oranger Hintergrund) ===== */
.address-search-bar {
    display: flex;
    align-items: center;
    padding: 16px 20px; 
    gap: 12px;
    background: linear-gradient(135deg, #ff6900 0%, #ff8533 100%); 
    color: white; 
    overflow: visible !important;
    border-top-left-radius: 16px; /* Für abgerundete Ecken oben, da Container abgerundet */
    border-top-right-radius: 16px;
}

.address-search-icon { /* Original Styling für Icon-Hintergrund etc. */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white; /* Icon Farbe weiß auf orangem Hintergrund */
}

/* Original Styling für Text und Input-Felder wiederherstellen */
.address-text .address-main,
.address-text .address-sub {
    color: white;
}

.address-change i {
    color: white;
    opacity: 0.8;
}

.address-search-input {
    flex: 1;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.address-search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.address-search-input:focus {
    outline: none;
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.address-search-button,
.address-search-cancel,
.address-clear-button { /* Zusammengefasst für ähnliches Styling */
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.address-search-button:hover,
.address-search-cancel:hover,
.address-clear-button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.address-clear-button.logged-in-clear { /* Spezifisches Styling, falls nötig */
    /* Original-Styling hier, falls abweichend */
}


/* ===== DELIVERY INFO BAR (Original-ähnliches Styling) ===== */
.delivery-info-bar {
    background: #f8fafc; /* Heller Hintergrund, nicht reinweiß */
    padding: 12px 20px;
    border-top: 1px solid #e5e7eb; 
    color: #4b5563; 
    border-bottom-left-radius: 16px; /* Für abgerundete Ecken unten */
    border-bottom-right-radius: 16px;
}

.delivery-info-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.delivery-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.delivery-info-item i {
    color: #ff6900;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Beibehaltung des restlichen Original-CSS und JavaScript */
@media (max-width: 768px) {
    .address-search-container {
        margin: 0 -20px 20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .address-search-bar {
        padding: 12px 20px;
        border-top-left-radius: 0; 
        border-top-right-radius: 0;
    }
    
    .address-main { /* War im vorherigen Edit, hier nicht mehr direkt relevant für Farbanpassung */
        font-size: 14px;
    }
    
    .address-search-input {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .delivery-info-content {
        gap: 12px;
        justify-content: space-between;
    }
    
    .delivery-info-item {
        font-size: 11px;
        flex: 1;
        min-width: calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .address-search-input {
        font-size: 13px;
    }
    
    .address-search-input::placeholder {
        font-size: 13px;
    }
    
    .delivery-info-content {
        gap: 8px;
    }
    
    .delivery-info-item {
        font-size: 10px;
        min-width: 100%;
        justify-content: center;
    }
}

.guest-address-display {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guest-address-button {
    background: none !important;
    border: none !important;
    color: white !important;
    text-align: left;
    flex: 1;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guest-address-button:hover {
    transform: translateY(-1px);
}

.guest-address-button:focus {
    outline: none;
    box-shadow: none;
}

.guest-address-clear {
    width: 36px;
    height: 36px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.guest-address-clear:hover {
    background: rgba(239, 68, 68, 0.4);
    color: #dc2626;
    transform: scale(1.1);
}

.address-icon { /* Duplikat aus .address-search-icon, kann ggf. zusammengefasst werden */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Restaurant Info Body - nur diese Eigenschaft behalten */
.restaurant-info-body {
    padding: 24px;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
}

/* Farbliche Anpassungen für Info-Listen-Icons */
.info-list li i {
    color: #ff6b35;
}

/* ===== MENU OPTIONS MODAL ===== */
.menu-options-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.menu-options-modal.open {
    opacity: 1;
    visibility: visible;
}

.menu-options-content {
    background: white;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-options-modal.open .menu-options-content {
    transform: scale(1);
}

.menu-options-header {
    padding: 24px 24px 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    flex-shrink: 0;
}

.menu-options-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.menu-options-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.menu-options-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.menu-options-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.menu-options-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.option-group {
    margin-bottom: 32px;
}

.option-group:last-child {
    margin-bottom: 0;
}

.option-group-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.option-group-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.option-group.required .option-group-title::after {
    content: " *";
    color: #ef4444;
}

.option-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.option-item:hover {
    border-color: #ff6b35;
    background: #fff8f6;
}

.option-item.selected {
    border-color: #ff6b35;
    background: #fff8f6;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.option-item-info {
    flex: 1;
}

.option-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.option-item-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.option-item-price {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    margin-left: 16px;
}

.option-item-price.free {
    color: #10b981;
}

.option-item-control {
    margin-left: 16px;
    display: flex;
    align-items: center;
}

.option-radio,
.option-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.option-checkbox {
    border-radius: 4px;
}

.option-item.selected .option-radio {
    border-color: #ff6b35;
    background: #ff6b35;
}

.option-item.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-item.selected .option-checkbox {
    border-color: #ff6b35;
    background: #ff6b35;
}

.option-item.selected .option-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.menu-options-footer {
    padding: 20px 24px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
    flex-shrink: 0;
}

.quantity-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-controls-large {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border-radius: 6px;
    padding: 3px;
    border: 1px solid #e5e7eb;
}

.quantity-btn-large {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    color: #6b7280;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.quantity-btn-large:hover {
    background: #e5e7eb;
    color: #374151;
}

.quantity-btn-large:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display-large {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    min-width: 24px;
    text-align: center;
}

.modal-add-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 7px 18px !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.modal-add-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.modal-add-button:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-add-button.loading {
    background: linear-gradient(135deg, #ff8855 0%, #ffaa44 100%);
    cursor: wait;
    opacity: 0.8;
    position: relative;
}

.modal-add-button.loading:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
}

/* Spinner für Loading State */
.spinner-border {
    display: inline-block;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .restaurant-info-content,
    .menu-options-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .restaurant-info-header,
    .menu-options-header {
        padding: 20px 20px 16px 20px;
    }
    
    .restaurant-info-title,
    .menu-options-title {
        font-size: 18px;
    }
    
    .restaurant-info-body,
    .menu-options-body {
        padding: 20px;
    }
    
    .option-item {
        padding: 14px;
    }
    
    .option-item-name {
        font-size: 15px;
    }
    
    .option-item-description {
        font-size: 13px;
    }
}

/* ===== ADDRESS FORM IN MODAL ===== */
.address-form-in-modal {
    text-align: center;
    padding: 20px;
}

.address-form-icon {
    margin-bottom: 20px;
}

.address-form-content {
    max-width: 400px;
    margin: 0 auto;
}

.modal-address-input {
    transition: border-color 0.2s ease !important;
}

.modal-address-input:focus {
    border-color: #ff6b35 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

.modal-address-autocomplete {
    border-top: none !important;
}

.modal-autocomplete-item:hover {
    background-color: #f8fafc !important;
    color: #ff6b35 !important;
}

.modal-autocomplete-item:last-child {
    border-bottom: none !important;
    border-radius: 0 0 12px 12px !important;
}

.address-form-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.address-alternative button:hover {
    background-color: #fff8f6 !important;
    transform: translateY(-1px);
}

/* Icon Verbesserungen für Add-Note Button */
.add-note-btn i {
    font-size: 11px;
    margin-right: 4px;
    opacity: 0.8;
}

.add-note-btn:hover i {
    opacity: 1;
}

/* Tab Hover Effects */
.delivery-tab:not(.active):not(.disabled):hover {
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600;
    transform: translateY(-1px);
}

/* Disabled Tab Styling */
.delivery-tab.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
    color: #94a3b8;
}

.delivery-tab.disabled .delivery-tab-time {
    color: #ef4444;
    font-weight: 600;
}

/* Category Swiper Real-time Sync with Smooth Effect */
.category-slider {
    scroll-behavior: auto !important;
}

.category-slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1) !important; /* Smooth easing */
}

/* Active slide highlight - no scale, no orange */
.category-slide {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}



/* Optimize touch response on mobile */
@media (pointer: coarse) {
    .category-slider {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
    
    .category-slider .swiper-wrapper {
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Smoother transitions on mobile - no scale effect */
    .category-slide {
        transition: all 0.25s ease-out;
    }
    
    .category-slide.active {
        /* Simple highlight without scale animation */
        background: #f5f5f5;
        border-color: #d0d0d0;
    }
}

/* Cart Item Hover Effect */
.cart-item:hover {
    background: #f8fafc;
    transform: translateX(2px);
    transition: all 0.2s ease;
}

/* Empty Cart Styling */
.cart-empty-icon {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Summary Line Styling */
.summary-line span:first-child {
    color: #4a5568;
    font-weight: 500;
}

.summary-line span:last-child {
    font-weight: 600;
    color: #2d3748;
}

.summary-line.total span {
    font-weight: 700;
    font-size: 18px;
}

/* ===== CART CLOSE BUTTON (Dezent Mobile) ===== */
.cart-close-btn {
    display: none; /* Standardmäßig versteckt auf Desktop */
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    z-index: 1001;
}

.cart-close-btn:hover {
    background: #edf2f7;
    color: #2d3748;
    transform: scale(1.05);
}

.cart-close-btn:active {
    transform: scale(0.95);
}

/* Zeige Close Button nur auf mobilen Geräten */
@media (max-width: 1200px) {
    .cart-close-btn {
        display: flex;
    }
    
    /* Anpassung des Cart-Titles für Platz für Close Button */
    .cart-title {
        padding-right: 60px;
    }
}

/* Mobile Cart Overlay für bessere UX */
@media (max-width: 768px) {
    .cart-sidebar.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== COUPON SECTION STYLES ===== */
.cart-coupon-section {
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 16px;
}

.coupon-input-container {
    margin-bottom: 12px;
}

.coupon-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    transition: all 0.2s ease;
    outline: none;
}

.coupon-input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.coupon-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.coupon-apply-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-width: 100px;
    justify-content: center;
}

.coupon-apply-btn:hover {
    background: linear-gradient(135deg, #e55a00 0%, #cc5200 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.coupon-apply-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 102, 0, 0.2);
}

.coupon-apply-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.coupon-apply-btn i {
    font-size: 13px;
}

/* Coupon Messages */
.coupon-message {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coupon-message.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.coupon-message.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.coupon-message.info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

/* Applied Coupons */
.applied-coupons {
    margin-top: 12px;
}

.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.applied-coupon:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.coupon-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coupon-code {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coupon-code i {
    color: #ff6600;
    font-size: 12px;
}

.coupon-description {
    font-size: 12px;
    color: #64748b;
}

.coupon-discount {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-amount {
    font-size: 14px;
    font-weight: 600;
    color: #15803d;
}

.coupon-remove {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.coupon-remove:hover {
    background: #fee2e2;
    color: #dc2626;
}

.coupon-remove i {
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .coupon-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .coupon-apply-btn {
        width: 100%;
        min-width: auto;
    }
    
    .applied-coupon {
        padding: 10px 12px;
    }
    
    .coupon-code {
        font-size: 13px;
    }
    
    .coupon-description {
        font-size: 11px;
    }
    
    .coupon-amount {
        font-size: 13px;
    }
}/* Consolidated mobile styles from mobile-optimized.css and cart-sidebar-mobile.css */

/* ========================================
   MOBILE OPTIMIZED STYLES
   Performance-optimierte Styles für mobile Geräte
   ======================================== */

/* Mobile-First Approach */
@media (max-width: 768px) {
    /* Optimierte Font-Sizes für Mobile */
    .menu-item-name {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .menu-item-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .menu-item-price {
        font-size: 1rem;
    }
    
    /* Touch-optimierte Buttons */
    .btn {
        min-height: 44px; /* iOS Touch Target */
        min-width: 44px;
    }
    
    .add-to-cart-btn {
        width: 36px;
        height: 36px;
    }
    
    /* Optimierte Karten für Mobile */
    .menu-item-card {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    /* Reduzierte Schatten für Performance */
    .menu-item-card:hover {
        transform: none; /* Keine Hover-Animation auf Mobile */
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* Sticky Mobile Cart Button */
    .mobile-cart-button {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 100;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        animation: slideInUp 0.3s ease-out;
    }
    
    /* Optimierte Modals für Mobile */
    .modal-content {
        border-radius: 1rem 1rem 0 0;
        max-height: 90vh;
    }
    
    .modal-body {
        -webkit-overflow-scrolling: touch; /* Smooth iOS Scrolling */
    }
    
    /* Category Slider Mobile */
    .category-slider {
        padding: 0.5rem 0;
    }
    
    .category-card {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Reduzierte Abstände */
    .section {
        padding: 1rem 0;
    }
    
    .section-header {
        margin-bottom: 0.75rem;
    }
    
    /* Mobile Cart Optimierungen */
    #cartSidebarNew {
        width: 100%;
        max-width: 100%;
    }
    
    .cart-header {
        padding: 1rem;
    }
    
    .cart-items {
        max-height: 50vh;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Performance: GPU-beschleunigte Animationen */
.cart-sidebar,
.modal-base,
.mobile-cart-button {
    will-change: transform;
    transform: translateZ(0); /* GPU Layer */
}

/* Lazy Loading Placeholder */
.menu-item-image {
    background: #f0f0f0;
    min-height: 80px;
}

/* Reduced Motion für Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Cart Sidebar Mobile Optimizations */

/* Fix cart footer visibility on mobile */
@media (max-width: 768px) {
    .cart-sidebar {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
    }
    
    .cart-items-wrapper {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 180px; /* Space for fixed footer */
    }
    
    .cart-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e5e5e5;
        padding: 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    .checkout-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 25px;
        background: linear-gradient(135deg, #00b900 0%, #00a810 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .checkout-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(0, 185, 0, 0.3);
    }
    
    /* Ensure cart total is visible */
    .cart-total-section {
        margin-bottom: 10px;
        padding: 10px 0;
        border-top: 1px solid #f0f0f0;
    }
    
    /* Prevent content from being hidden behind footer */
    .cart-content {
        padding-bottom: 30px;
    }
}

/* Smooth scroll for cart items */
.cart-items-wrapper {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .cart-item-quantity button {
        min-width: 36px;
        min-height: 36px;
        font-size: 18px;
    }
    .main-content-area {
        padding-bottom:0px;
    }
    
    .cart-item-remove {
        min-width: 32px;
        min-height: 32px;
    }
}