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

body {
    font-family: 'Amatic SC', cursive;
    background: #0a0a0a;
    overflow-x: hidden;
    padding-bottom: 100px; /* Space for floating dock */
}

/* Chalkboard Canvas */
.chalkboard {
    background: #252e25; /* ירוק בקבוק כהה מאוד - כמו לוח של פעם */
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

/* Chalk Texture Overlay */
.chalkboard::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,0.08),
            rgba(0,0,0,0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,0.08),
            rgba(0,0,0,0.08) 1px,
            transparent 1px,
            transparent 2px
        );
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* Grain Texture */
.chalkboard::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    z-index: 2;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: #ffffff;
}

/* Main Title */
.main-title {
    font-family: 'Rubik Doodle Shadow', cursive;
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffd700; /* זהב/צהוב - מעורר תיאבון */
    text-shadow: 
        3px 3px 0px #d35400, /* צל כתום עמוק */
        0 0 15px rgba(255, 215, 0, 0.4),
        0 0 25px rgba(255, 215, 0, 0.2);
    transform: rotate(-2deg);
    letter-spacing: 3px;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #ff9f43; /* כתום פסטל - חם ומזמין */
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.5),
        0 0 10px rgba(255, 159, 67, 0.3);
    transform: rotate(1deg);
    border-bottom: 2px dashed #ff9f43;
    padding-bottom: 10px;
    display: inline-block; /* הקו יהיה רק מתחת לטקסט */
    width: auto;
}

.menu-section {
    margin-bottom: 50px;
    transform: rotate(0.1deg);
}

.menu-section:nth-child(even) {
    transform: rotate(-0.1deg);
}

/* Notes */
.note {
    font-size: 1.4rem;
    color: #e8e8e8;
    margin-bottom: 20px;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.4);
    transform: rotate(-0.2deg);
    font-style: italic;
}

.note-inline {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-style: italic;
}

/* Table Styles */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1.8rem;
}

.menu-table th {
    font-size: 2rem;
    font-weight: 700;
    padding: 15px 10px;
    text-align: right;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.4);
    border-bottom: 2px dashed rgba(255,255,255,0.4);
    transform: rotate(0.2deg);
}

.menu-table th:nth-child(2),
.menu-table th:nth-child(3) {
    text-align: center;
}

.menu-table td {
    padding: 12px 10px;
    text-align: right;
    color: #ffffff;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.4);
    border-bottom: 1px dashed rgba(255,255,255,0.3);
}

.menu-table td:nth-child(2),
.menu-table td:nth-child(3) {
    text-align: center;
    font-weight: 700;
    font-size: 1.9rem;
    color: #54a0ff; /* תכלת גיר - בולט וקריא */
    text-shadow: 
        1px 1px 0px rgba(0,0,0,0.5),
        0 0 8px rgba(84, 160, 255, 0.3);
}

.menu-table tr {
    transform: rotate(0.05deg);
}

.menu-table tr:nth-child(even) {
    transform: rotate(-0.05deg);
}

.menu-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

/* Menu List */
.menu-list {
    list-style: none;
    font-size: 1.8rem;
    line-height: 2.2;
    padding-right: 20px;
}

.menu-list li {
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.4);
    transform: rotate(0.1deg);
}

.menu-list li:nth-child(even) {
    transform: rotate(-0.1deg);
}

.menu-list li:nth-child(3n) {
    transform: rotate(0.15deg);
}

.item-name {
    display: inline-block;
    margin-left: 15px;
}

.price {
    font-weight: 700;
    font-size: 2rem;
    color: #54a0ff; /* תכלת גיר - בולט וקריא */
    text-shadow: 
        1px 1px 0px rgba(0,0,0,0.5),
        0 0 8px rgba(84, 160, 255, 0.3);
}

/* Hand-drawn effect for separators */
.menu-section::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    margin: 30px auto;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(-0.5deg);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .menu-table {
        font-size: 1.4rem;
    }
    
    .menu-table th {
        font-size: 1.6rem;
        padding: 10px 5px;
    }
    
    .menu-table td {
        padding: 8px 5px;
    }
    
    .menu-list {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.7rem;
    }
    
    .chalkboard {
        padding: 20px 10px;
    }
}

/* Additional chalk dust effect - removed for better visibility */

