 body {
            background-color: #f4f4f4;
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
        }

        @font-face {
            font-family: 'MMK-Heading';
            src: url('../fonts/handelson-four.otf') format('truetype');
            font-weight: bold;
        }

        @font-face {
            font-family: 'MMK-Main';
            src: url('../fonts/mulish.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        
        .menu-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

         .salad-intro {
            background: #A3BC21;
            color: #f4f4f4;
            width: 90%; /* Perfect for mobile */
            max-width: 400px; /* Prevents it from getting too wide on tablets */
            border-radius: 15px;
            padding: 20px;
            position: relative; /* Essential for positioning the logo */
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .salad-card {
            background: url('../img/bg.png') no-repeat center / 100%, #A3BC21;
            
            color: #f4f4f4;
            width: 90%; /* Perfect for mobile */
            max-width: 400px; /* Prevents it from getting too wide on tablets */
            border-radius: 15px;
            padding: 20px;
            position: relative; /* Essential for positioning the logo */
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .card-logo-h1 {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 100px; /* Small logo for the corner */
            opacity: 0.9;
        }

        .card-logo {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 50px; /* Small logo for the corner */
            opacity: 0.9;
        }

        .card-logomayo {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 90px; /* Small logo for the corner */
            opacity: 0.9;
        }

        .salad-info h1 {
        font-family: 'MMK-Heading', sans-serif;
        text-align: center; color: #FAC857;
        font-size: 45px;
        margin-top: 50px;
    }

     .salad-info h2 {
        font-family: 'MMK-Main', sans-serif;
        font-size: 24px;
    }

        .salad-info p {
            font-family: 'MMK-Main', sans-serif;
            margin: 5px 0;
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 14px;
            font-weight: bold;
            text-align: justify;
        }

        .ingredient-list {
            font-family: 'MMK-Main', sans-serif;
        margin-top: 15px;     
        margin-bottom: 10px;   
        font-weight: bold;
        color: #ffffff;
        line-height: 1.5;
    }

    .nutri-info {
        font-family: 'MMK-Main', sans-serif;
        margin-bottom: 20px;   
        font-weight: bold;
        font-size: 12px;        
    }

    a {
      margin: 0 15px;
      text-decoration: none;
      color: #7804bb;
      font-size: 20px;
      font-weight: bold;
    }

    .price-tag {
            display: inline-block;
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 18px;
        }

        #topBtn {
        display: none;          /* Hidden by default */
        position: fixed;        /* Stay in place */
        bottom: 20px;           /* 20px from bottom */
        right: 20px;            /* 20px from right */
        z-index: 99;            /* Make sure it stays on top */
        border: none;           /* Remove borders */
        outline: none;          /* Remove outline */
        background-color: #7002af; /* Your brand green */
        color: #FAC857;           /* Text color */
        cursor: pointer;        /* Add a mouse pointer on hover */
        padding: 15px;          /* Some padding */
        border-radius: 50%;     /* Make it a circle */
        font-size: 14px;        /* Font size */
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Add shadow for depth */
        width: 55px;
        height: 55px;
        transition: opacity 0.3s; /* Smooth fade in/out */
    }

    #topBtn:hover {
        background-color: #3e0261; /* Slightly darker on hover */
    }




    .order-controls {
        margin-top: 15px;
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 12px;
    }

    .order-controls label {
        display: block;
        font-size: 12px;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

   

    .order-btn {
        margin-top: 10px;
        width: 100%;
        padding: 12px;
        background-color: #25D366; /* WhatsApp Green */
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        font-size: 16px;
    }





    .input-row {
        display: flex;       /* Put items side-by-side */
        gap: 12px;           /* Space between the two boxes */
        margin-bottom: 10px; /* Space before the Protein dropdown */
    }

    .input-group {
        flex: 1;             /* Give both boxes equal width */
    }

    .input-group label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
        display: block;
        opacity: 0.9;
    }

    /* Modernizing the dropdowns to look like buttons */
    select {
        width: 100%;
        padding: 10px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        appearance: none; /* Removes the default arrow in some browsers */
        background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><path fill="gray" d="M0 3l5 5 5-5z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 10px center;
    }