/* cafes.css - Spezifisches CSS für die Café-Detailseite */

/* Back Button */
.back-to-cafes {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: background 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.back-to-cafes:hover {
    background: #545b62;
}

/* Café Header */
.cafe-header {
    margin-bottom: 25px;
}

.cafe-hero {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cafe-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cafe-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 25px;
}

.cafe-hero-overlay h1 {
    font-size: 32px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cafe-hero-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.featured-badge {
    background: #ffc107;
    color: #212529;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/* Café Attribute - AUSKOMMENTIERT/ENTFERNT */
/*
.cafe-attributes-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.cafe-attribute {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.cafe-attribute i {
    font-size: 16px;
}

.cafe-attribute.wifi { color: #007bff; }
.cafe-attribute.sockets { color: #28a745; }
.cafe-attribute.pets { color: #ffc107; }
.cafe-attribute.terrace { color: #fd7e14; }
.cafe-attribute.parking { color: #28a745; border-left: 3px solid #28a745; }
*/

/* Café Tabs */
.cafe-tabs {
    display: flex;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 25px;
    background: white;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    flex-wrap: wrap;
}

.cafe-tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.cafe-tab-btn:hover {
    background: #698C00;
    color: #ffffff;
}

.cafe-tab-btn.active {
    border-bottom-color: #E9A900;
    color: #E9A900;
    background: #fff9e6;
}

.tab-badge {
    background: #17a2b8;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
    font-weight: bold;
}

/* Tab Content */
.cafe-tab-content {
    display: none;
    background: white;
    padding: 25px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    animation: fadeIn 0.3s ease;
    min-height: 300px;
}

.cafe-tab-content.active {
    display: block;
}

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

/* Café Description */
.cafe-description h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 24px;
}

.cafe-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.opening-hours {
    margin-top: 30px;
}

.opening-hours h3 {
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 20px;
}

.opening-hours-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 12px;
}

.opening-hours-text {
    white-space: pre-line;
    font-family: monospace;
    color: #495057;
    font-size: 14px;
    line-height: 1.7;
}

/* Features Tab */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.feature-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #E7A800;
}

.feature-category h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item.available {
    border-left: 3px solid #28a745;
}

.feature-item.not-available {
    border-left: 3px solid #dc3545;
    opacity: 0.7;
}

.feature-name {
    font-weight: 500;
    color: #495057;
}

.feature-icon {
    font-size: 16px;
}

.feature-item.available .feature-icon {
    color: #28a745;
}

.feature-item.not-available .feature-icon {
    color: #dc3545;
}

/* Zusätzliche Info Box */
.cafe-additional-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #17a2b8;
}

.cafe-additional-info h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item h4 {
    margin-bottom: 10px;
    color: #495057;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 0;
}

/* Kategorien Navigation */
.categories-nav-container {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    padding: 12px 0;
    border-bottom: 2px solid #e9ecef;
    margin: -25px -25px 25px -25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.categories-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.category-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    white-space: nowrap;
    font-size: 14px;
}

.category-nav-link:hover {
    background: #E7A800;
    color: white;
    border-color: #E7A800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.2);
}

.category-nav-link.active {
    background: #E7A800;
    color: white;
    border-color: #E7A800;
}

.item-count {
    background: #28a745;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

/* Menu Categories Container */
.menu-categories-container {
    margin-top: 15px;
}

/* MENU TAB STYLES */
.menu-category {
    margin-bottom: 40px;
    scroll-margin-top: 90px;
}

.category-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.category-header h3 {
    color: #2c3e50;
    font-size: 22px;
}

.category-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

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

.menu-item-name {
    font-weight: 600;
    font-size: 17px;
    color: #2c3e50;
}

.menu-item-price {
    font-weight: bold;
    color: #28a745;
    font-size: 20px;
}

.menu-item-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 14px;
}

.menu-item-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.menu-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 15px;
    background: #f8f9fa;
    color: #495057;
}