/* Hand-drawn underline effect */
.section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 5px;
    background: linear-gradient(to left, 
        transparent 0%, 
        rgba(255,255,255,0.2) 20%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.2) 80%, 
        transparent 100%);
    transform: rotate(-0.3deg) scaleY(0.5);
    border-radius: 50%;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    max-width: 900px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 
        0 0 15px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(0,0,0,0.3);
    margin: 0 auto 40px auto;
    transform: rotate(-1deg);
    border-radius: 8px;
    background: #1a1a1a;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none; /* מבטל את הפסים */
    z-index: 2;
    pointer-events: none;
    opacity: 0.1; /* חלש מאוד כדי שהתמונות יראו ברורות */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1; /* תמונה מלאה וברורה */
    z-index: 1;
}

/* Owner Section */
.owner-section {
    text-align: center;
    margin-top: 60px;
    padding: 30px 0;
    transform: rotate(0.2deg);
}

.owner-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 
        0 0 15px rgba(0,0,0,0.5),
        inset 0 0 10px rgba(0,0,0,0.3);
    object-fit: cover;
    margin-bottom: 15px;
    transform: rotate(-1deg);
}

.owner-text {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.4),
        0 0 6px rgba(255,255,255,0.15);
    font-weight: 700;
    margin-top: 10px;
}

/* Floating Dock - Modern Navigation */
.floating-dock {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 450px;
    height: 65px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 20px;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

/* קבוצות האייקונים בצדדים */
.dock-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* האייקונים עצמם */
.dock-item {
    color: #a0a0a0;
    font-size: 1.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* אפקט ריחוף לאייקונים */
.dock-item:hover, .dock-item:active {
    color: #ff9f43;
    transform: translateY(-3px) scale(1.3);
    background: rgba(255, 159, 67, 0.1);
}

/* כפתור החייג מימין */
.dock-right {
    position: relative;
    margin-left: 10px;
}

.call-fab {
    position: relative;
    top: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9f43, #ff8c2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 15px rgba(255, 159, 67, 0.4),
        0 0 0 6px rgba(30, 30, 30, 1);
    transition: transform 0.3s ease;
    text-decoration: none;
    font-size: 2rem;
}

.call-fab:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Vegan Toggle Styling */
.vegan-toggle-wrapper {
    text-align: center;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    border: 2px dashed rgba(255,255,255,0.2);
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
    position: relative;
    z-index: 100;
}

.toggle-label {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    font-family: 'Amatic SC', cursive;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.5),
        0 0 8px rgba(255,255,255,0.2);
}

.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 38px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #666;
    transition: .4s;
    border-radius: 38px;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.3),
        0 0 0 2px rgba(255,255,255,0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

input:checked + .slider {
    background-color: #2ecc71; /* ירוק טבעוני */
    box-shadow: 
        0 0 15px rgba(46, 204, 113, 0.6),
        inset 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider:before {
    transform: translateX(32px);
}

/* Filter Navigation Buttons */
.filter-nav-container {
    display: flex;
    justify-content: center; /* ממורכז במחשב */
    gap: 12px;
    padding: 15px 10px;
    margin: 30px 0 20px 0;
    overflow-x: auto; /* גלילה אופקית בנייד */
    -webkit-overflow-scrolling: touch; /* גלילה חלקה באייפון */
    scrollbar-width: none; /* הסתרת פס גלילה בפיירפוקס */
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
    position: relative;
    z-index: 100;
}

/* הסתרת פס גלילה בכרום/ספארי */
.filter-nav-container::-webkit-scrollbar {
    display: none; 
}

/* עיצוב הכפתור */
.filter-btn {
    font-family: 'Amatic SC', cursive; /* אותו פונט כמו באתר */
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.1); /* רקע חצי שקוף */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px; /* פינות עגולות */
    padding: 8px 20px;
    white-space: nowrap; /* מניעת שבירת שורות */
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transform: rotate(0.1deg);
}

/* מצב פעיל (Active) ומעבר עכבר */
.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* הלוגיקה של ההסתרה - זה הקסם */
body.vegan-mode .menu-item:not(.vegan), 
body.vegan-mode tr.menu-item:not(.vegan) {
    display: none !important;
}

/* הסתרת שורות ריקות בטבלה */
body.vegan-mode .menu-table tbody tr.menu-item:not(.vegan) {
    display: none !important;
}

/* הסתרת קטגוריות ריקות במצב טבעוני */
body.vegan-mode .menu-section:has(.menu-list li.menu-item:not(.vegan):not([style*="display: none"])):not(:has(.menu-list li.menu-item.vegan)),
body.vegan-mode .menu-section:has(.menu-table tbody tr.menu-item:not(.vegan):not([style*="display: none"])):not(:has(.menu-table tbody tr.menu-item.vegan)) {
    display: none !important;
}

/* Dynamic Message */
.dynamic-message {
    text-align: center;
    font-size: 1.8rem;
    color: #e8e8e8;
    margin: -20px 0 30px 0;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.4);
    transform: rotate(0.2deg);
    font-weight: 700;
    padding: 0 20px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section anchor offset */
.menu-section {
    scroll-margin-top: 20px;
}

/* Phone Call Float Button */
.phone-float {
    position: fixed;
    bottom: 90px; /* מעל הסרגל התחתון */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9f43; /* כתום חם - מתאים לעיצוב */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Amatic SC', cursive;
    text-decoration: none;
    box-shadow: 
        0 4px 15px rgba(255, 159, 67, 0.4),
        0 0 20px rgba(255, 159, 67, 0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.phone-float:hover {
    background-color: #ff8c2e;
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 159, 67, 0.5),
        0 0 30px rgba(255, 159, 67, 0.3);
}

.phone-float:active {
    transform: translateX(-50%) scale(0.95);
}

@keyframes pulse {
    0% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 4px 15px rgba(255, 159, 67, 0.4),
            0 0 20px rgba(255, 159, 67, 0.2);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 
            0 6px 20px rgba(255, 159, 67, 0.6),
            0 0 30px rgba(255, 159, 67, 0.4);
    }
    100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 4px 15px rgba(255, 159, 67, 0.4),
            0 0 20px rgba(255, 159, 67, 0.2);
    }
}

