    /* Floating button styles */
    #orderNowBtn {
      position: fixed;
      bottom: 200px;
      right: 20px;
      background-color: #ff4500;
      color: white;
      padding: 15px 25px;
      font-size: 20px;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      z-index: 1000;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #orderNowBtn:hover {
      background-color: #e03e00;
    }