.menu-tag.special {
    background: #fff3cd;
    color: #856404;
}

.menu-tag.featured {
    background: #d4edda;
    color: #155724;
}

.ki-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffd700;
    color: #333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* KI Highlight */
.ki-highlighted {
    animation: kiPulse 2s ease;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.3) !important;
    border: 2px solid #E7A800 !important;
    position: relative;
}

@keyframes kiPulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(111, 66, 193, 0); }
}

/* No Menu/Gallery Message */
.no-menu-message,
.no-gallery-message {
    text-align: center;
    padding: 50px 15px;
    color: #6c757d;
}

.no-menu-message i,
.no-gallery-message i {
    font-size: 60px;
    color: #dee2e6;
    margin-bottom: 15px;
}

.no-menu-message h3,
.no-gallery-message h3 {
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 22px;
}

.no-menu-message p,
.no-gallery-message p {
    max-width: 500px;
    margin: 0 auto 20px;
    font-size: 15px;
}

/* Gallery Tab */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.main-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffc107;
    color: #212529;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}

/* Contact Tab */
.cafe-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item i {
    color: #E7A800;
    font-size: 24px;
    margin-top: 5px;
}

.contact-info h4 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 17px;
}

.contact-info p,
.contact-info a {
    margin: 0;
    color: #6c757d;
    text-decoration: none;
    line-height: 1.6;
    font-size: 14px;
}

.contact-info a:hover {
    color: #E7A800;
    text-decoration: underline;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: #ffc107;
}