/* אנימציית כניסה עדינה - ללא מסך טעינה */
/* משתמש רק ב-opacity כדי לא להפריע ל-transform הקיים (rotation) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* הפעלה על הכותרת והסקשנים - רק opacity כדי לשמור על rotation */
.main-title {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.hero-slider {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.dynamic-message {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.15s;
}

/* דירוג הזמנים - שהדברים יכנסו אחד אחרי השני */
.menu-section {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.menu-section:nth-of-type(1) { animation-delay: 0.3s; } /* כריכים */
.menu-section:nth-of-type(2) { animation-delay: 0.5s; } /* כריכים נוספים */
.menu-section:nth-of-type(3) { animation-delay: 0.7s; } /* ארוחות ומנות עיקריות */
.menu-section:nth-of-type(4) { animation-delay: 0.9s; } /* סלטים */
.menu-section:nth-of-type(5) { animation-delay: 1.1s; } /* מנות אורז */
.menu-section:nth-of-type(6) { animation-delay: 1.3s; } /* מבצעים וקינוחים */

.owner-section {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 1.5s;
}

/* Info Section - Status & Location */
.info-section {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 5;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 1.7s;
}

.chalk-frame {
    border: 3px dashed rgba(255, 255, 255, 0.4);
    padding: 25px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    transform: rotate(1deg);
    background: rgba(0,0,0,0.2);
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.3),
        0 0 15px rgba(0,0,0,0.2);
}

/* Status LED Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    background: rgba(0,0,0,0.3);
    transform: rotate(-0.5deg);
}

.status-indicator .led {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px currentColor;
}

.status-indicator.open .led {
    background: #00ff00;
    color: #00ff00;
    animation: blink 2s infinite;
    box-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00;
}

.status-indicator.open .status-text {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-indicator.closed .led {
    background: #ff4444;
    color: #ff4444;
    opacity: 0.6;
    box-shadow: 0 0 8px #ff4444;
}

.status-indicator.closed .status-text {
    color: #ff9f43;
    text-shadow: 0 0 5px rgba(255, 159, 67, 0.3);
}

.hours-list {
    list-style: none;
    font-size: 1.5rem;
    color: #e0e0e0;
    line-height: 2;
    padding: 0;
    margin: 0;
}

.hours-list li {
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hours-list li.today {
    color: #ffd700;
    font-size: 1.7rem;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

/* Location Area */
.location-area {
    margin-top: 50px;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 1.9s;
}

.map-wrapper {
    border: 4px solid rgba(255,255,255,0.3);
    transform: rotate(-2deg);
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.5),
        inset 0 0 10px rgba(0,0,0,0.2);
    margin: 25px auto;
    overflow: hidden;
    border-radius: 8px;
    max-width: 100%;
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
    position: relative;
    z-index: 0;
}

.address-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 8px rgba(255,255,255,0.1);
    transform: rotate(0.3deg);
    padding: 0 20px;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding: 0 20px;
}

