 /* Custom styles to match the provided images and example code */
        body {
            font-family: 'Inter', sans-serif;
            background-color: rgb(236, 217, 190);
            margin: 0;
            padding: 0;
        }

        #body-wrapper {
            animation-duration: 800ms;
            opacity: 1;
        }

        .header-bg {
            background-image: url('https://i.ibb.co/5hJg10XD/DIAPORI.png');
            background-size: 100%;
            background-repeat: no-repeat;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            border-top: 20px solid rgb(236, 217, 190);
            border-right: 10px solid rgb(236, 217, 190);
            border-left: 10px solid rgb(236, 217, 190);
            padding: 1rem 0; /* Add padding to adjust vertical spacing */
            margin-bottom: 1rem; /* Reduce spacing below the header */
        }

        .menu-category {
            margin-bottom: 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .menu-category-title {
            position: relative;
            background-image: linear-gradient(to bottom right, #e9d1af 0%, #7c6e5d 100%),
                              url('https://placehold.co/600x200/7c6e5d/ffffff?text=Default+Category+Image');
            background-size: cover;
            background-position: center right;
            background-blend-mode: overlay;
            min-height: 200px;
            cursor: pointer;
            padding: 1.5rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            transition: background-image 0.3s ease;
        }

        /* Specific background images for categories */
        #coffee-drinks-category .menu-category-title {
            background-image: linear-gradient(rgb(236, 217, 190) 0%, #777575 100%),
                              url('https://diapori-menu.com/img/Freddo.png');
        }
        #beers-alcoholic-category .menu-category-title {
            background-image: linear-gradient(rgba(236, 217, 190, 0.603) 0%, #777575 100%),
                              url('https://diapori-menu.com/img/beer.jpg');
        }
        #cocktails-category .menu-category-title {
            background-image: linear-gradient(rgb(236, 217, 190) 0%, #777575 00%),
                              url('https://diapori-menu.com/img/aperol.jpg');
        }
        #desserts-category .menu-category-title {
            background-image: linear-gradient(#fbf4e900 0%, #7c6e5d 100%),
                              url('https://diapori-menu.com/img/soko.jpg');
        }
        #snacks-category .menu-category-title {
             background-image: linear-gradient(#fbf4e933 0%, #181717 100%),
                              url('https://diapori-menu.com/img/snacks.jpg');
        }
        #salads-category .menu-category-title {
            background-image: linear-gradient(#fbf4e900 0%, #7c6e5d 100%),
                              url('https://diapori-menu.com/img/salad.png');
        }
        #juices-category .menu-category-title {
            background-image: linear-gradient(#fbf4e921 0%, #7c6e5d 100%),
                              url('https://diapori-menu.com/img/juice.png');
        }

        .menu-category-title .title {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            line-height: 1.2;
        }

        .arrow-icon {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            color: white;
            width: 2rem;
            height: 2rem;
            transition: transform 0.3s ease;
        }

        .arrow-icon.rotate {
            transform: translateY(-50%) rotate(180deg);
        }

        /* --- MODIFICATION: Reverted to faster animation --- */
        .menu-content {
            background-color: #ffffff;
            padding: 0 1.5rem;
            border-radius: 0.5rem;
            margin-top: -0.5rem;
            margin-bottom: 1rem;
            border: 1px solid #e0e0e0;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            /* Original faster transitions */
            transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                        opacity 0.5s ease-in-out, 
                        padding-top 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                        padding-bottom 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .menu-content.open {
            opacity: 1;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }
        /* --- MODIFICATION END --- */

        .menu-section-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #a88c72;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0.75rem 0;
            border-bottom: 1px dotted #e0e0e0;
            color: #444;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-name {
            font-weight: 500;
            flex-grow: 1;
            padding-right: 1rem;
            font-size: 1rem;
        }

        .menu-item-price {
            font-weight: bold;
            white-space: nowrap;
            font-size: 1rem;
            margin-left: auto;
        }

        .menu-item-description {
            font-size: 0.85rem;
            color: #777;
            margin-top: 0.2rem;
            width: 100%;
        }

        .content-image {
            width: 100%;
            max-width: 350px;
            height: auto;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }