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

        body {
            font-family: 'poppins';
            background-color: #f8f9fa;
            color: #333;
        }

         .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


        .header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            gap: 20px;
            position: relative;
        }

          .back-arrow {
            position: absolute;
            left: 0;
            width: 24px;
            height: 24px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }

        .back-arrow:hover {
            color: #4ade80;
        }

         .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-top: 30px;
         
        }
      .logo svg {
    width: 420px; /* or any desired width */
    height: auto;
    max-width: 100%;
}
       

        .logo-icon {
            margin-right: 8px;
        }

  

     

        .section-content {
            display: none;
        }

        .section-content.active {
            display: block;
        }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
   padding: 0 1px;          /* 👈 reduced from 40px */
  max-width: 100%; 
   margin: 0 auto 40px auto;
  box-sizing: border-box;

}
.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keep nice crop without distortion */
    display: block;
    border-radius: 0;
}
       .menu-item {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

        .menu-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
.menu-item-desc {
    font-size: 17px;
    color: #666;
    margin-top: 1px;
}
   .menu-item-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* make it shorter */
    background-color: #39544a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}
        .placeholder-icon {
            color: white;
            opacity: 0.7;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .upload-icon {
            width: 40px;
            height: 40px;
        }

       .menu-item-content {
    padding: 18px 18px 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

       .menu-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: black;
    font-weight: bold;
}
       .menu-item-price {
    font-size: 17px;
    font-weight: 600;
    color: black;
    margin-bottom: 0;
}
.menu-item-price::before {
  content: "";
  display: inline-block;
  width: 18px; /* Adjust icon size */
  height: 18px;
  background-image: url('images/aed.svg'); /* Replace with your icon path */
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -4px;
}

        @media (max-width: 480px) {
              .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .menu-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        border-radius: 24px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.07);
        padding: 0;
        min-height: 120px;
    }
    .menu-item-image {
        width: 40%;
        max-width: 110px;
        aspect-ratio: 1 / 1;
        margin: 0 0 0 12px;
        border-radius: 18px 0 0 18px;
        flex-shrink: 0;
    }
    .menu-item-content {
        flex: 1;
        padding: 18px 12px 18px 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .menu-item-title {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 8px;
       
    }
    .menu-item-price {
        font-size: 16px;
        font-weight: 600;
    
        margin-bottom: 0;
    }
   .menu-item-desc {
    font-size: 15px;
    color: #2D524A;
    margin-top: 4px;
}
 .logo svg {
    width: 250px; /* or any desired width */
    height: auto;
    max-width: 100%;
}
 .logo {
          
            margin-top: 10px;
         
        }
}
