
        h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .categories {
            padding: 30px;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .section-title i {
            margin-right: 10px;
            color: #2ecc71;
        }

        .offline-title i {
            color: #e74c3c;
        }

        .tile-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .tile {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            text-align: center;
            position: relative;
            height: 180px;
            display: flex;
            flex-direction: column;
        }

        .tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .tile-image {
            height: 110px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }

        .tile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .tile:hover .tile-image img {
            transform: scale(1.05);
        }

        .tile-content {
            padding: 12px 10px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .tile-name {
            font-weight: 600;
            font-size: 1rem;
            color: #2c3e50;
        }

        .status-indicator {
            height: 8px;
            width: 100%;
        }

        .live {
            background-color: #2ecc71;
            animation: blink-green 1.5s infinite;
        }

        .offline {
            background-color: #e74c3c;
            animation: blink-red 2s infinite;
        }

        @keyframes blink-green {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes blink-red {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }

            100% {
                opacity: 1;
            }
        }

        .status-text {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 10px;
            z-index: 10;
        }

        .status-live {
            background: rgba(46, 204, 113, 0.2);
            color: #27ae60;
        }

        .status-offline {
            background: rgba(231, 76, 60, 0.2);
            color: #c0392b;
        }

        @media (max-width: 768px) {
            .tile-container {
                grid-template-columns: repeat(2, 1fr);
            }

            h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .tile-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .tile {
                height: 160px;
            }

            .tile-image {
                height: 90px;
            }

            .tile-name {
                font-size: 0.9rem;
            }

            .categories {
                padding: 20px;
            }
        }

        footer {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
            border-top: 1px solid #ecf0f1;
        }

        .upload-btn {
            display: block;
            width: 100%;
            text-align: center;
            background: #3498db;
            color: white;
            padding: 10px;
            border-radius: 5px;
            margin-top: 15px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .upload-btn:hover {
            background: #2980b9;
        }

        #imageUpload {
            display: none;
        }

        /* Banner Styles */
        .banner-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }

        .banner-slider {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 20px auto;
            position: relative;
        }

        .banner-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .banner-item {
            min-width: 100%;
            height: 0;
            padding-bottom: 30%;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .banner-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
        }

        /* Banner navigation */
        .banner-nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 8px;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .banner-dot.active {
            background: #2ecc71;
            transform: scale(1.2);
        }

        .banner-dot:hover {
            background: #bbb;
        }

        /* Banner navigation arrows */
        .banner-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 15px;
            pointer-events: none;
        }

        .banner-arrow {
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .banner-arrow:hover {
            background: rgba(255, 255, 255, 1);
        }

        .banner-arrow i {
            font-size: 18px;
            color: #333;
        }

        @media (max-width: 768px) {
            .banner-item {
                padding-bottom: 35%;
            }
            
            .banner-arrow {
                width: 35px;
                height: 35px;
            }
            
            .banner-arrow i {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .banner-item {
                padding-bottom: 40%;
            }
            
            .banner-arrows {
                padding: 0 8px;
            }
            
            .banner-arrow {
                width: 30px;
                height: 30px;
            }
            
            .banner-arrow i {
                font-size: 14px;
            }
            
            .banner-dot {
                width: 10px;
                height: 10px;
            }
        }

        /* ✅ Category slider */
        .category-slider {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            padding: 15px;
            scroll-behavior: smooth;
        }

        .category-slider::-webkit-scrollbar {
            display: none;
        }

        .category-item {
            min-width: 90px;
            max-width: 90px;
            text-align: center;
            flex-shrink: 0;
        }

        .category-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .category-icon img {
            width: 60%;
            height: 60%;
            object-fit: contain;
        }

        .category-item:hover .category-icon {
            transform: scale(1.1);
        }

        .category-name {
            font-size: 12px;
            font-weight: 600;
            color: #2c3e50;
        }
 


        /* restrurent card */

          .restaurant-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* ✅ 2 per row in mobile */
            gap: 16px;
            padding: 10px;
        }

        @media (min-width: 768px) {
            .restaurant-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 992px) {
            .restaurant-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Card styling */
        .simple-card {
            background: #fff;
            border-radius: 12px;
            padding: 15px;
            border: 1px solid #eee;
            box-shadow: 0 3px 10px rgba(0,0,0,0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .simple-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }

        /* Header with icon + name */
        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .landmark-icon {
            width: 28px;
            height: 28px;
            margin-right: 10px;
        }

        .restaurant-name {
            font-size: 1.05rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }

        .restaurant-location {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.4;
        }




        /* main index.html css */
        .location-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        
        .modal-header h2 {
            margin: 0;
            color: #2c3e50;
            font-size: 1.5rem;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #7f8c8d;
        }
        
        .close-btn:hover {
            color: #34495e;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #34495e;
        }
        
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #f9f9f9;
        }
        
        .submit-btn {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #219653;
        }
        
        .selected-location {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .change-location {
            background: #0d6efd;
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s ease-in-out;
            text-decoration: none;
        }
        
        .change-location:hover {
            background: #0b5ed7;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        }
        
        /* Restaurant Section Styles */
        .restaurant-section {
            padding: 20px 0;
            margin: 20px 0;
        }
        
        .section-title {
            font-size: 18px;
            margin-bottom: 20px;
            color: #2c3e50;
            text-align: center;
        }
        
        .restaurant-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            padding: 0 15px;
        }
        
        @media (min-width: 576px) {
            .restaurant-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .restaurant-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .restaurant-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .restaurant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .restaurant-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .restaurant-info {
            padding: 15px;
        }
        
        .restaurant-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .restaurant-location {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        
        .restaurant-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .rating {
            display: flex;
            align-items: center;
            background: #ffc107;
            color: #fff;
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .rating i {
            margin-right: 4px;
            font-size: 0.8rem;
        }
        
        .delivery-time {
            color: #27ae60;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .no-restaurants {
            text-align: center;
            padding: 40px 20px;
            grid-column: 1 / -1;
        }
        
        .no-restaurants i {
            font-size: 3rem;
            color: #ddd;
            margin-bottom: 15px;
        }
        
        .no-restaurants p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
        /* Category Link Styles */
        .category-item {
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .category-item:hover {
            transform: scale(1.05);
        }