/* KI-Modul Space */
.ki-module-space {
    margin: 25px 0 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .cafe-hero {
        height: 250px;
    }
    
    .cafe-hero-overlay {
        padding: 15px;
    }
    
    .cafe-hero-overlay h1 {
        font-size: 24px;
    }
    
    /*
    .cafe-attributes-compact {
        gap: 8px;
    }
    
    .cafe-attribute {
        padding: 8px 12px;
        font-size: 12px;
    }
    */
    
    .cafe-tab-btn {
        padding: 12px 10px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .cafe-tab-content {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .categories-nav {
        overflow-x: auto;
        padding-bottom: 8px;
        justify-content: flex-start;
    }
    
    .category-nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cafe-tab-btn {
        min-width: auto;
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .cafe-tab-btn i {
        display: none;
    }
}

/* ZUSÄTZLICHE CSS FÜR DIE 3 ÄNDERUNGEN */

/* 1. Mobile Kategorien Navigation mit Scroll-Hint */
.categories-nav-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.categories-nav {
    display: flex;
    gap: 8px;
    padding: 0 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    width: 100%;
}

.categories-nav::-webkit-scrollbar {
    display: none;
}

.scroll-hint {
    display: none;
    position: absolute;
    right: 5px;
    background: rgba(111, 66, 193, 0.9);
    color: white;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 12px;
    animation: bounceHint 2s infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes bounceHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

/* 2. Tabs Reihenfolge bleibt gleich im CSS, nur HTML wurde geändert */

/* 3. Back Button entfernt - einfach auskommentiert/entfernt */
/* .back-to-cafes {
    display: none;
} */

/* RESPONSIVE ANPASSUNGEN FÜR MOBILE KATEGORIEN */
@media (max-width: 768px) {
    .categories-nav-container {
        padding: 10px 0;
    }
    
    .categories-nav {
        gap: 6px;
        padding: 0 10px 8px 10px;
    }
    
    .category-nav-link {
        padding: 6px 12px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .categories-nav {
        gap: 4px;
    }
    
    .category-nav-link {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* ==========================================
   STICKY COFFEE WIDGET - UNBERÜHRT!
   ========================================== */

/* BASE WIDGET STYLES */
.sticky-coffee-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 380px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 99999;
    overflow: hidden;
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease;
}

.sticky-coffee-widget.minimized {
    width: auto;
    min-width: 200px;
    cursor: pointer;
}

.sticky-coffee-widget.minimized .coffee-widget-header,
.sticky-coffee-widget.minimized .coffee-widget-content {
    display: none;
}

.sticky-coffee-widget.minimized .coffee-widget-minimized {
    display: flex;
}

.sticky-coffee-widget.expanded .coffee-widget-minimized {
    display: none;
}

/* TROPHY ICON */
.coffee-widget-trophy {
    position: absolute;
    top: -15px;
    left: -10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
    border: 3px solid white;
    font-size: 20px;
    color: #b8860b;
}

/* HEADER */
.coffee-widget-header {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 50px;
}

.coffee-widget-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coffee-widget-header i {
    color: #ffd700;
    font-size: 18px;
}

.coffee-widget-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.coffee-widget-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* CONTENT */
.coffee-widget-content {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.coffee-type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.coffee-type-tab {
    flex: 1;
    min-width: 80px;
    padding: 10px 8px;
    border: 2px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.coffee-type-tab:hover {
    border-color: #007bff;
    background: #e3f2fd;
}

.coffee-type-tab.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* PRICE DISPLAY */
.coffee-price-display {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.price-big {
    font-size: 48px;
    font-weight: 800;
    color: #28a745;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.price-big .currency {
    font-size: 24px;
    color: #6c757d;
    margin-left: 5px;
}

.price-label {
    margin-top: 8px;
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

/* CAFE INFO */
.coffee-cafe-info {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.cafe-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.cafe-name strong {
    font-size: 16px;
    color: #2c3e50;
    flex: 1;
}

.place-type-badge {
    background: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.cafe-location {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coffee-details {
    margin-top: 8px;
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ACTIONS */
.coffee-widget-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.coffee-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.coffee-btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.coffee-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.coffee-btn-secondary {
    background: #6c757d;
    color: white;
}

.coffee-btn-secondary:hover {
    background: #5a6268;
}

.coffee-btn-compare {
    width: 100%;
    background: #ffc107;
    color: #212529;
    margin-top: 10px;
}

.coffee-btn-compare:hover {
    background: #e0a800;
}

/* WIDGET FOOTER */
.coffee-widget-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 11px;
}

.coffee-widget-footer small {
    display: block;
    line-height: 1.5;
}

/* MINIMIZED VIEW */
.coffee-widget-minimized {
    display: none;
    padding: 15px 20px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 15px;
}

.coffee-widget-minimized i {
    color: #ffd700;
    font-size: 20px;
}

.minimized-price {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    margin-left: 5px;
}

/* NO DATA STATE */
.coffee-no-data {
    text-align: center;
    padding: 30px 20px;
}

.coffee-no-data i {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 15px;
    display: block;
}

.coffee-no-data p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 14px;
}

/* REFRESHING STATE */
.refreshing {
    opacity: 0.7;
    pointer-events: none;
}

/* MOBILE */
@media(max-width:768px){
.sticky-coffee-widget{left:10px;right:10px;bottom:85px;width:auto!important;max-height:480px!important;position:fixed!important;display:block!important}
.coffee-widget-content{max-height:420px!important;padding:12px;-webkit-overflow-scrolling:touch}
.coffee-type-tabs{display:flex;gap:5px;overflow-x:auto}.coffee-type-tab{flex:1;padding:8px;font-size:12px;white-space:nowrap;text-align:center;border-radius:20px;border:2px solid #dee2e6;background:#f8f9fa}.coffee-type-tab.active{background:#007bff;color:#fff;border-color:#007bff}
.price-big{font-size:32px;color:#28a745;font-weight:800}
.coffee-widget-actions{display:flex;gap:8px;margin-top:10px}.coffee-btn{flex:1;padding:10px;border:none;border-radius:8px;font-size:13px;font-weight:600;background:#007bff;color:#fff;cursor:pointer}.coffee-btn-secondary{background:#6c757d}
}

/* ==========================================
   NEUE ELEMENTE - CAFES.PHP AKTUALISIERUNG
   ========================================== */

/* 1. Super Preis Badge */
.superprice-badge-hero {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255,255,255,0.95) !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    border: 2px solid #E7A800 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 9999 !important;
    text-align: center !important;
    min-width: 100px !important;
}

.superprice-badge-hero .euro-symbols {
    display: flex !important;
    gap: 3px !important;
    justify-content: center !important;
    margin-bottom: 4px !important;
}

.superprice-badge-hero .euro-icon {
    font-size: 20px !important;
    font-weight: bold !important;
}

.superprice-badge-hero .euro-icon.active { color: #28a745 !important; }
.superprice-badge-hero .euro-icon.inactive { color: #dee2e6 !important; }

.superprice-badge-hero .price-label-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    text-transform: uppercase !important;
}

/* 2. Tourist Bar */
.tourist-bar {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 10;
}

.tourist-bar::-webkit-scrollbar { display: none; }

.tourist-bar-container {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    align-items: center;
}

.tourist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    white-space: nowrap;
    border: 1px solid #e9ecef;
    border-left: 3px solid;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.tourist-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* 3. Kava Specials Bar (KEIN COFFEE!) */
.kava-specials-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 8px 0;
    max-height: 45px;
    overflow: hidden;
    box-sizing: border-box;
}

.kava-specials-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

.kava-specials-container::-webkit-scrollbar { display: none; }

.kava-label {
    font-weight: 700;
    color: #495057;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 12px;
    border-right: 2px solid #dee2e6;
}

.kava-label i { color: #B25900; font-size: 14px; }

.kava-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: white;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50;
    border: 1px solid #dee2e6;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.kava-pill .kava-price {
    color: #28a745;
    font-weight: 700;
    font-size: 13px;
}

    .superprice-badge-hero .euro-icon { font-size: 16px !important; }
    .superprice-badge-hero .price-label-text { font-size: 10px !important; }
    
    .tourist-bar { padding: 10px 0; }
    .tourist-badge { padding: 6px 12px; font-size: 13px; }
    
    .kava-specials-bar { padding: 6px 0; }
    .kava-label { font-size: 12px; padding-right: 8px; }
    .kava-pill { font-size: 12px; padding: 4px 10px; }
    .kava-pill .kava-price { font-size: 12px; }
}

@media (max-width: 480px) {
    .tourist-bar-container { gap: 8px; padding: 0 10px; }
    .tourist-badge { padding: 5px 10px; font-size: 12px; gap: 5px; }
    .kava-specials-container { gap: 8px; padding: 0 10px; }
    .kava-label { font-size: 11px; }
    .kava-pill { font-size: 11px; padding: 3px 8px; }
}

/* ================================================
   MOBILE COFFEE WIDGET - ABSOLUTE PRIORITÄT
   ================================================ */

/* Mobile-Fix: Nur den MINIMIERTEN Button anpassen */
@media (max-width: 768px) {
    #stickyCoffeeWidget.sticky-coffee-widget {
        position: fixed !important;
        bottom: 85px !important;
        left: 10px !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    /* NUR der minimierte Button: Komplett gelb */
    #stickyCoffeeWidget.sticky-coffee-widget.minimized {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
        border: 2px solid #FF8C00 !important;
        border-radius: 10px !important;
        box-shadow: 0 3px 10px rgba(255, 140, 0, 0.3) !important;
        color: #333 !important;
        width: auto !important;
        min-width: 220px !important;
        max-width: 260px !important;
        padding: 8px 12px !important;
        /* NEUE ZEILE FÜR HÖHE: */
    min-height: 34px !important; /* Standard-Touch-Größe für Mobilgeräte */
    }
    
    /* Text im minimierten Button */
    #stickyCoffeeWidget.sticky-coffee-widget.minimized .coffee-widget-minimized {
        font-size: 14px !important;
        white-space: nowrap !important;
        font-weight: bold !important;
        color: #333 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        background: inherit !important;
    }
    
    /* Optional: Geöffnetes Widget (braun) */
    #stickyCoffeeWidget.sticky-coffee-widget .coffee-widget-content {
        background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%) !important;
        color: white !important;
    }
}

/* FOOD FINDER - blinkend ROT-GELB */
.footer-nav-item.sff-active .footer-nav-link {
    position: relative;
    padding-top: 8px;
}

.footer-nav-item.sff-active .footer-nav-text {
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.sff-blinking {
    animation: sff-glow 1.5s infinite;
    color: #ff4757 !important;
}

.sff-blinking i {
    color: #FFD700 !important;
}

@keyframes sff-glow {
    0%, 100% { text-shadow: 0 0 5px #ff4757, 0 0 10px #FFD700; }
    50% { text-shadow: 0 0 20px #ff4757, 0 0 30px #FFD700; }
}

.sff-new-badge {
    position: absolute;
    top: -8px;
    right: 50%;
    transform: translateX(50%);
    background: #ff4757;
    color: white;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 8px;
    font-weight: bold;
    animation: badge-pulse 1s infinite;
    white-space: nowrap;
}

@keyframes badge-pulse {
    0%, 100% { transform: translateX(50%) scale(1); }
    50% { transform: translateX(50%) scale(1.1); }
}

/* PRICE COMPARISON - GRÜN hervorgehoben */
.footer-nav-link-highlight {
    background: linear-gradient(135deg, #4caf50, #2e7d32) !important;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 12px;
    margin: -5px 0;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    animation: pulse-green 2s infinite;
    font-weight: 700;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5); }
}

.price-badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: #fff;
    color: #4caf50;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN FOOTER */
.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px 0 20px;
    margin-bottom: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: #b54b2a;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #b54b2a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 13px;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #b54b2a;
}

/* Social Media */
.footer-social {
    text-align: center;
    margin: 20px 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 15px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #b54b2a;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-nav-text {
        font-size: 9px;
    }
    
    .footer-nav-link i {
        font-size: 18px;
    }
    
    .footer-nav-items {
        padding: 0 5px;
    }
/* ============================================
   LAST UPDATED BADGE - UNTER DEM BILD (für Cafés)
   ============================================ */
.last-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.95);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 15px 0 5px 0;
    width: fit-content;
    transition: all 0.3s ease;
}

.last-updated-badge i {
    font-size: 14px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Zentrierte Variante (optional) */
.last-updated-badge.centered {
    margin-left: auto;
    margin-right: auto;
}

/* Rechtsbündige Variante (optional) */
.last-updated-badge.right {
    margin-left: auto;
    margin-right: 0;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .last-updated-badge {
        padding: 6px 14px;
        font-size: 12px;
        margin: 10px 0 5px 0;
        width: 100%;
        justify-content: center;
        border-radius: 20px;
    }
    
    .last-updated-badge i {
        font-size: 12px;
    }
}

/* Kleine Animation beim Hovern */
.last-updated-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.3);
}

/* Damit der Badge nicht mit anderen Elementen kollidiert */
.cafe-hero + .last-updated-badge {
    margin-top: 10px;
}

/* Container für den Badge (falls nötig) */
.last-updated-container {
    text-align: left;
    margin: 10px 0;
}

/* MENU BADGE STYLES */
.menu-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 15;
    background: rgba(0,0,0,0.7);
    border-radius: 8px;
    padding: 4px 8px;
    backdrop-filter: blur(4px);
}

.menu-badge img {
    height: 28px;
    width: auto;
    display: block;
}

.menu-badge-compact {
    position: absolute;
    bottom: 10px;
    right: 45px;
    z-index: 15;
    background: rgba(0,0,0,0.6);
    border-radius: 6px;
    padding: 3px 6px;
    backdrop-filter: blur(3px);
}

.menu-badge-compact img {
    height: 18px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .menu-badge img {
        height: 22px;
    }
    .menu-badge-compact img {
        height: 14px;
    }
}