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

      body {
        font-family: "Poppins", sans-serif;
        background: linear-gradient(
          135deg,
          #ff6b35 0%,
          #f9ca24 25%,
          #f0932b 50%,
          #ff6b35 75%,
          #f9ca24 100%
        );
        background-size: 400% 400%;
        animation: gradientShift 8s ease infinite;
        min-height: 100vh;
        overflow-x: hidden;
        position: relative;
      }

      /* Food doodles background */
      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23fff8e1' fill-opacity='0.1'%3E%3Cpath d='M25 20c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 14c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z'/%3E%3Cpath d='M75 15c-3 0-5.5 2.5-5.5 5.5S72 26 75 26s5.5-2.5 5.5-5.5S78 15 75 15zm0 8c-1.4 0-2.5-1.1-2.5-2.5S73.6 18 75 18s2.5 1.1 2.5 2.5S76.4 23 75 23z'/%3E%3Cpath d='M50 5L48 10L53 12L50 17L55 19L50 24L45 22L50 27L55 25L60 30L55 32L50 37L45 35L40 40L45 42L50 47L55 45L60 50L55 52L50 57L45 55L40 60L35 58L30 63L35 65L40 70L45 68L50 73L55 71L60 76L65 74L70 79L75 77L80 82L85 80L90 85L95 83L100 88V100H0V88L5 83L10 88L15 86L20 91L25 89L30 94L35 92L40 97L45 95L50 100V88L55 86L60 91L65 89L70 94L75 92L80 97L85 95L90 100V0L95 5L100 0V12L95 17L90 12L85 17L80 15L75 20L70 18L65 23L60 21L55 26L50 24L45 29L40 27L35 32L30 30L25 35L20 33L15 38L10 36L5 41L0 39V12L5 17L10 12L15 17L20 15L25 20z'/%3E%3C/g%3E%3C/svg%3E"),
          url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg fill='%23fff8e1' fill-opacity='0.08'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3Ccircle cx='60' cy='20' r='6'/%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3Ccircle cx='20' cy='60' r='7'/%3E%3Ccircle cx='60' cy='60' r='9'/%3E%3Cpath d='M15 35L25 30L20 45L10 40z'/%3E%3Cpath d='M65 35L75 30L70 45L60 40z'/%3E%3Cpath d='M35 15L45 10L40 25L30 20z'/%3E%3Cpath d='M35 65L45 60L40 75L30 70z'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 200px 200px, 150px 150px;
        background-position: 0 0, 50px 50px;
        animation: floatDoodles 20s linear infinite;
        pointer-events: none;
        z-index: -1;
      }

      /* More detailed food doodles */
      body::after {
        content: "🍟 🍔 🍕 🌮 🥤 ☕ 🍰 🍩 🌭 🥪 🍗 🥘 🍜 🍲 🥗 🍤 🍣 🍱 🧀 🥖 🥯 🥨 🍞 🥞 🧇 🥓 🍳 🥚";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 24px;
        opacity: 0.05;
        display: flex;
        flex-wrap: wrap;
        align-content: space-around;
        justify-content: space-around;
        animation: rotateDoodles 30s linear infinite;
        pointer-events: none;
        z-index: -1;
        white-space: pre-wrap;
        word-spacing: 50px;
        line-height: 100px;
      }

      @keyframes floatDoodles {
        0% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
        100% {
          transform: translateY(0px) rotate(360deg);
        }
      }

      @keyframes rotateDoodles {
        0% {
          transform: rotate(0deg) scale(1);
        }
        25% {
          transform: rotate(90deg) scale(1.1);
        }
        50% {
          transform: rotate(180deg) scale(1);
        }
        75% {
          transform: rotate(270deg) scale(1.1);
        }
        100% {
          transform: rotate(360deg) scale(1);
        }
      }

      @keyframes gradientShift {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      @keyframes syncPulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
        }
        50% {
          box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
        }
      }

      @keyframes slideInUp {
        from {
          transform: translateY(50px);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @keyframes shine {
        0% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
          transform: translateX(100%) translateY(100%) rotate(45deg);
        }
      }

      @keyframes gradientText {
        0%,
        100% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
      }

      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

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

      /* Mobile-first responsive design */
      @media (max-width: 414px) {
        .container {
          padding: 12px;
          margin: 0;
        }
      }

      @media (max-width: 375px) {
        .container {
          padding: 10px;
        }
      }

      .header {
        text-align: center;
        margin-bottom: 40px;
        background: rgba(255, 248, 225, 0.98);
        backdrop-filter: blur(15px);
        padding: 40px;
        border-radius: 30px;
        box-shadow: 0 25px 50px rgba(255, 152, 0, 0.3),
          0 0 0 1px rgba(255, 248, 225, 0.4),
          inset 0 1px 0 rgba(255, 248, 225, 0.8);
        animation: slideInUp 1s ease;
        position: relative;
        overflow: hidden;
        border: 3px solid rgba(255, 152, 0, 0.2);
      }

      /* Mobile header adjustments */
      @media (max-width: 414px) {
        .header {
          padding: 25px 15px;
          margin-bottom: 25px;
          border-radius: 20px;
          border-width: 2px;
        }
      }

      @media (max-width: 375px) {
        .header {
          padding: 20px 12px;
          margin-bottom: 20px;
          border-radius: 15px;
        }
      }

      .header::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
          45deg,
          transparent,
          rgba(255, 152, 0, 0.1),
          transparent
        );
        animation: shine 3s infinite;
      }

      /* Add decorative food icons around header */
      .header::after {
        content: "🍕 🍔 🍟 🌮 🥤 ☕ 🍰";
        position: absolute;
        top: -15px;
        left: 0;
        right: 0;
        font-size: 20px;
        opacity: 0.6;
        animation: bounce 2s infinite;
        white-space: nowrap;
        overflow: hidden;
        text-align: center;
        letter-spacing: 30px;
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(-10px);
        }
        60% {
          transform: translateY(-5px);
        }
      }

      .logo-container {
        position: relative;
        z-index: 2;
        margin-bottom: 15px;
      }

      .logo-img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        border-radius: 25px;
        box-shadow: 0 20px 40px rgba(255, 152, 0, 0.4),
          0 0 20px rgba(255, 248, 225, 0.5);
        animation: float 3s ease-in-out infinite;
        transition: all 0.3s ease;
        border: 4px solid rgba(255, 152, 0, 0.3);
        background: radial-gradient(
          circle,
          rgba(255, 248, 225, 0.9) 0%,
          rgba(255, 152, 0, 0.1) 100%
        );
      }

      /* Mobile logo sizing */
      @media (max-width: 414px) {
        .logo-img {
          width: 100px;
          height: 100px;
          border-radius: 20px;
          border-width: 3px;
        }
      }

      @media (max-width: 375px) {
        .logo-img {
          width: 80px;
          height: 80px;
          border-radius: 15px;
          border-width: 2px;
        }
      }

      .logo-img:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 25px 50px rgba(255, 152, 0, 0.5),
          0 0 30px rgba(255, 248, 225, 0.8);
        border-color: rgba(255, 152, 0, 0.6);
      }

      .logo-text {
        font-size: 3.8em;
        color: #ff9800;
        font-weight: 900;
        text-shadow: 3px 3px 0px #f57c00, 6px 6px 0px #e65100,
          9px 9px 20px rgba(255, 152, 0, 0.4);
        margin: 20px 0;
        background: linear-gradient(
          45deg,
          #ff9800,
          #fff8e1,
          #f57c00,
          #fff8e1,
          #ff9800
        );
        background-size: 300% 300%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientText 4s ease infinite;
        position: relative;
        z-index: 2;
        letter-spacing: 3px;
      }

      /* Mobile logo text sizing */
      @media (max-width: 414px) {
        .logo-text {
          font-size: 2.5em;
          margin: 15px 0;
          letter-spacing: 2px;
          text-shadow: 2px 2px 0px #f57c00, 4px 4px 0px #e65100,
            6px 6px 15px rgba(255, 152, 0, 0.4);
        }
      }

      @media (max-width: 375px) {
        .logo-text {
          font-size: 2.2em;
          margin: 12px 0;
          letter-spacing: 1px;
          text-shadow: 1px 1px 0px #f57c00, 2px 2px 0px #e65100,
            3px 3px 10px rgba(255, 152, 0, 0.4);
        }
      }

      @media (max-width: 320px) {
        .logo-text {
          font-size: 1.8em;
          margin: 10px 0;
          letter-spacing: 0px;
        }
      }

      .subtitle {
        color: #ff9800;
        font-size: 1.5em;
        font-weight: 700;
        position: relative;
        z-index: 2;
        text-shadow: 2px 2px 4px rgba(255, 152, 0, 0.3);
        background: linear-gradient(45deg, #ff9800, #f57c00);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* Mobile subtitle sizing */
      @media (max-width: 414px) {
        .subtitle {
          font-size: 1.1em;
          text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.3);
        }
      }

      @media (max-width: 375px) {
        .subtitle {
          font-size: 1em;
        }
      }

      @media (max-width: 320px) {
        .subtitle {
          font-size: 0.9em;
        }
      }

      .menu-section {
        background: rgba(255, 248, 225, 0.98);
        backdrop-filter: blur(20px);
        margin: 25px 0;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 12px 25px rgba(255, 152, 0, 0.2),
          inset 0 1px 0 rgba(255, 248, 225, 0.8),
          0 0 0 2px rgba(255, 152, 0, 0.1);
        animation: slideInUp 1s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 248, 225, 0.3);
      }

      /* Mobile section adjustments - more compact */
      @media (max-width: 768px) {
        .menu-section {
          margin: 20px 0;
          padding: 20px 15px;
          border-radius: 16px;
        }
      }

      @media (max-width: 480px) {
        .menu-section {
          margin: 15px 0;
          padding: 15px 12px;
          border-radius: 12px;
        }
      }

      @media (max-width: 375px) {
        .menu-section {
          margin: 12px 0;
          padding: 12px 10px;
          border-radius: 10px;
        }
      }

      @media (max-width: 320px) {
        .menu-section {
          margin: 10px 0;
          padding: 10px 8px;
          border-radius: 8px;
        }
      }

      .menu-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 152, 0, 0.08),
          transparent
        );
        transition: left 0.5s ease;
      }

      .menu-section:hover::before {
        left: 100%;
      }

      /* Add food category icons to sections */
      .menu-section::after {
        content: "";
        position: absolute;
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #ff9800, #f57c00);
        border-radius: 50%;
        opacity: 0.1;
        animation: pulse 2s infinite;
      }

      .section-title {
        color: #ff9800;
        font-size: 2.2em;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 700;
        text-shadow: 2px 2px 0px #fff8e1, 4px 4px 0px #f57c00,
          6px 6px 15px rgba(255, 152, 0, 0.3);
        position: relative;
        z-index: 2;
        background: linear-gradient(45deg, #ff9800, #f57c00, #ff9800);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 1px;
      }

      /* Mobile section title adjustments */
      @media (max-width: 768px) {
        .section-title {
          font-size: 1.8em;
          margin-bottom: 15px;
          font-weight: 600;
        }
      }

      @media (max-width: 480px) {
        .section-title {
          font-size: 1.5em;
          margin-bottom: 12px;
          text-shadow: 1px 1px 0px #fff8e1, 2px 2px 0px #f57c00,
            3px 3px 10px rgba(255, 152, 0, 0.3);
        }
      }

      @media (max-width: 375px) {
        .section-title {
          font-size: 1.3em;
          margin-bottom: 10px;
        }
      }

      @media (max-width: 320px) {
        .section-title {
          font-size: 1.2em;
          margin-bottom: 8px;
          letter-spacing: 0.5px;
        }
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        border-radius: 3px;
        box-shadow: 0 3px 10px rgba(255, 152, 0, 0.4);
      }

      .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        position: relative;
        z-index: 2;
      }

      /* Mobile grid adjustments - 2 items per row */
      @media (max-width: 768px) {
        .menu-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
      }

      @media (max-width: 480px) {
        .menu-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }
      }

      @media (max-width: 375px) {
        .menu-grid {
          gap: 8px;
        }
      }

      .menu-item {
        border: 2px solid transparent;
        background: linear-gradient(white, white) padding-box,
          linear-gradient(45deg, #ff9800, #fff8e1, #f57c00, #fff8e1, #ff9800)
            border-box;
        border-radius: 16px;
        padding: 16px;
        background-color: rgba(255, 248, 225, 0.98);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.1),
          inset 0 1px 0 rgba(255, 248, 225, 0.8);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: fit-content;
      }

      /* Mobile menu item adjustments - compact Blinkit style */
      @media (max-width: 768px) {
        .menu-item {
          padding: 12px;
          border-radius: 12px;
          border-width: 1px;
          min-height: 240px;
        }
      }

      @media (max-width: 480px) {
        .menu-item {
          padding: 10px;
          border-radius: 10px;
          min-height: 220px;
        }
      }

      @media (max-width: 375px) {
        .menu-item {
          padding: 8px;
          border-radius: 8px;
          min-height: 200px;
        }
      }

      @media (max-width: 320px) {
        .menu-item {
          padding: 6px;
          border-radius: 6px;
          min-height: 180px;
        }
      }

      .menu-item-image {
        width: 100%;
        max-width: 180px;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 12px;
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
        transition: all 0.3s ease;
        background: rgba(255, 248, 225, 0.8);
        border: 1px solid rgba(255, 152, 0, 0.3);
      }

      .menu-item-image:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 16px rgba(255, 152, 0, 0.3);
      }

      /* Responsive image sizing - compact for mobile */
      @media (max-width: 768px) {
        .menu-item-image {
          max-width: 100%;
          height: 100px;
          border-radius: 8px;
          margin-bottom: 8px;
        }
      }

      @media (max-width: 480px) {
        .menu-item-image {
          height: 90px;
          border-radius: 6px;
          margin-bottom: 6px;
        }
      }

      @media (max-width: 375px) {
        .menu-item-image {
          height: 80px;
          border-radius: 5px;
          margin-bottom: 5px;
        }
      }

      @media (max-width: 320px) {
        .menu-item-image {
          height: 70px;
          border-radius: 4px;
          margin-bottom: 4px;
        }
      }

      /* Fallback for missing images */
      .menu-item-image::before {
        content: "🍽️";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2em;
        opacity: 0.3;
        z-index: -1;
      }

      .menu-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          rgba(255, 152, 0, 0.08),
          rgba(255, 248, 225, 0.1),
          rgba(245, 124, 0, 0.08)
        );
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .menu-item:hover::before {
        opacity: 1;
      }

      .menu-item:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 8px 20px rgba(255, 152, 0, 0.25),
          0 0 15px rgba(255, 248, 225, 0.4),
          inset 0 1px 0 rgba(255, 248, 225, 0.9);
        border-image: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00) 1;
      }

      .item-name {
        color: #ff9800;
        font-size: 1.3em;
        font-weight: 700;
        margin-bottom: 8px;
        position: relative;
        z-index: 2;
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.2);
        background: linear-gradient(45deg, #ff9800, #f57c00);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
      }

      /* Mobile item name sizing - compact */
      @media (max-width: 768px) {
        .item-name {
          font-size: 1.1em;
          margin-bottom: 6px;
          font-weight: 600;
        }
      }

      @media (max-width: 480px) {
        .item-name {
          font-size: 1em;
          margin-bottom: 5px;
        }
      }

      @media (max-width: 375px) {
        .item-name {
          font-size: 0.95em;
          margin-bottom: 4px;
        }
      }

      @media (max-width: 320px) {
        .item-name {
          font-size: 0.9em;
          margin-bottom: 3px;
        }
      }

      .item-description {
        color: #666;
        margin-bottom: 8px;
        font-size: 0.85em;
        line-height: 1.4;
        position: relative;
        z-index: 2;
        font-weight: 400;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      /* Mobile item description sizing - very compact */
      @media (max-width: 768px) {
        .item-description {
          font-size: 0.75em;
          margin-bottom: 6px;
          line-height: 1.3;
          -webkit-line-clamp: 2;
          line-clamp: 2;
        }
      }

      @media (max-width: 480px) {
        .item-description {
          font-size: 0.7em;
          margin-bottom: 5px;
          line-height: 1.2;
          -webkit-line-clamp: 1;
          line-clamp: 1;
        }
      }

      @media (max-width: 375px) {
        .item-description {
          font-size: 0.65em;
          margin-bottom: 4px;
          -webkit-line-clamp: 1;
          line-clamp: 1;
        }
      }

      @media (max-width: 320px) {
        .item-description {
          font-size: 0.6em;
          margin-bottom: 3px;
          -webkit-line-clamp: 1;
          line-clamp: 1;
        }
      }

      .item-price {
        color: #ff9800;
        font-size: 1.4em;
        font-weight: 800;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.2);
        background: linear-gradient(45deg, #ff9800, #f57c00);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* Mobile item price sizing - compact */
      @media (max-width: 768px) {
        .item-price {
          font-size: 1.2em;
          margin-bottom: 8px;
        }
      }

      @media (max-width: 480px) {
        .item-price {
          font-size: 1.1em;
          margin-bottom: 6px;
        }
      }

      @media (max-width: 375px) {
        .item-price {
          font-size: 1em;
          margin-bottom: 5px;
        }
      }

      @media (max-width: 320px) {
        .item-price {
          font-size: 0.95em;
          margin-bottom: 4px;
        }
      }

      .add-btn {
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        border: 1px solid #ff9800;
        padding: 10px 16px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 600;
        width: 100%;
        font-size: 0.9em;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3),
          inset 0 1px 0 rgba(255, 248, 225, 0.9);
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
      }

      /* Mobile add button styling - very compact */
      @media (max-width: 768px) {
        .add-btn {
          padding: 8px 12px;
          font-size: 0.8em;
          border-radius: 16px;
          letter-spacing: 0.5px;
        }
      }

      @media (max-width: 480px) {
        .add-btn {
          padding: 6px 10px;
          font-size: 0.75em;
          border-radius: 12px;
          letter-spacing: 0px;
        }
      }

      @media (max-width: 375px) {
        .add-btn {
          padding: 5px 8px;
          font-size: 0.7em;
          border-radius: 10px;
        }
      }

      @media (max-width: 320px) {
        .add-btn {
          padding: 4px 6px;
          font-size: 0.65em;
          border-radius: 8px;
        }
      }

      .add-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 15px rgba(255, 152, 0, 0.3),
          inset 0 1px 0 rgba(255, 248, 225, 0.8);
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      .cart {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        padding: 20px 32px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 800;
        font-size: 1.3em;
        box-shadow: 0 20px 45px rgba(255, 152, 0, 0.5),
          0 0 35px rgba(255, 248, 225, 0.4),
          inset 0 1px 0 rgba(255, 248, 225, 0.9);
        z-index: 1000;
        transition: all 0.3s ease;
        animation: none;
        border: 3px solid rgba(255, 152, 0, 0.3);
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
        letter-spacing: 1px;
      }

      /* Mobile cart adjustments */
      @media (max-width: 414px) {
        .cart {
          bottom: 20px;
          right: 20px;
          padding: 15px 25px;
          font-size: 1.1em;
          border-radius: 30px;
          border-width: 2px;
        }
      }

      @media (max-width: 375px) {
        .cart {
          bottom: 18px;
          right: 18px;
          padding: 12px 20px;
          font-size: 1em;
          border-radius: 25px;
        }
      }

      @media (max-width: 320px) {
        .cart {
          bottom: 15px;
          right: 15px;
          padding: 10px 18px;
          font-size: 0.9em;
          border-radius: 20px;
        }
      }

      .cart:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4),
          0 0 25px rgba(255, 248, 225, 0.3),
          inset 0 1px 0 rgba(255, 248, 225, 0.8);
        animation: pulse 2s infinite;
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      .cart-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        z-index: 2000;
        animation: fadeIn 0.3s ease;
      }

      .cart-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 35px;
        border-radius: 25px;
        max-width: 550px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        animation: slideInUp 0.4s ease;
      }

      .cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 2px solid #f0f0f0;
        transition: all 0.3s ease;
      }

      .cart-item:hover {
        background: rgba(255, 152, 0, 0.1);
        border-radius: 10px;
        padding: 15px 10px;
      }

      .quantity-controls {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .qty-btn {
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        border: 2px solid #ff9800;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.3em;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
      }

      .qty-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(255, 152, 0, 0.3);
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      .total {
        text-align: center;
        margin: 30px 0;
        font-size: 2em;
        color: #ff9800;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(255, 152, 0, 0.2);
        background: linear-gradient(45deg, #ff9800, #f57c00);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 1px;
      }

      .payment-options {
        display: flex;
        gap: 15px;
        margin: 20px 0;
        flex-wrap: wrap;
      }

      .upi-btn {
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        border: 2px solid #ff9800;
        padding: 18px 28px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 700;
        font-size: 1.1em;
        flex: 1;
        min-width: 150px;
        transition: all 0.3s ease;
        box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
      }
      

      .upi-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      .bill {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        z-index: 3000;
        animation: fadeIn 0.3s ease;
      }

      .bill-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #f8f8f8;
        padding: 20px 15px;
        border-radius: 0;
        max-width: 320px;
        width: 90%;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        animation: slideInUp 0.4s ease;
        font-family: "Courier New", monospace;
        font-size: 12px;
        line-height: 1.4;
        border: 2px dashed #ccc;
        position: relative;
        overflow: hidden;
      }

      .bill-content::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 20px;
        background: #f8f8f8;
        border-radius: 0 0 15px 15px;
        border: 2px dashed #ccc;
        border-top: none;
      }

      .bill-content::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 20px;
        background: #f8f8f8;
        border-radius: 15px 15px 0 0;
        border: 2px dashed #ccc;
        border-bottom: none;
      }

      .close-btn {
        float: right;
        background: linear-gradient(45deg, #ff6b35, #ffe135);
        border: none;
        font-size: 1.5em;
        cursor: pointer;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        transition: all 0.3s ease;
      }

      .close-btn:hover {
        transform: scale(1.1) rotate(90deg);
      }

      .download-btn {
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        border: 2px solid #ff9800;
        padding: 18px 28px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 700;
        margin: 12px 8px;
        font-size: 1.1em;
        transition: all 0.3s ease;
        box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
      }

      .download-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      .bill-actions {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .admin-btn {
        position: fixed;
        bottom: 30px;
        left: 30px;
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        border: 2px solid #ff9800;
        padding: 15px 22px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 700;
        font-size: 1em;
        box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
        z-index: 1000;
        transition: all 0.3s ease;
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
      }

      .admin-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      .admin-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        z-index: 2500;
        animation: fadeIn 0.3s ease;
      }

      .admin-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 35px;
        border-radius: 25px;
        max-width: 600px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        animation: slideInUp 0.4s ease;
      }

      .password-input {
        width: 100%;
        padding: 15px;
        border: 2px solid #ddd;
        border-radius: 10px;
        font-size: 1em;
        margin: 10px 0;
        transition: border-color 0.3s ease;
      }

      .password-input:focus {
        outline: none;
        border-color: #ff9800;
      }

      .login-btn {
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        border: 2px solid #ff9800;
        padding: 18px 35px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 700;
        width: 100%;
        margin: 12px 0;
        transition: all 0.3s ease;
        font-size: 1.1em;
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
        box-shadow: 0 12px 25px rgba(255, 152, 0, 0.4);
      }

      .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      .stock-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border: 2px solid #f0f0f0;
        border-radius: 10px;
        margin: 10px 0;
        transition: all 0.3s ease;
      }

      .stock-item:hover {
        border-color: #ff9800;
        background: rgba(255, 152, 0, 0.1);
      }

      .stock-toggle {
        background: linear-gradient(45deg, #28a745, #20c997);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .stock-toggle.out-of-stock {
        background: linear-gradient(45deg, #dc3545, #c82333);
      }

      .stock-toggle:hover {
        transform: scale(1.05);
      }

      .menu-item.out-of-stock {
        opacity: 0.6;
        position: relative;
      }

      .menu-item.out-of-stock::after {
        content: "OUT OF STOCK";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(220, 53, 69, 0.9);
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: bold;
        font-size: 1.2em;
        z-index: 10;
      }

      .menu-item.out-of-stock .add-btn {
        background: #ccc;
        cursor: not-allowed;
      }

      .menu-item.out-of-stock .add-btn:hover {
        transform: none;
        box-shadow: none;
      }

      .admin-title {
        color: #ff9800;
        font-size: 1.9em;
        margin-bottom: 25px;
        text-align: center;
        font-weight: 800;
        background: linear-gradient(45deg, #ff9800, #f57c00);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .verification-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        z-index: 3500;
        animation: fadeIn 0.3s ease;
      }

      .verification-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 35px;
        border-radius: 25px;
        max-width: 450px;
        width: 90%;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        animation: slideInUp 0.4s ease;
        text-align: center;
      }

      .verification-title {
        color: #ff9800;
        font-size: 1.9em;
        margin-bottom: 25px;
        font-weight: 800;
        background: linear-gradient(45deg, #ff9800, #f57c00);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .code-input {
        width: 100%;
        padding: 15px;
        border: 2px solid #ddd;
        border-radius: 10px;
        font-size: 1.2em;
        text-align: center;
        margin: 15px 0;
        letter-spacing: 3px;
        font-weight: bold;
        transition: border-color 0.3s ease;
      }

      .code-input:focus {
        outline: none;
        border-color: #ff9800;
      }

      .verify-btn {
        background: linear-gradient(45deg, #f57c00, #ff9800, #fff8e1);
        color: #fff8e1;
        border: 2px solid #ff9800;
        padding: 18px 35px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 700;
        width: 100%;
        margin: 12px 0;
        transition: all 0.3s ease;
        font-size: 1.1em;
        text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.5);
        box-shadow: 0 12px 25px rgba(255, 152, 0, 0.4);
      }

      .verify-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
        background: linear-gradient(45deg, #ff9800, #fff8e1, #f57c00);
        color: #ff9800;
        text-shadow: 1px 1px 2px rgba(255, 248, 225, 0.8);
      }

      /* Navigation Menu Styles */
      .menu-nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255, 248, 225, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px 0;
        margin-bottom: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
      }

      .menu-nav-scroll {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 0 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }

      .menu-nav-scroll::-webkit-scrollbar {
        display: none;
      }

      .nav-btn {
        background: linear-gradient(45deg, #ff9800, #fff8e1);
        color: #ff9800;
        border: 1px solid #ff9800;
        padding: 8px 16px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.9em;
        transition: all 0.3s ease;
        white-space: nowrap;
        min-width: fit-content;
      }

      .nav-btn.active,
      .nav-btn:hover {
        background: linear-gradient(45deg, #f57c00, #ff9800);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
      }

      /* Mobile navigation adjustments */
      @media (max-width: 768px) {
        .menu-nav {
          padding: 10px 0;
          margin-bottom: 15px;
          border-radius: 0 0 15px 15px;
        }

        .menu-nav-scroll {
          padding: 0 15px;
          gap: 8px;
        }

        .nav-btn {
          padding: 6px 12px;
          font-size: 0.8em;
          border-radius: 15px;
        }
      }

      @media (max-width: 480px) {
        .menu-nav {
          padding: 8px 0;
          margin-bottom: 12px;
        }

        .menu-nav-scroll {
          padding: 0 12px;
          gap: 6px;
        }

        .nav-btn {
          padding: 5px 10px;
          font-size: 0.75em;
          border-radius: 12px;
        }
      }