/* CSS Document */

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }

        header {
            font-family: 'Helvetica', 'Arial Rounded MT Bold', 'Verdana', 'Tahoma', sans-serif;
            background-color: #333;
            color: white;
            padding: 0;
            margin: 0;
            text-align: center;
            position: relative;
        }

        header img {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: auto;
            margin-left: 55px;
            border-radius: 0;
        }

        header h1 {
            font-size: 4em;
            padding: 0;
            margin: 0;
        }

        header p {
            font-size: 1.4em;
            padding: 0;
            margin: 0;
        }
		
        header a {
			color: aliceblue;
			margin-left: 30px;
        }

        .menu-container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .menu-item {
            display: flex;
            justify-content: flex-start;
            align-items: stretch;
            border-bottom: 1px solid #ddd;
            padding: 15px 0;
        }

        .menu-item .left-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 150px;
        }

        .menu-item .left-column img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .menu-item .left-column .open-button {
            padding: 10px 20px;
            background-color: #333;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 3px;
            margin-bottom: 10px;
        }

        .menu-item .left-column .open-button:hover {
            background-color: #555;
        }

        .menu-item .left-column .price {
            color: #333;
            font-size: 1.4em;
            margin-top: 3px;
            margin-bottom: 3px;
        }

        .menu-item .left-column .addtocart {
            margin-top: 10px;
        }

        .menu-item .right-column {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            margin-left: 10px;
            flex-grow: 1;
        }

        .menu-item .right-column h3 {
            font-family: 'Helvetica', 'Arial Rounded MT Bold', 'Verdana', 'Tahoma', sans-serif;
            margin: 0 0 5px;
            color: #333;
            font-size: 1.8em;
        }

        .menu-item .right-column p {
            margin: 0 0 10px;
            color: #666;
            font-size: 1.2em;
        }

        .viewcart {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .viewcart form {
            display: inline-block;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .overlay img {
            max-width: 80%;
            max-height: 80%;
            border-radius: 10px;
            cursor: pointer;
        }

        .overlay.hidden {
            display: none;
        }

        .overlay-video {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            justify-content: center;
            align-items: center;
        }

        .overlay-video iframe {
            width: 80%;
            height: 80%;
            border: none;
            border-radius: 8px;
        }

        @media (max-width: 888px) {
            header img {
                position: relative;
                top: auto;
                left: auto;
                height: auto;
                width: 200px;
                margin: 0 auto 10px;
                display: block;
            }

            header h1 {
                font-size: 3em;
            }

            header p {
                font-size: 1em;
            }
        }