.btn-waze,
.btn-google,
.btn-apple {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Amatic SC', cursive;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-waze {
    background: #33ccff;
    color: #fff;
}

.btn-waze:hover {
    background: #1ab8e6;
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 6px 15px rgba(51, 204, 255, 0.5);
}

.btn-google {
    background: #4285f4;
    color: #fff;
}

.btn-google:hover {
    background: #3367d6;
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.5);
}

.btn-apple {
    background: #000;
    color: #fff;
}

.btn-apple:hover {
    background: #333;
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* Action Buttons - already defined above */

.action-btn.primary-pulse {
    background: #25D366;
    color: white !important;
    padding: 10px 30px;
    border-radius: 50px;
    transform: translateY(-15px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    font-weight: bold;
    font-size: 1.1rem;
}

.action-btn.primary-pulse span {
    font-size: 2rem;
}

.action-btn.primary-pulse:hover {
    background: #20ba5a;
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 7px 20px rgba(37, 211, 102, 0.6);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Status Button - Top Right */
.status-button-top {
    position: fixed;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: 'Amatic SC', cursive;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px dashed rgba(255,255,255,0.3);
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.5),
        0 0 20px rgba(0,0,0,0.3);
    z-index: 10000;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.status-button-top .led-top {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px currentColor;
}

.status-button-top.open .led-top {
    background: #00ff00;
    color: #00ff00;
    animation: blink 2s infinite;
    box-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00;
}

.status-button-top.open .status-text-top {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-button-top.closed .led-top {
    background: #ff4444;
    color: #ff4444;
    opacity: 0.6;
    box-shadow: 0 0 8px #ff4444;
}

.status-button-top.closed .status-text-top {
    color: #ff9f43;
    text-shadow: 0 0 5px rgba(255, 159, 67, 0.3);
}

.status-button-top:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.6),
        0 0 30px rgba(0,0,0,0.4);
}

.status-text-top {
    white-space: nowrap;
}

/* Responsive adjustments for top status button */
@media (max-width: 768px) {
    .status-button-top {
        top: 15px;
        right: 15px;
        font-size: 1.3rem;
        padding: 8px 15px;
        gap: 10px;
    }
    
    .status-button-top .led-top {
        width: 12px;
        height: 12px;
    }
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .filter-nav-container {
        justify-content: flex-start; /* יישור לימין כדי לאפשר גלילה */
        padding: 15px 10px;
        margin: 20px 0 15px 0;
    }
    
    .filter-btn {
        font-size: 1.2rem;
        padding: 6px 16px;
    }
    
    .hero-slider {
        height: 200px;
        transform: rotate(-0.5deg);
        margin-bottom: 30px;
    }
    
    .owner-image {
        width: 120px;
        height: 120px;
    }
    
    .owner-text {
        font-size: 1.6rem;
    }
    
    .dynamic-message {
        font-size: 1.5rem;
        margin: -15px 0 25px 0;
    }
    
    body {
        padding-bottom: 80px; /* Space for bottom nav במובייל */
    }
    
    .floating-dock {
        padding: 0 15px;
        width: 95%;
        bottom: 20px;
    }
    
    .dock-section {
        gap: 15px;
    }
    
    .dock-item {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .call-fab {
        width: 55px;
        height: 55px;
        top: -18px;
        font-size: 1.8rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-waze,
    .btn-google,
    .btn-apple {
        font-size: 1.2rem;
        padding: 10px 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .chalk-frame {
        padding: 20px 15px;
    }
    
    .status-indicator {
        font-size: 1.5rem;
        padding: 6px 15px;
    }
    
    .hours-list {
        font-size: 1.3rem;
    }
    
    .address-text {
        font-size: 1.5rem;
    }
}

